blob: 5758f565b560ab6b61ee3c38699c1411e4f7eec4 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
; Identifiers
(identifier) @variable
; Function declaration
(function_statement
name: (identifier) @function)
; Sub declaration
(sub_statement
name: (identifier) @function)
[
(sub_start)
(function_start)
(end_sub)
(end_function)
] @keyword.function
; Parameters
(parameter
name: (identifier) @variable.parameter)
; Types
(type_specifier) @type
; Variables
; Base variable in variable declarator (immediate child of prefix_exp)
(variable_declarator
(prefix_exp
(identifier) @variable
(#not-has-ancestor? @variable prefix_exp)))
; Properties in variable declarator
(variable_declarator
(prefix_exp)
(identifier) @property)
(multiplicative_expression
operator: (_) @keyword.operator)
(logical_not_expression
operator: (_) @keyword.operator)
(logical_expression
operator: (_) @keyword.operator)
; Property access
; First identifier in a chain (base variable)
(prefix_exp
.
(identifier) @variable
(#not-has-ancestor? @variable prefix_exp))
; All other identifiers in a chain (properties)
(prefix_exp
(prefix_exp)
(identifier) @property)
; Function calls
(function_call
function: (prefix_exp
(identifier) @function.call))
; Statements
[
(if_start)
(else)
(else_if)
(end_if)
(then)
(conditional_compl_end_if)
] @keyword.conditional
[
(for_start)
(while_start)
(for_each)
(for_in)
(for_to)
(for_step)
(end_for)
(end_while)
(exit_while_statement)
(exit_for_statement)
] @keyword.repeat
; Statements
[
(try_start)
(try_catch)
(throw)
(end_try)
] @keyword.exception
(return) @keyword.return
(print) @function.builtin
(constant) @constant
; Operators
[
"="
"<>"
"<"
"<="
">"
">="
"+"
"-"
"*"
"/"
] @operator
; Literals
(boolean) @boolean
(number) @number
(string) @string
(invalid) @constant.builtin
; Comments
(comment) @comment @spell
; Punctuation
[
"("
")"
"["
"]"
"{"
"}"
"?["
] @punctuation.bracket
[
"."
","
"?."
] @punctuation.delimiter
; Special highlights for library statements
(library_statement) @keyword.import
(library_statement
path: (string) @module)
; Array and associative array literals
(array) @constructor
(assoc_array) @constructor
(assoc_array_element
key: (identifier) @property)
; Increment/decrement operators
[
(prefix_increment_expression)
(prefix_decrement_expression)
(postfix_increment_expression)
(postfix_decrement_expression)
] @operator
; Comparison operators
(comparison_expression
[
"="
"<>"
"<"
"<="
">"
">="
] @operator)
(as) @keyword.operator
|