-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteal.sublime-syntax
576 lines (504 loc) · 14.2 KB
/
teal.sublime-syntax
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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
%YAML 1.2
---
name: Teal
scope: source.teal
version: 2
file_extensions:
- tl
variables:
name: '\b[A-Za-z_][A-Za-z_0-9]*\b'
contexts:
prototype:
- include: comments
comments:
- match: '--'
scope: punctuation.definition.comment.teal
push: comment-line
comment-line:
- meta_scope: comment.line.teal
- match: .*
pop: 1
else-pop:
- match: (?=\S)
pop: 1
immediately-pop:
- match: ''
pop: 1
main:
- include: statements
statements:
- include: if-statement
- include: function-def
- include: decl-statement
- include: for-statement
- include: do-statement
- include: while-statement
- include: repeat-statement
- include: expression
expression:
- include: keywords
- include: operators
- include: literals
- include: function-call
- include: array
- include: variable
- include: table
- include: paren-expression
keywords:
- match: (?:true|false)
scope: constant.language.boolean.teal
- match: 'nil'
scope: constant.language.null.teal
- match: 'return'
scope: keyword.control.return.teal
- match: 'break'
scope: keyword.control.break.teal
- match: 'in'
scope: keyword.control.loop.teal
- match: 'goto'
scope: keyword.control.goto.teal
- match: '\.\.\.'
scope: constant.language.teal
- match: ;
scope: punctuation.terminator.statement.teal
- match: ','
scope: punctuation.separator.comma.teal
operators:
- match: =
scope: keyword.operator.assignment.teal
- match: (?://|[-+*/%^])
scope: keyword.operator.arithmetic.teal
- match: ~=
scope: keyword.operator.comparison.teal
- match: (?:>>|<<|[&|~])
scope: keyword.operator.bitwise.teal
- match: (?:[=<>~]=)
scope: keyword.operator.comparison.teal
- match: (?:[<>])
scope: keyword.operator.comparison.teal
- match: \.\.
scope: keyword.operator.concatenation.teal
- match: (?:and|or)
scope: keyword.operator.logical.teal
- match: \#
scope: keyword.operator.length.teal
- match: not
scope: keyword.operator.logical.teal
literals:
- include: numeric
- include: string
numeric:
- match: \d+(?:(\.))\d*|(\.)\d+
scope: meta.number.float.decimal.teal constant.numeric.value.teal
captures:
1: punctuation.separator.decimal.teal
2: punctuation.separator.decimal.teal
- match: \d+
scope: meta.number.integer.decimal.teal constant.numeric.value.teal
string:
- include: double-string
- include: single-string
double-string:
- match: \"
scope: punctuation.definition.string.begin.teal
push: double-string-body
double-string-body:
- meta_include_prototype: false
- meta_scope: string.quoted.double.teal meta.string.teal
- match: \"
scope: punctuation.defintion.string.end.teal
pop: 1
single-string:
- match: \'
scope: punctuation.definition.string.begin.teal
push: single-string-body
single-string-body:
- meta_include_prototype: false
- meta_scope: string.quoted.single.teal meta.string.teal
- match: \'
scope: punctuation.defintion.string.end.teal
pop: 1
variable:
- match: '{{name}}'
scope: variable.other.teal
push:
- include: accessor
- include: else-pop
decl-statement:
- match: '(local|global)\s(?=type)'
scope: storage.modifier.teal
push: decl-type
- match: '(local|global)\s(?=enum)'
scope: storage.modifier.teal
push: decl-enum
- match: '(local|global)\s(?=record|interface)'
scope: storage.modifier.teal
push: decl-record
- match: '(local|global)'
scope: storage.modifier.teal
push: [decl-vars-after, decl-vars]
decl-type:
- meta_scope: meta.type-alias.teal
- match: '\s(?=(end))'
pop: 1
- match: 'type'
scope: keyword.declaration.type.teal
- match: '{{name}}'
scope: entity.name.type.teal
- match: '='
scope: keyword.operator.assignment.teal
push:
- include: types
pop: 1
decl-enum:
- meta_scope: meta.enum.teal meta.block.teal
- match: 'enum'
scope: keyword.declaration.enum.teal
- match: '{{name}}'
scope: entity.name.enum.teal
push:
- match: end
scope: keyword.control.end.teal
pop: 2
- include: string
decl-record:
- meta_scope: meta.interface.teal meta.block.teal meta.type.teal
- match: 'record|interface'
scope: keyword.declaration.teal
- match: '{{name}}'
scope: entity.name.interface.teal
push:
- match: '<'
scope: punctuation.definition.generic.begin.teal
push: generics-inside
- match: end
scope: keyword.control.end.teal
pop: 2
- match: ''
push: [decl-vars-after, decl-vars]
decl-vars:
- match: '{{name}}'
scope: variable.other.teal
pop: 1
decl-vars-after:
- match: ':'
scope: punctuation.separator.type.teal
set: [types-after, types]
- match: ','
scope: punctuation.separator.comma.teal
set: [decl-vars-after, decl-vars]
- include: else-pop
types:
- match: 'function'
scope: support.type.number.teal
push:
- include: type-function-params
pop: 1
- match: 'number'
scope: support.type.number.teal
pop: 1
- match: 'string'
scope: support.type.string.teal
pop: 1
- match: '{{name}}(?=\s*<\s*)'
scope: support.class.teal
set: generics
- match: '{{name}}'
scope: support.class.teal
pop: 1
- include: else-pop
type-function-params:
- match: '\('
scope: punctuation.section.group.begin.teal
push:
- meta_scope: meta.function.teal
- match: '{{name}}(?=\:)'
scope: variable.parameter.function.teal
push:
- match: ':'
scope: punctuation.separator.type.teal
- include: types
- match: '{{name}}'
scope: variable.parameter.function.teal
- match: \,
scope: punctuation.separator.comma.teal
- match: \.\.\.
scope: constant.language.teal
- match: \)
scope: punctuation.section.group.end.teal
pop: 2
# this is the only change over function-params
# push: function-body
- include: else-pop
types-after:
- match: '='
scope: keyword.operator.assignment.teal
pop: 1
- match: ','
scope: punctuation.separator.comma.teal
set: [types-after, types]
- include: else-pop
generics:
- match: '<'
scope: punctuation.definition.generic.begin.teal
push: generics-inside
- include: else-pop
generics-inside:
- meta_scope: meta.generic.teal
- match: 'number'
scope: support.type.number.teal
- match: 'string'
scope: support.type.string.teal
- match: ','
scope: punctuation.separator.comma.teal
- match: '>'
scope: punctuation.definition.generic.end.teal
pop: 1
- match: '<'
scope: punctuation.definition.generic.begin.teal
push: generics-inside
- match: '{{name}}'
scope: support.class.teal
table:
- match: '\{'
scope: punctuation.section.block.begin.teal
push: table-inside
table-inside:
- meta_scope: meta.mapping.teal
- match: '\}'
scope: punctuation.section.block.end.teal
pop: 1
- match: (\,|\;)
scope: punctuation.separator.field.teal
- match: \[
scope: meta.brackets.teal punctuation.section.brackets.begin.teal
push:
- clear_scopes: 1
- meta_scope: meta.mapping.key.teal meta.brackets.teal
- match: \]
scope: meta.brackets.teal punctuation.section.brackets.end.teal
pop: 1
- include: expression
- match: '(?={{name}}\s*\=\s*)'
push:
- clear_scopes: 1
- meta_scope: meta.mapping.key.teal
- match: '{{name}}'
scope: string.unquoted.key.teal
pop: 1
- match: =
scope: punctuation.separator.key-value.teal
- include: expression
- include: else-pop
function-call:
- match: '{{name}}(?=\s*\(\s*)'
scope: meta.function-call.teal variable.function.teal
push: function-arguments
function-arguments:
- match: \(
scope: punctuation.section.group.begin.teal
push:
- meta_scope: meta.function-call.arguments.teal meta.group.teal
- include: expression
- match: ','
scope: punctuation.separator.comma.teal
- match: \)(?=\()
scope: punctuation.section.group.end.teal
set: function-arguments
- match: '\)(?=\[)'
scope: punctuation.section.group.end.teal
set: array-index
- match: '\)(?=\.)'
scope: punctuation.section.group.end.teal
set: accessor
- match: \)
scope: punctuation.section.group.end.teal
pop: 1
- include: else-pop
array:
- match: '{{name}}(?=\s*\[\s*)'
scope: variable.other.teal
push: array-index
array-index:
- match: '\['
scope: punctuation.section.brackets.begin.teal
push:
- meta_scope: meta.brackets.teal
- include: expression
- match: \](?=\()
scope: punctuation.section.brackets.end.teal
set: function-arguments
- match: '\](?=\[)'
scope: punctuation.section.brackets.end.teal
set: array-index
- match: '\](?=\.)'
scope: punctuation.section.brackets.end.teal
set: accessor
- match: '\]'
scope: punctuation.section.brackets.end.teal
pop: 1
- include: else-pop
do-statement:
- match: 'do'
scope: keyword.control.teal
push:
- meta_scope: meta.block.teal
- match: 'end'
scope: keyword.control.end.teal
pop: 1
- include: statements
while-statement:
- match: 'while'
scope: keyword.control.teal
push:
- match: 'do'
scope: keyword.control.conditional.teal
pop: 1
push: while-body
- include: expression
while-body:
- meta_scope: meta.block.teal
- match: 'end'
scope: keyword.control.end.teal
pop: 1
- include: statements
repeat-statement:
- match: 'repeat'
scope: keyword.control.teal
push: repeat-body
repeat-body:
- meta_scope: meta.block.teal
- match: 'until'
scope: keyword.control.end.teal
pop: 1
- include: statements
- include: else-pop
for-statement:
- match: 'for'
scope: keyword.control.loop.teal
push: for-params
for-params:
- match: 'do'
scope: keyword.control.loop.teal
pop: 1
push: for-body
- match: ','
scope: punctuation.separator.comma.teal
- match: 'in'
scope: keyword.control.loop.teal
- include: expression
for-body:
- meta_scope: meta.block.teal
- match: 'end'
scope: keyword.control.end.teal
pop: 1
- include: statements
if-statement:
- match: 'if'
scope: keyword.control.conditional.teal
push: if-expr
if-expr:
- match: 'then'
scope: keyword.control.conditional.teal
pop: 1
push: if-body
- include: expression
if-body:
- meta_scope: meta.block.teal
- match: 'elseif'
scope: keyword.control.conditional.teal
set: if-expr
- match: 'end'
scope: keyword.control.end.teal
pop: 1
- include: statements
function-def:
- match: 'function'
scope: meta.function.teal keyword.declaration.function.teal
push: function-name
function-name:
- match: '{{name}}'
scope: entity.name.function.teal meta.function.teal meta.block.teal meta.name.function.teal
pop: 1
push: function-params
- match: '(?=\()'
pop: 1
push: function-params
function-params:
- match: '<'
scope: punctuation.definition.generic.begin.teal
push: generics-inside
- match: '\('
scope: punctuation.section.group.begin.teal
push:
- meta_scope: meta.function.teal
- match: '{{name}}(?=\:)'
scope: variable.parameter.function.teal
push:
- match: ':'
scope: punctuation.separator.type.teal
- include: types
- match: '{{name}}'
scope: variable.parameter.function.teal
- match: \,
scope: punctuation.separator.comma.teal
- match: \.\.\.
scope: constant.language.teal
- match: \)
scope: punctuation.section.group.end.teal
pop: 1
push: function-body
- include: else-pop
function-body:
- meta_scope: meta.function.teal meta.block.teal
- match: ':'
scope: punctuation.separator.type.teal
push:
- include: types
- match: 'end'
scope: keyword.control.end.teal
pop: 1
- include: statements
accessor:
- match: '[\.\:]'
scope: punctuation.accessor.teal
push:
- match: '(?={{name}}\s*\(\s*)'
set: accessor-function-call
- match: '(?={{name}}\s*\[\s*)'
set: accessor-array
- match: '(?={{name}})'
set: accessor-variable
- include: else-pop
- include: else-pop
accessor-variable:
- match: '{{name}}'
scope: meta.property.teal variable.other.teal
- include: else-pop
accessor-function-call:
- match: '{{name}}(?=\s*\(\s*)'
scope: meta.property.teal meta.function-call.teal variable.function.teal
push: function-arguments
- include: else-pop
accessor-array:
- match: '{{name}}(?=\s*\[\s*)'
scope: meta.property.teal variable.other.teal
push: array-index
- include: else-pop
paren-expression:
- match: \(
scope: punctuation.section.group.begin.teal
push: paren-expression-inner
paren-expression-inner:
- meta_include_prototype: false
- meta_scope: meta.group.teal
- include: expression
- match: \)(?=\()
scope: punctuation.section.group.end.teal
set: function-arguments
- match: '\)(?=\[)'
scope: punctuation.section.group.end.teal
set: array-index
- match: \)
scope: punctuation.section.group.end.teal
pop: 1