-
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
-
482
-
483
-
484
-
485
-
486
-
487
-
488
-
489
-
490
-
491
-
492
-
493
-
494
-
495
-
496
-
497
-
498
-
499
-
500
-
501
-
502
-
503
-
504
-
505
-
506
-
507
-
508
-
509
-
510
module.exports = grammar({
name: 'vala',
rules: {
source_file: $ => seq(repeat($.using_directive), repeat($.namespace_member)),
using_directive: $ => seq(
'using',
$.symbol,
repeat(seq(',', $.symbol)),
';'
),
symbol: $ => prec.left(
seq(
$.symbol_part,
repeat(seq('.', $.symbol_part))
)
),
symbol_part: $ => choice(
seq('global::', $.identifier),
$.identifier
),
identifier: $ => /[A-z]\w*/,
namespace_member: $ => seq(
repeat($.attribute),
choice(
$.namespace_declaration,
$.field_declaration
)
),
attribute: $ => seq(
'[',
$.identifier,
optional(seq('(', $.attribute_argument, repeat(seq(',', $.attribute_argument)), ')')),
']'
),
attribute_argument: $ => seq(
$.identifier,
'=',
$.expression
),
expression: $ => prec.left(
choice(
// $.lambda_expression,
seq(
$.conditional_expression,
optional(
seq(
$.assignment_operator,
$.expression
)
)
)
)
),
assignment_operator: $ => choice('=', '+=', '-=', '|=', '&=', '^=', '/=', '*=', '%=', '<<=', '>>='),
conditional_expression: $ => prec.right(
seq(
$.coalescing_expression,
optional(
seq(
'?',
$.expression,
':',
$.expression
)
)
)
),
coalescing_expression: $ => prec.right(
seq(
$.conditional_or_expression,
optional(seq(
'??',
$.coalescing_expression
))
)
),
conditional_or_expression: $ => prec.left(
seq(
$.conditional_and_expression,
optional(
seq(
'||',
$.conditional_and_expression
)
)
)
),
conditional_and_expression: $ => prec.left(
seq(
$.in_expression,
optional(seq(
'&&',
$.in_expression
))
)
),
in_expression: $ => prec.right(
seq(
$.inclusive_or_expression,
optional(seq(
'in',
$.inclusive_or_expression
))
)
),
inclusive_or_expression: $ => prec.left(
seq(
$.exclusive_or_expression,
optional(seq(
'|',
$.exclusive_or_expression
))
)
),
exclusive_or_expression: $ => prec.left(
seq(
$.and_expression,
optional(seq(
'^',
$.and_expression
))
)
),
and_expression: $ => prec.left(
seq(
$.equality_expression,
optional(seq(
'&',
$.equality_expression
))
)
),
equality_expression: $ => prec.left(
seq(
$.relational_expression,
repeat(seq(
choice('==', '!='),
$.relational_expression
))
)
),
relational_expression: $ => prec.left(
seq(
$.shift_expression,
repeat(choice(
seq(
choice('<', '<=', '>', '>='),
$.shift_expression
),
seq('is', $.type),
seq('as', $.type)
))
)
),
type: $ => prec.left(
choice(
seq('void', repeat('*')),
seq(
optional('dynamic'),
optional('unowned'),
$.symbol,
optional($.type_arguments),
optional('*'),
optional('?'),
repeat($.array_type)
)
)
),
type_weak: $ => prec.left(
choice(
seq('void', repeat('*')),
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('?')
)
),
shift_expression: $ => prec.left(
seq(
$.additive_expression,
repeat(seq(
choice('<<', '>>'),
$.additive_expression
))
)
),
additive_expression: $ => prec.left(
seq(
$.multiplicative_expression,
repeat(seq(
choice('+', '-'),
$.multiplicative_expression
))
)
),
multiplicative_expression: $ => prec.left(
seq(
$.unary_expression,
repeat(seq(
choice('*', '/', '%'),
$.unary_expression
))
)
),
unary_expression: $ => prec.right(
choice(
seq($.unary_operator, $.unary_expression),
seq('(', choice('owned', 'void', 'dynamic', '!', 'type'), ')', $.unary_expression),
$.primary_expression
)
),
unary_operator: $ => choice( '+', '-', '!', '~', '++', '--', '*', '&', '(owned)', '(void)', '(dynamic)', '(!)'),
primary_expression: $ => prec.left(
seq(
choice(
$.literal,
$.initializer,
$.tuple,
// $.open_regex_literal,
$.this_access,
$.base_access,
$.object_or_array_creation_expression,
$.yield_expression,
$.sizeof_expression,
$.simple_name
),
repeat(
choice(
$.member_access,
$.pointer_member_access,
$.method_call,
$.element_access,
$.post_increment_expression,
$.post_decrement_expression
)
)
)
),
literal: $ => choice(
'true',
'false',
'null',
$.integer_literal,
$.real_literal,
$.character_literal,
$.regex_literal,
$.string_literal,
$.template_string_literal,
$.verbatim_string_literal
),
integer_literal: $ => /[1-9]\d*|0[0-7]*/,
real_literal: $ => /\d+(\.\d+)?([eE][+-]?\d+)?/,
character_literal: $ => /'\S'/,
regex_literal: $ => /\/([^\\\/\n]|\\[\\\/A-z0|\[\]^$?.(){}+\-*])+\/[gmxsu]*/,
string_literal: $ => /".*"/,
template_string_literal: $ => seq(
/@"[^\n]*/,
repeat(seq(
optional(seq('$(', $.expression, ')')),
/[^\n]*/
)),
'"'
),
verbatim_string_literal: $ => /"""(.|\n)*"""/,
initializer: $ => seq(
'{',
$.argument,
repeat(seq(',', $.argument)),
'}'
),
argument: $ => prec.left(1,
choice(
seq('ref', $.expression),
seq('out', $.expression),
$.expression,
seq(
$.identifier,
optional(seq(':', $.expression))
)
)
),
tuple: $ => seq(
'(',
$.expression,
repeat(seq(',', $.expression)),
')'
),
this_access: $ => 'this',
base_access: $ => 'base',
object_or_array_creation_expression: $ => seq(
'new',
$.member,
choice(
$.object_creation_expression,
$.array_creation_expression
)
),
object_creation_expression: $ => seq(
'(',
optional(seq(
$.argument,
repeat(seq(
',',
$.argument
))
)),
')',
optional($.object_initializer)
),
object_initializer: $ => seq(
'{',
$.member_initializer,
repeat(seq(',', $.member_initializer)),
'}'
),
member_initializer: $ => seq(
$.identifier,
'=',
$.expression
),
array_creation_expression: $ => seq(
repeat(seq('[', ']')),
optional(seq('[', $.array_size, ']')),
$.initializer
),
array_size: $ => seq(
$.expression,
repeat(seq(',', $.expression))
),
yield_expression: $ => seq(
'yield',
optional(seq($.base_access, '.')),
$.member,
$.method_call
),
method_call: $ => seq(
'(',
optional(seq($.argument, repeat(seq(',', $.argument)))),
')',
optional($.object_initializer)
),
sizeof_expression: $ => seq(
'sizeof',
'(',
$.type,
')'
),
typeof_expression: $ => seq(
'typeof',
'(',
$.type,
')'
),
simple_name: $ => prec.left(2,
seq(
choice(
seq('global::', $.identifier),
$.identifier
),
optional($.type_arguments)
)
),
member_access: $ => prec.left(
seq(
'.',
$.identifier,
optional($.type_arguments)
)
),
pointer_member_access: $ => prec.left(
seq(
'->',
$.identifier,
optional($.type_arguments)
)
),
element_access: $=> prec.right(
seq(
'[',
choice(
':',
seq($.expression, repeat(seq(',', $.expression)))
)
)
),
post_increment_expression: $ => '++',
post_decrement_expression: $ => '--',
member: $ => seq(
$.identifier,
optional($.type_arguments)
),
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),
'}'
),
field_declaration: $ => seq(
optional($.access_modifier),
repeat($.member_declaration_modifier),
$.type_weak,
$.identifier,
optional(seq('=', $.expression)),
';'
)
}
});