-
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
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-
194
-
195
-
196
-
197
-
198
-
199
-
200
-
201
-
202
-
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
-
226
-
227
-
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
-
236
-
237
-
238
-
239
-
240
-
241
-
242
-
243
-
244
-
245
-
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
-
254
-
255
-
256
-
257
-
258
-
259
-
260
-
261
-
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
-
270
-
271
-
272
-
273
-
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
-
282
-
283
-
284
-
285
-
286
-
287
-
288
-
289
-
290
-
291
-
292
-
293
-
294
-
295
-
296
-
297
-
298
-
299
-
300
-
301
-
302
module.exports = grammar({
name: 'vala',
rules: {
source_file: $ => seq(repeat($.using_directive), repeat($.namespace_member)),
// taken from tree-sitter-c
// http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890
comment: $ => token(choice(
seq('//', /(\\(.|\r?\n)|[^\\\n])*/),
seq(
'/*',
/[^*]*\*+([^/*][^*]*\*+)*/,
'/'
)
)),
using_directive: $ => seq(
'using',
$.symbol,
repeat(seq(',', $.symbol)),
';'
),
symbol: $ => seq(optional('global::'), $.identifier, repeat(seq('.', $.identifier))),
identifier: $ => /[A-Za-z_]\w*/,
namespace_member: $ => seq(
repeat($.attribute),
choice(
$.namespace_declaration,
$.method_declaration,
$.field_declaration
)
),
attribute: $ => seq(
'[',
$.identifier,
optional(seq('(', $.attribute_argument, repeat(seq(',', $.attribute_argument)), ')')),
']'
),
attribute_argument: $ => seq(
$.identifier,
'=',
$._expression
),
_expression: $ => choice(
$.literal,
seq('(', $._expression, ')'),
$.member_access_expression,
$.method_call_expression,
$.postfix_expression,
$.static_cast_expression,
$.typeof_expression,
$.sizeof_expression,
$.unary_expression,
$.multiplicative_expression,
$.arithmetic_expression,
$.in_expression,
$.bitshift_expression,
$.dynamic_cast_expression,
$.type_relational_expression,
$.relational_expression,
$.equality_expression,
$.bitwise_and_expression,
$.bitwise_xor_expression,
$.bitwise_or_expression,
$.logical_and_expression,
$.logical_or_expression,
$.null_coalescing_expression,
$.ternary_expression,
$.assignment_expression,
// --- expressions that do not have a precedence
$.object_creation_expression
),
member_access_expression: $ => prec.right(15,
seq(
optional(seq(
choice(
$.identifier,
seq('(', $._expression, ')')
),
choice('.', '?.', '->'),
)),
$.identifier
),
),
method_call_expression: $ => prec.right(15,
seq(
choice(
seq('(', $._expression, ')'),
seq($.member_access_expression, optional($.type_arguments))
),
'(',
optional(seq($._expression, repeat(seq(',', $._expression)))),
')'
)
),
postfix_expression: $ => prec.left(14, seq($._expression, choice('++', '--'))),
static_cast_expression: $ => prec.right(13, seq(seq('(', $.type, ')'), $._expression)),
typeof_expression: $ => prec.right(13, seq('typeof', '(', $._expression, ')')),
sizeof_expression: $ => prec.right(13, seq('sizeof', '(', $.type, ')')),
unary_expression: $ => prec.right(13, seq(choice('!', '~', '++', '--', '-', '*', '&'), $._expression)),
multiplicative_expression: $ => prec.left(12, seq($._expression, choice('*', '/', '%'), $._expression)),
arithmetic_expression: $ => prec.left(11, seq($._expression, choice('+', '-'), $._expression)),
bitshift_expression: $ => prec.left(10, seq($._expression, choice('<<', '>>'), $._expression)),
in_expression: $ => prec.left(9, seq($._expression, optional('not'), 'in', $._expression)),
dynamic_cast_expression: $ => prec.left(9, seq($._expression, 'as', $.type)),
type_relational_expression: $ => prec.left(9, seq($._expression, 'is', $.type)),
relational_expression: $ => prec.left(9, seq($._expression, choice('<', '<=', '>=', '>'), $._expression)),
equality_expression: $ => prec.left(8, seq($._expression, choice('==', '!='), $._expression)),
bitwise_and_expression: $ => prec.left(7, seq($._expression, '&', $._expression)),
bitwise_xor_expression: $ => prec.left(6, seq($._expression, '^', $._expression)),
bitwise_or_expression: $ => prec.left(5, seq($._expression, '|', $._expression)),
logical_and_expression: $ => prec.left(4, seq($._expression, '&&', $._expression)),
logical_or_expression: $ => prec.left(3, seq($._expression, '||', $._expression)),
null_coalescing_expression: $ => prec.left(2, seq($._expression, '??', $._expression)),
ternary_expression: $ => prec.right(1, seq($._expression, '?', $._expression, ':', $._expression)),
_assignment_operator: $ => choice('=', '+=', '-=', '|=', '&=', '^=', '/=', '*=', '%=', '<<=', '>>='),
assignment_expression: $ => prec.right(0, seq($._expression, $._assignment_operator, $._expression)),
oce_type: $ => seq(
$.symbol,
optional($.type_arguments),
),
object_creation_expression: $ => seq(
'new',
$.oce_type,
'(',
optional(seq($._expression, repeat(seq(',', $._expression)))),
')'
),
boolean: $ => choice('true', 'false'),
character: $ => /'\S'/,
integer: $ => choice(/[1-9]\d*|0[0-7]*/, /0[xX][A-Fa-f0-9]+/),
null: $ => 'null',
real: $ => /\d+(\.\d+)?([eE][+-]?\d+)?/,
regex: $ => /\/([^\\\/\n]|\\[\\\/A-z0|\[\]^$?.(){}+\-*])+\/[gmxsu]*/,
string: $ => /"([^"]+|\\")*"/,
template_string: $ => seq(
'@"',
repeat(choice(/([^$"]+|\\")+/, $.template_string_expression)),
'"'
),
template_string_expression: $ => choice(
seq('$(', $._expression, ')'),
seq('$', $.identifier)
),
verbatim_string: $=> /"""(.|\n)*"""/,
literal: $ => choice(
$.boolean,
$.null,
$.character,
$.integer,
$.real,
$.regex,
$.string,
$.template_string,
$.verbatim_string
),
type: $ => prec.right(
choice(
seq('void', repeat('*')),
seq(
optional('dynamic'),
optional('unowned'),
optional('weak'),
'(',
$.type,
')',
repeat1($.array_type)
),
seq(
optional('dynamic'),
optional('unowned'),
optional('weak'),
$.symbol,
optional($.type_arguments),
optional('*'),
optional('?'),
repeat($.array_type)
)
)
),
type_arguments: $ => seq(
'<',
$.type,
repeat(seq(',', $.type)),
'>'
),
array_type: $ => prec.right(
seq(
'[',
optional($.array_size),
']',
optional('?')
)
),
array_size: $ => seq(
$._expression,
repeat(seq(',', $._expression))
),
member_declaration_modifier: $ => choice(
'async',
'class',
'extern',
'inline',
'static',
'abstract',
'virtual',
'override',
'new'
),
access_modifier: $ => choice(
'private',
'protected',
'internal',
'public'
),
namespace_declaration: $ => seq(
'namespace',
$.symbol,
'{',
repeat($.using_directive),
repeat($.namespace_member),
'}'
),
parameter: $ => seq(
$.type,
$.identifier,
optional(seq('=', $._expression))
),
method_declaration: $ => seq(
optional($.access_modifier),
repeat($.member_declaration_modifier),
$.type,
$.identifier,
optional($.type_arguments),
'(',
optional(seq($.parameter, repeat(seq(',', $.parameter)))),
')',
optional(seq('throws', $.type)),
optional(seq(choice('requires', 'ensures'), '(', $._expression, ')')),
choice($.block, ';')
),
field_declaration: $ => seq(
optional($.access_modifier),
repeat($.member_declaration_modifier),
$.type,
$.identifier,
optional(seq('=', $._expression)),
';'
),
local_declaration: $ => seq(
$.type,
$.identifier,
optional(seq('=', $._expression)),
';'
),
block: $ => seq('{', repeat($._statement), '}'),
_statement: $ => choice(
$.block,
';',
seq($._expression, ';'),
$.local_declaration
// TODO - for, while, if, foreach
)
},
conflicts: $ => [
[$.type, $._expression], // for static_cast_expression
],
extras: $ => [
/\s|\\\r?\n/,
$.comment,
],
});