sphinx-lang 0.8.6

An intepreter for a dynamic language implemented in Rust
Documentation
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
%YAML 1.2
---
name: Sphinx
file_extensions:
  - sph
scope: source.sphinx

variables:
  identifier: \b[a-zA-Z_][a-zA-Z0-9_]*\b # upper and lowercase

contexts:
  prototype:
    - include: comments

  main:
    - include: statements

  statements:
    - match: \b(end)\b
      scope: invalid
    - include: early-expressions
    - include: statement-keywords
    - include: loop-statements
    - include: for-statements
    - include: late-expressions
    - match: ';'
      scope: punctuation.terminator

  expressions:
    - include: early-expressions
    - include: late-expressions

  early-expressions:
    - include: constants
    - include: reserved-names
    - include: numbers
    - include: operators
    - include: expression-keywords
    - include: strings
    - include: tuples
    - include: blocks
    - include: parens
    - include: subscripts
    - include: if-expressions
    - include: object-constructors

    # tuple constructor
    - match: \,
      scope: punctuation.separator

  late-expressions:
    - include: function-defs
    - include: function-calls
    - include: class-defs
    - include: identifiers

  # other keywords
  expression-keywords:
    - match: \b(let|var)\b
      scope: keyword.declaration.other
    - match: \b(local|nonlocal)\b
      scope: keyword.other

  statement-keywords:
    - match: \b(del|assert)\b
      scope: keyword.other
    - match: \b(return)\b
      scope: keyword.control
    - match: \b(break|continue)\b\s*(::\w+)?
      captures:
        1: keyword.control
        2: entity.name.label

  constants:
    - match: \b(nil|true|false)\b
      scope: constant.language

  reserved-names:
    - match: \b(self|super)\b
      scope: variable.language

  numbers:
    # decimal floats
    - match: \b(\d+(?:\.\d*)?|\.\d+)\b
      scope: constant.numeric
    # decimal integers
    - match: \b(\d+)\b
      scope: constant.numeric
    # hex integers
    - match: \b(0[xX])(\h*)\b
      scope: constant.numeric

  operators:
    - match: '[\+\-/\*%]'
      scope: keyword.operator.arithmetic
    - match: '[\~\&\|\^]|<<|>>'
      scope: keyword.operator.bitwise
    - match: <\=|>\=|\=\=|<|>|!\=
      scope: keyword.operator.comparison
    - match: \b(not|and|or)\b
      scope: keyword.operator.logical
    - match: \+\=|-\=|\*\=|/\=|%\=
      scope: keyword.operator.arithmetic keyword.operator.assignment
    - match: \~\=|&\=|\|\=|\^\=|>>\=|<<\=
      scope: keyword.operator.bitwise keyword.operator.assignment
    - match: \=
      scope: keyword.operator.assignment
    - match: \@|\.\.\.
      scope: keyword.operator

  strings:
    # Strings begin and end with quotes, and use backslashes as an escape
    # character.
    - match: \$?\"
      scope: punctuation.definition.string.begin
      push: inside_double_string
    - match: \$?\'
      scope: punctuation.definition.string.begin
      push: inside_single_string
    - match: r\"
      scope: punctuation.definition.string.begin
      push: inside_double_string_raw
    - match: r\'
      scope: punctuation.definition.string.begin
      push: inside_single_string_raw

  inside_double_string:
    - meta_include_prototype: false
    - meta_scope: string.quoted.double
    - match: \"
      scope: punctuation.definition.string.end
      pop: true
    - include: string_escaped_char

  inside_single_string:
    - meta_include_prototype: false
    - meta_scope: string.quoted.single
    - match: \'
      scope: punctuation.definition.string.end
      pop: true
    - include: string_escaped_char

  inside_double_string_raw:
    - meta_include_prototype: false
    - meta_scope: string.quoted.double
    - match: \"
      scope: punctuation.definition.string.end
      pop: true

  inside_single_string_raw:
    - meta_include_prototype: false
    - meta_scope: string.quoted.single
    - match: \'
      scope: punctuation.definition.string.end
      pop: true

  string_escaped_char:
    - match: \\(?:\\|[nrt\'\"])
      scope: constant.character.escape
    - match: \\.
      scope: invalid

  identifiers:
    - match: '{{identifier}}'
      scope: variable.other
    - match: \.
      scope: punctuation.accessor
    - include: type_annotation

  type_annotation:
    - match: (:)\s*({{identifier}})
      captures:
        1: punctuation.separator
        2: storage.type

  tuples:
    - match: \,
      scope: punctuation.separator

  parens:
    - match: \(
      scope: punctuation.section.parens.begin
      push:
        - meta_scope: meta.parens
        - match: \)
          scope: punctuation.section.parens.end
          pop: true
        - include: expressions
        - include: type_annotation

  subscripts:
    - match: \[
      scope: punctuation.section.brackets.begin
      push:
        - meta_scope: meta.brackets
        - match: \]
          scope: punctuation.section.brackets.end
          pop: true
        - include: expressions

  function-calls:
    - match: (?={{identifier}}\s*\()
      push:
        - meta_scope: variable.function
        - match: '\('
          scope: punctuation.section.group.begin
          set: function-arg-list

  function-arg-list:
    - meta_scope: meta.group
    - match : \)
      scope: punctuation.section.group.end
      pop: true
    - match: \,
      scope: punctuation.separator
    - include: expressions

  blocks:
    - match: (::\w+)?\s*\b(begin)\b
      captures:
        1: entity.name.label
        2: keyword.other
      # scope: punctuation.section.block.begin
      push:
        - meta_scope: meta.block
        - match: \b(end)\b
          # scope: punctuation.section.block.end
          scope: keyword.other
          pop: true
        - include: statements

  if-expressions:
    - match: \b(if)\b
      scope: keyword.control.conditional
      push:
        - match: \b(then)\b
          scope: keyword.control.conditional
          set: if-body
        - include: expressions

  if-body:
    - meta_scope: meta.block
    - match: \b(elif)\b
      scope: keyword.control.conditional
      set:
        - match: \b(then)\b
          scope: keyword.control.conditional
          set: if-body
        - include: expressions
    - match: \b(else)\b
      scope: keyword.control.conditional
    - match: \b(end)\b
      scope: keyword.control.conditional
      pop: true
    - include: statements

  loop-statements:
    - match: (::\w+)?\s*\b(loop)\b
      captures:
        1: entity.name.label
        2: keyword.control
      push: loop-body

    # normal while loops
    - match: (::\w+)?\s*\b(while)\b
      captures:
        1: entity.name.label
        2: keyword.control
      push:
        - match: \b(do)\b
          scope: keyword.control
          set: loop-body
        - include: expressions

  loop-body:
    - meta_scope: meta.block
    - match: \b(end)\b
      scope: keyword.control
      pop: true
    - include: statements

  for-statements:
    # normal while loops
    - match: (::\w+)?\s*\b(for)\b
      captures:
        1: entity.name.label
        2: keyword.control
      push:
        - match: \b(in)\b
          scope: keyword.control
          set:
            - match: \b(do)\b
              scope: keyword.control
              set: for-body
            - include: expressions
        - include: expressions

  for-body:
    - meta_scope: meta.block
    - match: \b(end)\b
      scope: keyword.control
      pop: true
    - include: statements

  function-defs:
    - match: \b(fun)\b
      scope: keyword.declaration.function
      push:
        - meta_content_scope: entity.name.function
        - match: \(
          scope: punctuation.section.group.begin
          set: function-param-list

  function-param-list:
    - meta_scope: meta.group
    - match: \)(?=\s*->)
      scope: punctuation.section.group.end
      set: return-type-annotation
    - match: \)
      scope: punctuation.section.group.end
      set: function-body

    - match: \,
      scope: punctuation.separator
    - include: expression-keywords

    - match: \b(self)\b  # method descriptor syntax
      scope: variable.language

    - include: declaration-keywords
    - match: ({{identifier}})(\.\.\.)?
      captures:
        1: variable.parameter
        2: keyword.operator
    - include: type_annotation

    - match: '='
      scope: keyword.operator.assignment
      push:
        - match : '(?=[,)])'
          pop: true
        - include: expressions

  return-type-annotation:
    - match: (->)\s*({{identifier}})\s*(:)
      captures:
        1: keyword.operator
        2: storage.type
        3: punctuation.separator
      set: function-body

  function-body:
    - meta_scope: meta.block
    - match: \b(end)\b
      scope: keyword.other
      pop: true
    - include: statements

  class-defs:
    - match: \b(class)\b
      scope: keyword.declaration.class
      push:
        - meta_content_scope: entity.name.class
        - match: '\:'
          scope: punctuation.separator
          set: class-inheritance-list
        - match: (?=\b(var|fun|end)\b)
          set: class-body

  class-inheritance-list:
    - meta_scope: entity.other.inherited-class
    - match: \,
      scope: punctuation.separator
    - match: (?=\b(var|fun|end)\b)
      set: class-body

  class-body:
    - match: \b(end)\b
      scope: keyword.other
      pop: true
    - include: class-variable-defs
    - include: method-defs
    - include: expressions

  metamethod-names:
    # arithmetic operators
    - match: \b(__add|__mul|__sub|__div|__neg|__mod)\b
      scope: support.function
    # bitwise operators
    - match: \b(__and|__or|__xor|__inv|__lshift|__rshift)\b
      scope: support.function
    # comparison
    - match: \b(__le|__lt|__eq|__bool)\b
      scope: support.function
    # accessor
    - match: \b(__getindex|__setindex|__delindex)\b
      scope: support.function
    # descriptor
    - match: \b(__get|__set|__del)\b
      scope: support.function
    # misc
    - match: \b(__call|__tostring)\b
      scope: support.function
    # all other "__*" names are reserved for metamethods
    - match: \b(__\w+)\b
      scope: invalid

  class-variable-defs:
    - match: \b(var|let)\b
      scope: keyword.declaration.other
      push:
        - meta_content_scope: variable.parameter
        - include: metamethod-names
        - match: (?=\b(fun|var|let|init)\b)
          pop: true
        - match: \=
          scope: keyword.operator.assignment
          pop: true
        - match: \b(self)\b  # method descriptor syntax
          scope: variable.language
        - match: \.
          scope: punctuation.accessor
        - include: type_annotation


  method-defs:
    - match: \b(fun)\b
      scope: keyword.declaration.function
      push:
        - meta_content_scope: entity.name.function
        - include: metamethod-names
        - match: \(
          scope: punctuation.section.group.begin
          set: function-param-list

  object-constructors:
    - match: \{
      scope: punctuation.section.braces.begin
      push: object-initializer-lvalue

  object-initializer-lvalue:
    - meta_scope: meta.braces
    - match: \}
      scope: punctuation.section.braces.end
      pop: true
    - match: '='
      scope: keyword.operator.assignment

    - include: expression-keywords
      scope: keyword.declaration.other
    - match: '{{identifier}}'
      scope: variable.member
    - include: subscripts
    - include: type_annotation

  object-initializer-rvalue:
    - meta_scope: meta.braces
    - match: \}
      scope: punctuation.section.braces.end
      pop: true
    - match: \,
      scope: punctuation.separator
      set: object-initializer-lvalue
    - include: expressions

  comments:
    # Block comments
    - match: \#\{
      scope: punctuation.definition.comment
      push:
        - meta_scope: comment.block
        - match: \}\#
          pop: true
        - include: comments

    # Comments begin with a '#' and finish at the end of the line.
    - match: '#'
      scope: punctuation.definition.comment
      push:
        - meta_scope: comment.line
        - match: $\n?
          pop: true