-
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
-
303
-
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
-
314
-
315
-
316
-
317
-
318
-
319
-
320
-
321
-
322
-
323
-
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
-
338
-
339
-
340
-
341
-
342
-
343
-
344
-
345
-
346
-
347
-
348
-
349
-
350
-
351
-
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
-
360
-
361
-
362
-
363
-
364
-
365
-
366
-
367
-
368
-
369
-
370
-
371
-
372
-
373
-
374
-
375
-
376
-
377
-
378
-
379
-
380
-
381
-
382
-
383
-
384
-
385
-
386
-
387
-
388
-
389
-
390
-
391
-
392
-
393
-
394
-
395
-
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
-
406
-
407
-
408
-
409
-
410
-
411
-
412
-
413
-
414
-
415
-
416
-
417
-
418
-
419
-
420
-
421
-
422
-
423
-
424
-
425
-
426
-
427
-
428
-
429
-
430
-
431
-
432
-
433
-
434
-
435
-
436
-
437
-
438
-
439
-
440
-
441
-
442
-
443
-
444
-
445
-
446
-
447
-
448
-
449
-
450
-
451
-
452
-
453
-
454
-
455
-
456
-
457
-
458
-
459
-
460
-
461
-
462
-
463
-
464
-
465
-
466
-
467
-
468
-
469
-
470
-
471
-
472
-
473
-
474
-
475
-
476
-
477
-
478
-
479
-
480
-
481
module.exports = grammar({
name: 'vala',
word: $ => $.identifier,
rules: {
source_file: $ => seq(repeat($.using_directive), repeat(choice($.namespace_member, $._statement))),
// 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,
$.class_declaration,
$.method_declaration,
$.field_declaration,
$.constant_declaration
)
),
attribute: $ => seq(
'[',
$.identifier,
optional(seq('(', $.attribute_argument, repeat(seq(',', $.attribute_argument)), ')')),
']'
),
attribute_argument: $ => seq(
$.identifier,
'=',
$._expression
),
_expression: $ => choice(
$.literal,
seq('(', $._expression, ')'),
$.object_creation_expression,
$.this_access,
$.initializer,
// --- expressions that have a precedence
$.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
),
member_access_expression: $ => seq(
optional(seq(
choice(
$.this_access,
$.member_access_expression,
seq('(', $._expression, ')')
),
choice('.', '?.', '->'),
)),
$.identifier
),
argument: $ => choice(
seq('ref', $._expression),
seq('out', $._expression),
$._expression,
seq($.identifier, ':', $._expression)
),
method_call_expression: $ => seq(
choice(
seq('(', $._expression, ')'),
seq($.member_access_expression, optional($.type_arguments))
),
'(',
optional(seq($.argument, repeat(seq(',', $.argument)))),
')'
),
postfix_expression: $ => prec.left(14, seq($._expression, choice('++', '--'))),
static_cast_expression: $ => prec.right(13, seq('(', choice($.type, '!'), ')', $._expression)),
typeof_expression: $ => prec.right(13, seq('typeof', '(', $.type, ')')),
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)),
this_access: $ => 'this',
oce_type: $ => seq(
$.symbol,
optional($.type_arguments),
),
object_creation_expression: $ => seq(
'new',
$.oce_type,
'(',
optional(seq($.argument, repeat(seq(',', $.argument)))),
')'
),
initializer: $ => seq(
'{',
optional(seq($.argument, repeat(seq(',', $.argument)))),
'}'
),
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: $ => 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: $ => 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),
'}'
),
type_declaration_modifier: $ => choice(
'abstract',
'extern',
'static'
),
class_declaration: $ => seq(
optional($.access_modifier),
optional(seq($.type_declaration_modifier, repeat(seq(',', $.type_declaration_modifier)))),
'class',
$.type,
optional(seq(':', $.type, repeat(seq(',', $.type)))),
'{',
repeat($.class_member),
'}'
),
class_member: $ => seq(
repeat($.attribute),
choice(
$.class_declaration,
$.method_declaration,
$.creation_method_declaration,
$.field_declaration,
$.constant_declaration,
$.property_declaration
),
),
parameter: $ => seq(
optional(choice('out', 'ref')),
$.type,
$.identifier,
optional(seq('=', $._expression))
),
creation_method_declaration: $ => seq(
optional($.access_modifier),
optional(seq($.member_declaration_modifier, repeat(seq(',', $.member_declaration_modifier)))),
$.symbol,
'(',
optional(seq($.parameter, repeat(seq(',', $.parameter)))),
')',
optional(seq('throws', $.type)),
optional(seq(choice('requires', 'ensures'), '(', $._expression, ')')),
choice($.block, ';')
),
method_declaration: $ => seq(
optional($.access_modifier),
optional(seq($.member_declaration_modifier, repeat(seq(',', $.member_declaration_modifier)))),
$.type,
$.symbol,
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),
optional(seq($.member_declaration_modifier, repeat(seq(',', $.member_declaration_modifier)))),
$.type,
$.identifier,
optional(seq('=', $._expression)),
';'
),
constant_declaration: $ => seq(
optional($.access_modifier),
optional(seq($.member_declaration_modifier, repeat(seq(',', $.member_declaration_modifier)))),
'const',
$.type,
$.identifier,
optional($.inline_array_type),
optional(seq('=', $._expression)),
';'
),
inline_array_type: $ => seq('[', $.integer, ']'),
property_declaration: $ => seq(
optional($.access_modifier),
optional(seq($.member_declaration_modifier, repeat(seq(',', $.member_declaration_modifier)))),
$.type,
$.symbol,
'{',
repeat(choice(seq('default', '=', $._expression), $.property_accessor)),
'}'
),
property_accessor: $ => seq(
repeat($.attribute),
optional($.access_modifier),
choice('get', seq('set', optional('construct')), seq('construct', 'set')),
choice(';', $.block)
),
local_declaration: $ => seq(
$.type,
$.identifier,
optional($.inline_array_type),
optional(seq('=', $._expression)),
';'
),
block: $ => seq('{', repeat(choice($._statement, $.local_declaration)), '}'),
_statement: $ => choice(
$.if_statement,
$._statement_without_if
),
// resolves ambiguities with 'else if'
_statement_without_if: $ => choice(
$.block,
';',
seq($._expression, ';'),
$.return_statement,
$.try_statement,
$.while_statement,
$.do_statement,
$.for_statement,
$.foreach_statement
),
return_statement: $ => seq('return', optional($._expression), ';'),
if_statement: $ => seq(
'if', '(', $._expression, ')',
$._statement,
repeat($.elseif_statement),
optional($.else_statement)
),
elseif_statement: $ => seq(
'else', 'if', '(', $._expression, ')',
$._statement
),
else_statement: $ => seq(
'else',
$._statement_without_if
),
try_statement: $ => seq(
'try',
$.block,
repeat($.catch_clause),
optional($.finally_clause)
),
catch_clause: $ => seq(
'catch', '(', $.type, $.identifier, ')',
$.block
),
finally_clause: $ => seq(
'finally', $.block
),
while_statement: $ => seq(
'while',
'(',
$._expression,
')',
$._statement
),
do_statement: $ => seq(
'do',
$._statement,
'while',
'(', $._expression, ')',
';'
),
for_statement: $ => seq(
'for',
'(',
$.local_declaration,
$._expression,
';',
$._expression,
repeat(seq(',', $._expression)),
')',
$._statement
),
foreach_statement: $ => seq(
'foreach',
'(',
$.type,
$.identifier,
'in',
$._expression,
')',
$._statement
)
},
conflicts: $ => [
[$.member_declaration_modifier, $.class_declaration], // because both can start with 'class'
[$.member_declaration_modifier, $.type_declaration_modifier], // because both share 'extern'
[$.member_declaration_modifier, $.object_creation_expression], // because OCEs can appear in the main block
[$.symbol, $.member_access_expression], // disambiguate member access and static cast expressions
[$.type], // disambiguate between 'X as <type *> ...' and '(X as <type>)* ...'
[$.array_type], // when 'X[]? ...' could also be '(X[]) ? ...'
[$._expression, $.method_call_expression], // 'X <' may be start of comparison or method call
[$.initializer, $.block], // because {} is ambiguous in statement-expression contexts
[$.if_statement]
],
extras: $ => [
/\s|\\\r?\n/,
$.comment,
],
});