tree-sitter-tiger/test/indent/values-and-expressions.tig
Bruno BELANYI 7927a8cde7
All checks were successful
continuous-integration/drone/push Build is passing
Add record declaration indentation
2022-06-13 11:30:16 +02:00

31 lines
255 B
Plaintext

let
type array_of_int = array of int
type record = {
a: int,
b: string,
c: type
}
var a :=
"a string"
in
array[
12
]
;
array_of_int[
27
]
of
42
;
record {
a = 1,
b = "2",
c = nil
}
end