blob: f54e7d5c74dec2747957e9ce60652ffdca764c81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
["if" "then" "else"] @keyword.control.conditional
[
(local)
"function"
] @keyword
(comment) @comment
(string) @string
(number) @constant.numeric
[
(true)
(false)
] @constant.builtin.boolean
(binaryop) @operator
(unaryop) @operator
(param identifier: (id) @variable.parameter)
(bind function: (id) @function)
(fieldname (id) @variable.other.member)
[
"["
"]"
"{"
"}"
] @punctuation.bracket
"for" @keyword.control.repeat
"in" @keyword.operator
[(self) (dollar)] @variable.builtin
"assert" @keyword
(null) @constant.builtin
[
":"
"::"
";"
"="
] @punctuation.delimiter
(id) @variable
|