@mirascript/textmate 0.1.82 → 0.1.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.c8rc.json +6 -0
- package/ava.config.js +4 -0
- package/dist/grammar.d.ts +14 -0
- package/dist/grammar.d.ts.map +1 -0
- package/dist/grammar.js +1129 -0
- package/dist/grammar.js.map +1 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +7 -8
- package/dist/index.js.map +1 -0
- package/dist/language.d.ts +18 -0
- package/dist/language.d.ts.map +1 -0
- package/dist/language.js +15 -0
- package/dist/language.js.map +1 -0
- package/dist/mirascript-doc.tmLanguage.json +477 -86
- package/dist/mirascript-template.tmLanguage.json +422 -277
- package/dist/mirascript.tmLanguage.json +426 -272
- package/package.json +11 -13
- package/src/grammar.ts +1157 -0
- package/src/index.ts +10 -0
- package/src/language.ts +21 -0
- package/tests/_engine.ts +53 -0
- package/tests/grammar/documentation-comments.ts +157 -0
- package/tests/grammar/documentation-mode.ts +372 -0
- package/tests/grammar/language.ts +59 -0
- package/tests/grammar/strings.ts +35 -0
- package/tests/js-compatibility.ts +22 -0
- package/tests/language.ts +9 -0
- package/tests/tsconfig.json +3 -0
- package/tsconfig.json +11 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://
|
|
2
|
+
"$schema": "https://www.schemastore.org/tmlanguage.json",
|
|
3
3
|
"name": "mirascript-template",
|
|
4
4
|
"aliases": [
|
|
5
5
|
"MiraScript-Template",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
14
14
|
"captures": {
|
|
15
15
|
"1": {
|
|
16
|
-
"name": "punctuation.definition.
|
|
16
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
17
17
|
},
|
|
18
18
|
"2": {
|
|
19
19
|
"name": "variable.other.mira"
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"begin": "(\\$\\{)",
|
|
26
26
|
"beginCaptures": {
|
|
27
27
|
"1": {
|
|
28
|
-
"name": "punctuation.definition.
|
|
28
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"end": "\\}",
|
|
32
32
|
"endCaptures": {
|
|
33
33
|
"0": {
|
|
34
|
-
"name": "punctuation.definition.
|
|
34
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"patterns": [
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"begin": "(\\$\\()",
|
|
46
46
|
"beginCaptures": {
|
|
47
47
|
"1": {
|
|
48
|
-
"name": "punctuation.definition.
|
|
48
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"end": "\\)",
|
|
52
52
|
"endCaptures": {
|
|
53
53
|
"0": {
|
|
54
|
-
"name": "punctuation.definition.
|
|
54
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"patterns": [
|
|
@@ -139,31 +139,176 @@
|
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"name": "comment.block.documentation.mira",
|
|
142
|
-
"begin": "/\\*\\*
|
|
143
|
-
"end": "\\*/"
|
|
142
|
+
"begin": "/\\*\\*",
|
|
143
|
+
"end": "\\*/"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "comment.block.mira",
|
|
147
|
+
"begin": "/\\*",
|
|
148
|
+
"end": "\\*/"
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
"documentation": {
|
|
153
|
+
"patterns": [
|
|
154
|
+
{
|
|
155
|
+
"include": "#documentation-mirascript-fence"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"include": "#documentation-other-fence"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"include": "#documentation-line"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"include": "#documentation-fragment"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"documentation-inline": {
|
|
169
|
+
"patterns": [
|
|
170
|
+
{
|
|
171
|
+
"name": "storage.type.class.documentation.mira",
|
|
172
|
+
"match": "@(param|returns)\\b"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "markup.bold.documentation.mira",
|
|
176
|
+
"match": "\\*\\*[^*]+\\*\\*"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "markup.italic.documentation.mira",
|
|
180
|
+
"match": "\\*[^*]+\\*"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "constant.character.escape.documentation.mira",
|
|
184
|
+
"match": "\\\\\\*"
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"documentation-line": {
|
|
189
|
+
"patterns": [
|
|
190
|
+
{
|
|
191
|
+
"match": "^(?!\\s*\\*/)(\\s*\\*\\s?)(.*?)(?=\\*/|$)",
|
|
192
|
+
"captures": {
|
|
193
|
+
"1": {
|
|
194
|
+
"name": "comment.block.documentation.mira"
|
|
195
|
+
},
|
|
196
|
+
"2": {
|
|
197
|
+
"name": "meta.documentation.inline.mira",
|
|
198
|
+
"patterns": [
|
|
199
|
+
{
|
|
200
|
+
"include": "#documentation-inline"
|
|
201
|
+
}
|
|
202
|
+
]
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
]
|
|
207
|
+
},
|
|
208
|
+
"documentation-fragment": {
|
|
209
|
+
"patterns": [
|
|
210
|
+
{
|
|
211
|
+
"match": "(?!\\*/)(.+?)(?=\\*/|$)",
|
|
212
|
+
"captures": {
|
|
213
|
+
"1": {
|
|
214
|
+
"name": "meta.documentation.inline.mira",
|
|
215
|
+
"patterns": [
|
|
216
|
+
{
|
|
217
|
+
"include": "#documentation-inline"
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
},
|
|
225
|
+
"documentation-mirascript-fence": {
|
|
226
|
+
"patterns": [
|
|
227
|
+
{
|
|
228
|
+
"name": "markup.fenced_code.block.mira",
|
|
229
|
+
"begin": "^(\\s*\\*\\s?)(\\x60{3,})\\s*((?i:mirascript|MiraScript|mira|Mira))?\\s*$",
|
|
230
|
+
"beginCaptures": {
|
|
231
|
+
"1": {
|
|
232
|
+
"name": "comment.block.documentation.mira"
|
|
233
|
+
},
|
|
234
|
+
"2": {
|
|
235
|
+
"name": "punctuation.definition.markdown.mira"
|
|
236
|
+
},
|
|
237
|
+
"3": {
|
|
238
|
+
"name": "fenced_code.block.language.mira"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"end": "^(?:(\\s*\\*\\s?)(\\2\\x60*)\\s*$)|(?=\\*/)",
|
|
242
|
+
"endCaptures": {
|
|
243
|
+
"1": {
|
|
244
|
+
"name": "comment.block.documentation.mira"
|
|
245
|
+
},
|
|
246
|
+
"2": {
|
|
247
|
+
"name": "punctuation.definition.markdown.mira"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
144
250
|
"patterns": [
|
|
145
251
|
{
|
|
146
|
-
"name": "
|
|
147
|
-
"
|
|
252
|
+
"name": "meta.embedded.block.mira",
|
|
253
|
+
"contentName": "source.mira",
|
|
254
|
+
"begin": "^(?!\\s*\\*\\s*\\x60{3,}\\s*$)(?!.*\\*/)(\\s*\\*\\s?)",
|
|
255
|
+
"beginCaptures": {
|
|
256
|
+
"1": {
|
|
257
|
+
"name": "comment.block.documentation.mira"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"while": "^(?!\\s*\\*\\s*\\x60{3,}\\s*$)(?!.*\\*/)(\\s*\\*\\s?)",
|
|
261
|
+
"whileCaptures": {
|
|
262
|
+
"1": {
|
|
263
|
+
"name": "comment.block.documentation.mira"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"patterns": [
|
|
267
|
+
{
|
|
268
|
+
"include": "#source"
|
|
269
|
+
}
|
|
270
|
+
]
|
|
148
271
|
},
|
|
149
272
|
{
|
|
150
|
-
"name": "
|
|
151
|
-
"match": "
|
|
273
|
+
"name": "comment.block.documentation.mira",
|
|
274
|
+
"match": "^(?!\\s*\\*/)(\\s*\\*\\s?)"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
"documentation-other-fence": {
|
|
281
|
+
"patterns": [
|
|
282
|
+
{
|
|
283
|
+
"name": "markup.fenced_code.block.mira",
|
|
284
|
+
"contentName": "markup.raw.block.mira",
|
|
285
|
+
"begin": "^(\\s*\\*\\s?)(\\x60{3,})\\s*(\\S+)(?:\\s+.*)?\\s*$",
|
|
286
|
+
"beginCaptures": {
|
|
287
|
+
"1": {
|
|
288
|
+
"name": "comment.block.documentation.mira"
|
|
152
289
|
},
|
|
153
|
-
{
|
|
154
|
-
"name": "
|
|
155
|
-
|
|
290
|
+
"2": {
|
|
291
|
+
"name": "punctuation.definition.markdown.mira"
|
|
292
|
+
},
|
|
293
|
+
"3": {
|
|
294
|
+
"name": "fenced_code.block.language.mira"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"end": "^(?:(\\s*\\*\\s?)(\\2\\x60*)\\s*$)|(?=\\*/)",
|
|
298
|
+
"endCaptures": {
|
|
299
|
+
"1": {
|
|
300
|
+
"name": "comment.block.documentation.mira"
|
|
156
301
|
},
|
|
302
|
+
"2": {
|
|
303
|
+
"name": "punctuation.definition.markdown.mira"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"patterns": [
|
|
157
307
|
{
|
|
158
|
-
"name": "
|
|
159
|
-
"match": "
|
|
308
|
+
"name": "comment.block.documentation.mira",
|
|
309
|
+
"match": "^(?!\\s*\\*/)(\\s*\\*\\s?)"
|
|
160
310
|
}
|
|
161
311
|
]
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"name": "comment.block.mira",
|
|
165
|
-
"begin": "/\\*",
|
|
166
|
-
"end": "\\*/"
|
|
167
312
|
}
|
|
168
313
|
]
|
|
169
314
|
},
|
|
@@ -218,7 +363,7 @@
|
|
|
218
363
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
219
364
|
"captures": {
|
|
220
365
|
"1": {
|
|
221
|
-
"name": "punctuation.definition.
|
|
366
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
222
367
|
},
|
|
223
368
|
"2": {
|
|
224
369
|
"name": "variable.other.mira"
|
|
@@ -230,13 +375,13 @@
|
|
|
230
375
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
231
376
|
"beginCaptures": {
|
|
232
377
|
"1": {
|
|
233
|
-
"name": "punctuation.definition.
|
|
378
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
234
379
|
}
|
|
235
380
|
},
|
|
236
381
|
"end": "\\}",
|
|
237
382
|
"endCaptures": {
|
|
238
383
|
"0": {
|
|
239
|
-
"name": "punctuation.definition.
|
|
384
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
240
385
|
}
|
|
241
386
|
},
|
|
242
387
|
"patterns": [
|
|
@@ -250,13 +395,13 @@
|
|
|
250
395
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
251
396
|
"beginCaptures": {
|
|
252
397
|
"1": {
|
|
253
|
-
"name": "punctuation.definition.
|
|
398
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
254
399
|
}
|
|
255
400
|
},
|
|
256
401
|
"end": "\\)",
|
|
257
402
|
"endCaptures": {
|
|
258
403
|
"0": {
|
|
259
|
-
"name": "punctuation.definition.
|
|
404
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
260
405
|
}
|
|
261
406
|
},
|
|
262
407
|
"patterns": [
|
|
@@ -302,7 +447,7 @@
|
|
|
302
447
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
303
448
|
"captures": {
|
|
304
449
|
"1": {
|
|
305
|
-
"name": "punctuation.definition.
|
|
450
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
306
451
|
},
|
|
307
452
|
"2": {
|
|
308
453
|
"name": "variable.other.mira"
|
|
@@ -314,13 +459,13 @@
|
|
|
314
459
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
315
460
|
"beginCaptures": {
|
|
316
461
|
"1": {
|
|
317
|
-
"name": "punctuation.definition.
|
|
462
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
318
463
|
}
|
|
319
464
|
},
|
|
320
465
|
"end": "\\}",
|
|
321
466
|
"endCaptures": {
|
|
322
467
|
"0": {
|
|
323
|
-
"name": "punctuation.definition.
|
|
468
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
324
469
|
}
|
|
325
470
|
},
|
|
326
471
|
"patterns": [
|
|
@@ -334,13 +479,13 @@
|
|
|
334
479
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
335
480
|
"beginCaptures": {
|
|
336
481
|
"1": {
|
|
337
|
-
"name": "punctuation.definition.
|
|
482
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
338
483
|
}
|
|
339
484
|
},
|
|
340
485
|
"end": "\\)",
|
|
341
486
|
"endCaptures": {
|
|
342
487
|
"0": {
|
|
343
|
-
"name": "punctuation.definition.
|
|
488
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
344
489
|
}
|
|
345
490
|
},
|
|
346
491
|
"patterns": [
|
|
@@ -386,7 +531,7 @@
|
|
|
386
531
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
387
532
|
"captures": {
|
|
388
533
|
"1": {
|
|
389
|
-
"name": "punctuation.definition.
|
|
534
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
390
535
|
},
|
|
391
536
|
"2": {
|
|
392
537
|
"name": "variable.other.mira"
|
|
@@ -398,13 +543,13 @@
|
|
|
398
543
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
399
544
|
"beginCaptures": {
|
|
400
545
|
"1": {
|
|
401
|
-
"name": "punctuation.definition.
|
|
546
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
402
547
|
}
|
|
403
548
|
},
|
|
404
549
|
"end": "\\}",
|
|
405
550
|
"endCaptures": {
|
|
406
551
|
"0": {
|
|
407
|
-
"name": "punctuation.definition.
|
|
552
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
408
553
|
}
|
|
409
554
|
},
|
|
410
555
|
"patterns": [
|
|
@@ -418,13 +563,13 @@
|
|
|
418
563
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
419
564
|
"beginCaptures": {
|
|
420
565
|
"1": {
|
|
421
|
-
"name": "punctuation.definition.
|
|
566
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
422
567
|
}
|
|
423
568
|
},
|
|
424
569
|
"end": "\\)",
|
|
425
570
|
"endCaptures": {
|
|
426
571
|
"0": {
|
|
427
|
-
"name": "punctuation.definition.
|
|
572
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
428
573
|
}
|
|
429
574
|
},
|
|
430
575
|
"patterns": [
|
|
@@ -470,7 +615,7 @@
|
|
|
470
615
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
471
616
|
"captures": {
|
|
472
617
|
"1": {
|
|
473
|
-
"name": "punctuation.definition.
|
|
618
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
474
619
|
},
|
|
475
620
|
"2": {
|
|
476
621
|
"name": "variable.other.mira"
|
|
@@ -482,13 +627,13 @@
|
|
|
482
627
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
483
628
|
"beginCaptures": {
|
|
484
629
|
"1": {
|
|
485
|
-
"name": "punctuation.definition.
|
|
630
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
486
631
|
}
|
|
487
632
|
},
|
|
488
633
|
"end": "\\}",
|
|
489
634
|
"endCaptures": {
|
|
490
635
|
"0": {
|
|
491
|
-
"name": "punctuation.definition.
|
|
636
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
492
637
|
}
|
|
493
638
|
},
|
|
494
639
|
"patterns": [
|
|
@@ -502,13 +647,13 @@
|
|
|
502
647
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
503
648
|
"beginCaptures": {
|
|
504
649
|
"1": {
|
|
505
|
-
"name": "punctuation.definition.
|
|
650
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
506
651
|
}
|
|
507
652
|
},
|
|
508
653
|
"end": "\\)",
|
|
509
654
|
"endCaptures": {
|
|
510
655
|
"0": {
|
|
511
|
-
"name": "punctuation.definition.
|
|
656
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
512
657
|
}
|
|
513
658
|
},
|
|
514
659
|
"patterns": [
|
|
@@ -554,7 +699,7 @@
|
|
|
554
699
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
555
700
|
"captures": {
|
|
556
701
|
"1": {
|
|
557
|
-
"name": "punctuation.definition.
|
|
702
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
558
703
|
},
|
|
559
704
|
"2": {
|
|
560
705
|
"name": "variable.other.mira"
|
|
@@ -566,13 +711,13 @@
|
|
|
566
711
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
567
712
|
"beginCaptures": {
|
|
568
713
|
"1": {
|
|
569
|
-
"name": "punctuation.definition.
|
|
714
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
570
715
|
}
|
|
571
716
|
},
|
|
572
717
|
"end": "\\}",
|
|
573
718
|
"endCaptures": {
|
|
574
719
|
"0": {
|
|
575
|
-
"name": "punctuation.definition.
|
|
720
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
576
721
|
}
|
|
577
722
|
},
|
|
578
723
|
"patterns": [
|
|
@@ -586,13 +731,13 @@
|
|
|
586
731
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
587
732
|
"beginCaptures": {
|
|
588
733
|
"1": {
|
|
589
|
-
"name": "punctuation.definition.
|
|
734
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
590
735
|
}
|
|
591
736
|
},
|
|
592
737
|
"end": "\\)",
|
|
593
738
|
"endCaptures": {
|
|
594
739
|
"0": {
|
|
595
|
-
"name": "punctuation.definition.
|
|
740
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
596
741
|
}
|
|
597
742
|
},
|
|
598
743
|
"patterns": [
|
|
@@ -638,7 +783,7 @@
|
|
|
638
783
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
639
784
|
"captures": {
|
|
640
785
|
"1": {
|
|
641
|
-
"name": "punctuation.definition.
|
|
786
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
642
787
|
},
|
|
643
788
|
"2": {
|
|
644
789
|
"name": "variable.other.mira"
|
|
@@ -650,13 +795,13 @@
|
|
|
650
795
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
651
796
|
"beginCaptures": {
|
|
652
797
|
"1": {
|
|
653
|
-
"name": "punctuation.definition.
|
|
798
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
654
799
|
}
|
|
655
800
|
},
|
|
656
801
|
"end": "\\}",
|
|
657
802
|
"endCaptures": {
|
|
658
803
|
"0": {
|
|
659
|
-
"name": "punctuation.definition.
|
|
804
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
660
805
|
}
|
|
661
806
|
},
|
|
662
807
|
"patterns": [
|
|
@@ -670,13 +815,13 @@
|
|
|
670
815
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
671
816
|
"beginCaptures": {
|
|
672
817
|
"1": {
|
|
673
|
-
"name": "punctuation.definition.
|
|
818
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
674
819
|
}
|
|
675
820
|
},
|
|
676
821
|
"end": "\\)",
|
|
677
822
|
"endCaptures": {
|
|
678
823
|
"0": {
|
|
679
|
-
"name": "punctuation.definition.
|
|
824
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
680
825
|
}
|
|
681
826
|
},
|
|
682
827
|
"patterns": [
|
|
@@ -722,7 +867,7 @@
|
|
|
722
867
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
723
868
|
"captures": {
|
|
724
869
|
"1": {
|
|
725
|
-
"name": "punctuation.definition.
|
|
870
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
726
871
|
},
|
|
727
872
|
"2": {
|
|
728
873
|
"name": "variable.other.mira"
|
|
@@ -734,13 +879,13 @@
|
|
|
734
879
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
735
880
|
"beginCaptures": {
|
|
736
881
|
"1": {
|
|
737
|
-
"name": "punctuation.definition.
|
|
882
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
738
883
|
}
|
|
739
884
|
},
|
|
740
885
|
"end": "\\}",
|
|
741
886
|
"endCaptures": {
|
|
742
887
|
"0": {
|
|
743
|
-
"name": "punctuation.definition.
|
|
888
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
744
889
|
}
|
|
745
890
|
},
|
|
746
891
|
"patterns": [
|
|
@@ -754,13 +899,13 @@
|
|
|
754
899
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
755
900
|
"beginCaptures": {
|
|
756
901
|
"1": {
|
|
757
|
-
"name": "punctuation.definition.
|
|
902
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
758
903
|
}
|
|
759
904
|
},
|
|
760
905
|
"end": "\\)",
|
|
761
906
|
"endCaptures": {
|
|
762
907
|
"0": {
|
|
763
|
-
"name": "punctuation.definition.
|
|
908
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
764
909
|
}
|
|
765
910
|
},
|
|
766
911
|
"patterns": [
|
|
@@ -806,7 +951,7 @@
|
|
|
806
951
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
807
952
|
"captures": {
|
|
808
953
|
"1": {
|
|
809
|
-
"name": "punctuation.definition.
|
|
954
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
810
955
|
},
|
|
811
956
|
"2": {
|
|
812
957
|
"name": "variable.other.mira"
|
|
@@ -818,13 +963,13 @@
|
|
|
818
963
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
819
964
|
"beginCaptures": {
|
|
820
965
|
"1": {
|
|
821
|
-
"name": "punctuation.definition.
|
|
966
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
822
967
|
}
|
|
823
968
|
},
|
|
824
969
|
"end": "\\}",
|
|
825
970
|
"endCaptures": {
|
|
826
971
|
"0": {
|
|
827
|
-
"name": "punctuation.definition.
|
|
972
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
828
973
|
}
|
|
829
974
|
},
|
|
830
975
|
"patterns": [
|
|
@@ -838,13 +983,13 @@
|
|
|
838
983
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
839
984
|
"beginCaptures": {
|
|
840
985
|
"1": {
|
|
841
|
-
"name": "punctuation.definition.
|
|
986
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
842
987
|
}
|
|
843
988
|
},
|
|
844
989
|
"end": "\\)",
|
|
845
990
|
"endCaptures": {
|
|
846
991
|
"0": {
|
|
847
|
-
"name": "punctuation.definition.
|
|
992
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
848
993
|
}
|
|
849
994
|
},
|
|
850
995
|
"patterns": [
|
|
@@ -890,7 +1035,7 @@
|
|
|
890
1035
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
891
1036
|
"captures": {
|
|
892
1037
|
"1": {
|
|
893
|
-
"name": "punctuation.definition.
|
|
1038
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
894
1039
|
},
|
|
895
1040
|
"2": {
|
|
896
1041
|
"name": "variable.other.mira"
|
|
@@ -902,13 +1047,13 @@
|
|
|
902
1047
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
903
1048
|
"beginCaptures": {
|
|
904
1049
|
"1": {
|
|
905
|
-
"name": "punctuation.definition.
|
|
1050
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
906
1051
|
}
|
|
907
1052
|
},
|
|
908
1053
|
"end": "\\}",
|
|
909
1054
|
"endCaptures": {
|
|
910
1055
|
"0": {
|
|
911
|
-
"name": "punctuation.definition.
|
|
1056
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
912
1057
|
}
|
|
913
1058
|
},
|
|
914
1059
|
"patterns": [
|
|
@@ -922,13 +1067,13 @@
|
|
|
922
1067
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
923
1068
|
"beginCaptures": {
|
|
924
1069
|
"1": {
|
|
925
|
-
"name": "punctuation.definition.
|
|
1070
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
926
1071
|
}
|
|
927
1072
|
},
|
|
928
1073
|
"end": "\\)",
|
|
929
1074
|
"endCaptures": {
|
|
930
1075
|
"0": {
|
|
931
|
-
"name": "punctuation.definition.
|
|
1076
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
932
1077
|
}
|
|
933
1078
|
},
|
|
934
1079
|
"patterns": [
|
|
@@ -974,7 +1119,7 @@
|
|
|
974
1119
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
975
1120
|
"captures": {
|
|
976
1121
|
"1": {
|
|
977
|
-
"name": "punctuation.definition.
|
|
1122
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
978
1123
|
},
|
|
979
1124
|
"2": {
|
|
980
1125
|
"name": "variable.other.mira"
|
|
@@ -986,13 +1131,13 @@
|
|
|
986
1131
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
987
1132
|
"beginCaptures": {
|
|
988
1133
|
"1": {
|
|
989
|
-
"name": "punctuation.definition.
|
|
1134
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
990
1135
|
}
|
|
991
1136
|
},
|
|
992
1137
|
"end": "\\}",
|
|
993
1138
|
"endCaptures": {
|
|
994
1139
|
"0": {
|
|
995
|
-
"name": "punctuation.definition.
|
|
1140
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
996
1141
|
}
|
|
997
1142
|
},
|
|
998
1143
|
"patterns": [
|
|
@@ -1006,13 +1151,13 @@
|
|
|
1006
1151
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1007
1152
|
"beginCaptures": {
|
|
1008
1153
|
"1": {
|
|
1009
|
-
"name": "punctuation.definition.
|
|
1154
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1010
1155
|
}
|
|
1011
1156
|
},
|
|
1012
1157
|
"end": "\\)",
|
|
1013
1158
|
"endCaptures": {
|
|
1014
1159
|
"0": {
|
|
1015
|
-
"name": "punctuation.definition.
|
|
1160
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1016
1161
|
}
|
|
1017
1162
|
},
|
|
1018
1163
|
"patterns": [
|
|
@@ -1058,7 +1203,7 @@
|
|
|
1058
1203
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1059
1204
|
"captures": {
|
|
1060
1205
|
"1": {
|
|
1061
|
-
"name": "punctuation.definition.
|
|
1206
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1062
1207
|
},
|
|
1063
1208
|
"2": {
|
|
1064
1209
|
"name": "variable.other.mira"
|
|
@@ -1070,13 +1215,13 @@
|
|
|
1070
1215
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1071
1216
|
"beginCaptures": {
|
|
1072
1217
|
"1": {
|
|
1073
|
-
"name": "punctuation.definition.
|
|
1218
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1074
1219
|
}
|
|
1075
1220
|
},
|
|
1076
1221
|
"end": "\\}",
|
|
1077
1222
|
"endCaptures": {
|
|
1078
1223
|
"0": {
|
|
1079
|
-
"name": "punctuation.definition.
|
|
1224
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1080
1225
|
}
|
|
1081
1226
|
},
|
|
1082
1227
|
"patterns": [
|
|
@@ -1090,13 +1235,13 @@
|
|
|
1090
1235
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1091
1236
|
"beginCaptures": {
|
|
1092
1237
|
"1": {
|
|
1093
|
-
"name": "punctuation.definition.
|
|
1238
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1094
1239
|
}
|
|
1095
1240
|
},
|
|
1096
1241
|
"end": "\\)",
|
|
1097
1242
|
"endCaptures": {
|
|
1098
1243
|
"0": {
|
|
1099
|
-
"name": "punctuation.definition.
|
|
1244
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1100
1245
|
}
|
|
1101
1246
|
},
|
|
1102
1247
|
"patterns": [
|
|
@@ -1142,7 +1287,7 @@
|
|
|
1142
1287
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1143
1288
|
"captures": {
|
|
1144
1289
|
"1": {
|
|
1145
|
-
"name": "punctuation.definition.
|
|
1290
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1146
1291
|
},
|
|
1147
1292
|
"2": {
|
|
1148
1293
|
"name": "variable.other.mira"
|
|
@@ -1154,13 +1299,13 @@
|
|
|
1154
1299
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1155
1300
|
"beginCaptures": {
|
|
1156
1301
|
"1": {
|
|
1157
|
-
"name": "punctuation.definition.
|
|
1302
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1158
1303
|
}
|
|
1159
1304
|
},
|
|
1160
1305
|
"end": "\\}",
|
|
1161
1306
|
"endCaptures": {
|
|
1162
1307
|
"0": {
|
|
1163
|
-
"name": "punctuation.definition.
|
|
1308
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1164
1309
|
}
|
|
1165
1310
|
},
|
|
1166
1311
|
"patterns": [
|
|
@@ -1174,13 +1319,13 @@
|
|
|
1174
1319
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1175
1320
|
"beginCaptures": {
|
|
1176
1321
|
"1": {
|
|
1177
|
-
"name": "punctuation.definition.
|
|
1322
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1178
1323
|
}
|
|
1179
1324
|
},
|
|
1180
1325
|
"end": "\\)",
|
|
1181
1326
|
"endCaptures": {
|
|
1182
1327
|
"0": {
|
|
1183
|
-
"name": "punctuation.definition.
|
|
1328
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1184
1329
|
}
|
|
1185
1330
|
},
|
|
1186
1331
|
"patterns": [
|
|
@@ -1226,7 +1371,7 @@
|
|
|
1226
1371
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1227
1372
|
"captures": {
|
|
1228
1373
|
"1": {
|
|
1229
|
-
"name": "punctuation.definition.
|
|
1374
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1230
1375
|
},
|
|
1231
1376
|
"2": {
|
|
1232
1377
|
"name": "variable.other.mira"
|
|
@@ -1238,13 +1383,13 @@
|
|
|
1238
1383
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1239
1384
|
"beginCaptures": {
|
|
1240
1385
|
"1": {
|
|
1241
|
-
"name": "punctuation.definition.
|
|
1386
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1242
1387
|
}
|
|
1243
1388
|
},
|
|
1244
1389
|
"end": "\\}",
|
|
1245
1390
|
"endCaptures": {
|
|
1246
1391
|
"0": {
|
|
1247
|
-
"name": "punctuation.definition.
|
|
1392
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1248
1393
|
}
|
|
1249
1394
|
},
|
|
1250
1395
|
"patterns": [
|
|
@@ -1258,13 +1403,13 @@
|
|
|
1258
1403
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1259
1404
|
"beginCaptures": {
|
|
1260
1405
|
"1": {
|
|
1261
|
-
"name": "punctuation.definition.
|
|
1406
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1262
1407
|
}
|
|
1263
1408
|
},
|
|
1264
1409
|
"end": "\\)",
|
|
1265
1410
|
"endCaptures": {
|
|
1266
1411
|
"0": {
|
|
1267
|
-
"name": "punctuation.definition.
|
|
1412
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1268
1413
|
}
|
|
1269
1414
|
},
|
|
1270
1415
|
"patterns": [
|
|
@@ -1310,7 +1455,7 @@
|
|
|
1310
1455
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1311
1456
|
"captures": {
|
|
1312
1457
|
"1": {
|
|
1313
|
-
"name": "punctuation.definition.
|
|
1458
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1314
1459
|
},
|
|
1315
1460
|
"2": {
|
|
1316
1461
|
"name": "variable.other.mira"
|
|
@@ -1322,13 +1467,13 @@
|
|
|
1322
1467
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1323
1468
|
"beginCaptures": {
|
|
1324
1469
|
"1": {
|
|
1325
|
-
"name": "punctuation.definition.
|
|
1470
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1326
1471
|
}
|
|
1327
1472
|
},
|
|
1328
1473
|
"end": "\\}",
|
|
1329
1474
|
"endCaptures": {
|
|
1330
1475
|
"0": {
|
|
1331
|
-
"name": "punctuation.definition.
|
|
1476
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1332
1477
|
}
|
|
1333
1478
|
},
|
|
1334
1479
|
"patterns": [
|
|
@@ -1342,13 +1487,13 @@
|
|
|
1342
1487
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1343
1488
|
"beginCaptures": {
|
|
1344
1489
|
"1": {
|
|
1345
|
-
"name": "punctuation.definition.
|
|
1490
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1346
1491
|
}
|
|
1347
1492
|
},
|
|
1348
1493
|
"end": "\\)",
|
|
1349
1494
|
"endCaptures": {
|
|
1350
1495
|
"0": {
|
|
1351
|
-
"name": "punctuation.definition.
|
|
1496
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1352
1497
|
}
|
|
1353
1498
|
},
|
|
1354
1499
|
"patterns": [
|
|
@@ -1394,7 +1539,7 @@
|
|
|
1394
1539
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1395
1540
|
"captures": {
|
|
1396
1541
|
"1": {
|
|
1397
|
-
"name": "punctuation.definition.
|
|
1542
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1398
1543
|
},
|
|
1399
1544
|
"2": {
|
|
1400
1545
|
"name": "variable.other.mira"
|
|
@@ -1406,13 +1551,13 @@
|
|
|
1406
1551
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1407
1552
|
"beginCaptures": {
|
|
1408
1553
|
"1": {
|
|
1409
|
-
"name": "punctuation.definition.
|
|
1554
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1410
1555
|
}
|
|
1411
1556
|
},
|
|
1412
1557
|
"end": "\\}",
|
|
1413
1558
|
"endCaptures": {
|
|
1414
1559
|
"0": {
|
|
1415
|
-
"name": "punctuation.definition.
|
|
1560
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1416
1561
|
}
|
|
1417
1562
|
},
|
|
1418
1563
|
"patterns": [
|
|
@@ -1426,13 +1571,13 @@
|
|
|
1426
1571
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1427
1572
|
"beginCaptures": {
|
|
1428
1573
|
"1": {
|
|
1429
|
-
"name": "punctuation.definition.
|
|
1574
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1430
1575
|
}
|
|
1431
1576
|
},
|
|
1432
1577
|
"end": "\\)",
|
|
1433
1578
|
"endCaptures": {
|
|
1434
1579
|
"0": {
|
|
1435
|
-
"name": "punctuation.definition.
|
|
1580
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1436
1581
|
}
|
|
1437
1582
|
},
|
|
1438
1583
|
"patterns": [
|
|
@@ -1478,7 +1623,7 @@
|
|
|
1478
1623
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1479
1624
|
"captures": {
|
|
1480
1625
|
"1": {
|
|
1481
|
-
"name": "punctuation.definition.
|
|
1626
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1482
1627
|
},
|
|
1483
1628
|
"2": {
|
|
1484
1629
|
"name": "variable.other.mira"
|
|
@@ -1490,13 +1635,13 @@
|
|
|
1490
1635
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1491
1636
|
"beginCaptures": {
|
|
1492
1637
|
"1": {
|
|
1493
|
-
"name": "punctuation.definition.
|
|
1638
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1494
1639
|
}
|
|
1495
1640
|
},
|
|
1496
1641
|
"end": "\\}",
|
|
1497
1642
|
"endCaptures": {
|
|
1498
1643
|
"0": {
|
|
1499
|
-
"name": "punctuation.definition.
|
|
1644
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1500
1645
|
}
|
|
1501
1646
|
},
|
|
1502
1647
|
"patterns": [
|
|
@@ -1510,13 +1655,13 @@
|
|
|
1510
1655
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1511
1656
|
"beginCaptures": {
|
|
1512
1657
|
"1": {
|
|
1513
|
-
"name": "punctuation.definition.
|
|
1658
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1514
1659
|
}
|
|
1515
1660
|
},
|
|
1516
1661
|
"end": "\\)",
|
|
1517
1662
|
"endCaptures": {
|
|
1518
1663
|
"0": {
|
|
1519
|
-
"name": "punctuation.definition.
|
|
1664
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1520
1665
|
}
|
|
1521
1666
|
},
|
|
1522
1667
|
"patterns": [
|
|
@@ -1562,7 +1707,7 @@
|
|
|
1562
1707
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1563
1708
|
"captures": {
|
|
1564
1709
|
"1": {
|
|
1565
|
-
"name": "punctuation.definition.
|
|
1710
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1566
1711
|
},
|
|
1567
1712
|
"2": {
|
|
1568
1713
|
"name": "variable.other.mira"
|
|
@@ -1574,13 +1719,13 @@
|
|
|
1574
1719
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1575
1720
|
"beginCaptures": {
|
|
1576
1721
|
"1": {
|
|
1577
|
-
"name": "punctuation.definition.
|
|
1722
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1578
1723
|
}
|
|
1579
1724
|
},
|
|
1580
1725
|
"end": "\\}",
|
|
1581
1726
|
"endCaptures": {
|
|
1582
1727
|
"0": {
|
|
1583
|
-
"name": "punctuation.definition.
|
|
1728
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1584
1729
|
}
|
|
1585
1730
|
},
|
|
1586
1731
|
"patterns": [
|
|
@@ -1594,13 +1739,13 @@
|
|
|
1594
1739
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1595
1740
|
"beginCaptures": {
|
|
1596
1741
|
"1": {
|
|
1597
|
-
"name": "punctuation.definition.
|
|
1742
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1598
1743
|
}
|
|
1599
1744
|
},
|
|
1600
1745
|
"end": "\\)",
|
|
1601
1746
|
"endCaptures": {
|
|
1602
1747
|
"0": {
|
|
1603
|
-
"name": "punctuation.definition.
|
|
1748
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1604
1749
|
}
|
|
1605
1750
|
},
|
|
1606
1751
|
"patterns": [
|
|
@@ -1646,7 +1791,7 @@
|
|
|
1646
1791
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1647
1792
|
"captures": {
|
|
1648
1793
|
"1": {
|
|
1649
|
-
"name": "punctuation.definition.
|
|
1794
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1650
1795
|
},
|
|
1651
1796
|
"2": {
|
|
1652
1797
|
"name": "variable.other.mira"
|
|
@@ -1658,13 +1803,13 @@
|
|
|
1658
1803
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1659
1804
|
"beginCaptures": {
|
|
1660
1805
|
"1": {
|
|
1661
|
-
"name": "punctuation.definition.
|
|
1806
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1662
1807
|
}
|
|
1663
1808
|
},
|
|
1664
1809
|
"end": "\\}",
|
|
1665
1810
|
"endCaptures": {
|
|
1666
1811
|
"0": {
|
|
1667
|
-
"name": "punctuation.definition.
|
|
1812
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1668
1813
|
}
|
|
1669
1814
|
},
|
|
1670
1815
|
"patterns": [
|
|
@@ -1678,13 +1823,13 @@
|
|
|
1678
1823
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1679
1824
|
"beginCaptures": {
|
|
1680
1825
|
"1": {
|
|
1681
|
-
"name": "punctuation.definition.
|
|
1826
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1682
1827
|
}
|
|
1683
1828
|
},
|
|
1684
1829
|
"end": "\\)",
|
|
1685
1830
|
"endCaptures": {
|
|
1686
1831
|
"0": {
|
|
1687
|
-
"name": "punctuation.definition.
|
|
1832
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1688
1833
|
}
|
|
1689
1834
|
},
|
|
1690
1835
|
"patterns": [
|
|
@@ -1730,7 +1875,7 @@
|
|
|
1730
1875
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1731
1876
|
"captures": {
|
|
1732
1877
|
"1": {
|
|
1733
|
-
"name": "punctuation.definition.
|
|
1878
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1734
1879
|
},
|
|
1735
1880
|
"2": {
|
|
1736
1881
|
"name": "variable.other.mira"
|
|
@@ -1742,13 +1887,13 @@
|
|
|
1742
1887
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1743
1888
|
"beginCaptures": {
|
|
1744
1889
|
"1": {
|
|
1745
|
-
"name": "punctuation.definition.
|
|
1890
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1746
1891
|
}
|
|
1747
1892
|
},
|
|
1748
1893
|
"end": "\\}",
|
|
1749
1894
|
"endCaptures": {
|
|
1750
1895
|
"0": {
|
|
1751
|
-
"name": "punctuation.definition.
|
|
1896
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1752
1897
|
}
|
|
1753
1898
|
},
|
|
1754
1899
|
"patterns": [
|
|
@@ -1762,13 +1907,13 @@
|
|
|
1762
1907
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1763
1908
|
"beginCaptures": {
|
|
1764
1909
|
"1": {
|
|
1765
|
-
"name": "punctuation.definition.
|
|
1910
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1766
1911
|
}
|
|
1767
1912
|
},
|
|
1768
1913
|
"end": "\\)",
|
|
1769
1914
|
"endCaptures": {
|
|
1770
1915
|
"0": {
|
|
1771
|
-
"name": "punctuation.definition.
|
|
1916
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1772
1917
|
}
|
|
1773
1918
|
},
|
|
1774
1919
|
"patterns": [
|
|
@@ -1814,7 +1959,7 @@
|
|
|
1814
1959
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1815
1960
|
"captures": {
|
|
1816
1961
|
"1": {
|
|
1817
|
-
"name": "punctuation.definition.
|
|
1962
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1818
1963
|
},
|
|
1819
1964
|
"2": {
|
|
1820
1965
|
"name": "variable.other.mira"
|
|
@@ -1826,13 +1971,13 @@
|
|
|
1826
1971
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1827
1972
|
"beginCaptures": {
|
|
1828
1973
|
"1": {
|
|
1829
|
-
"name": "punctuation.definition.
|
|
1974
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1830
1975
|
}
|
|
1831
1976
|
},
|
|
1832
1977
|
"end": "\\}",
|
|
1833
1978
|
"endCaptures": {
|
|
1834
1979
|
"0": {
|
|
1835
|
-
"name": "punctuation.definition.
|
|
1980
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1836
1981
|
}
|
|
1837
1982
|
},
|
|
1838
1983
|
"patterns": [
|
|
@@ -1846,13 +1991,13 @@
|
|
|
1846
1991
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1847
1992
|
"beginCaptures": {
|
|
1848
1993
|
"1": {
|
|
1849
|
-
"name": "punctuation.definition.
|
|
1994
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1850
1995
|
}
|
|
1851
1996
|
},
|
|
1852
1997
|
"end": "\\)",
|
|
1853
1998
|
"endCaptures": {
|
|
1854
1999
|
"0": {
|
|
1855
|
-
"name": "punctuation.definition.
|
|
2000
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1856
2001
|
}
|
|
1857
2002
|
},
|
|
1858
2003
|
"patterns": [
|
|
@@ -1898,7 +2043,7 @@
|
|
|
1898
2043
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1899
2044
|
"captures": {
|
|
1900
2045
|
"1": {
|
|
1901
|
-
"name": "punctuation.definition.
|
|
2046
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1902
2047
|
},
|
|
1903
2048
|
"2": {
|
|
1904
2049
|
"name": "variable.other.mira"
|
|
@@ -1910,13 +2055,13 @@
|
|
|
1910
2055
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1911
2056
|
"beginCaptures": {
|
|
1912
2057
|
"1": {
|
|
1913
|
-
"name": "punctuation.definition.
|
|
2058
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1914
2059
|
}
|
|
1915
2060
|
},
|
|
1916
2061
|
"end": "\\}",
|
|
1917
2062
|
"endCaptures": {
|
|
1918
2063
|
"0": {
|
|
1919
|
-
"name": "punctuation.definition.
|
|
2064
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1920
2065
|
}
|
|
1921
2066
|
},
|
|
1922
2067
|
"patterns": [
|
|
@@ -1930,13 +2075,13 @@
|
|
|
1930
2075
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
1931
2076
|
"beginCaptures": {
|
|
1932
2077
|
"1": {
|
|
1933
|
-
"name": "punctuation.definition.
|
|
2078
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1934
2079
|
}
|
|
1935
2080
|
},
|
|
1936
2081
|
"end": "\\)",
|
|
1937
2082
|
"endCaptures": {
|
|
1938
2083
|
"0": {
|
|
1939
|
-
"name": "punctuation.definition.
|
|
2084
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
1940
2085
|
}
|
|
1941
2086
|
},
|
|
1942
2087
|
"patterns": [
|
|
@@ -1982,7 +2127,7 @@
|
|
|
1982
2127
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
1983
2128
|
"captures": {
|
|
1984
2129
|
"1": {
|
|
1985
|
-
"name": "punctuation.definition.
|
|
2130
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1986
2131
|
},
|
|
1987
2132
|
"2": {
|
|
1988
2133
|
"name": "variable.other.mira"
|
|
@@ -1994,13 +2139,13 @@
|
|
|
1994
2139
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
1995
2140
|
"beginCaptures": {
|
|
1996
2141
|
"1": {
|
|
1997
|
-
"name": "punctuation.definition.
|
|
2142
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
1998
2143
|
}
|
|
1999
2144
|
},
|
|
2000
2145
|
"end": "\\}",
|
|
2001
2146
|
"endCaptures": {
|
|
2002
2147
|
"0": {
|
|
2003
|
-
"name": "punctuation.definition.
|
|
2148
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2004
2149
|
}
|
|
2005
2150
|
},
|
|
2006
2151
|
"patterns": [
|
|
@@ -2014,13 +2159,13 @@
|
|
|
2014
2159
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2015
2160
|
"beginCaptures": {
|
|
2016
2161
|
"1": {
|
|
2017
|
-
"name": "punctuation.definition.
|
|
2162
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2018
2163
|
}
|
|
2019
2164
|
},
|
|
2020
2165
|
"end": "\\)",
|
|
2021
2166
|
"endCaptures": {
|
|
2022
2167
|
"0": {
|
|
2023
|
-
"name": "punctuation.definition.
|
|
2168
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2024
2169
|
}
|
|
2025
2170
|
},
|
|
2026
2171
|
"patterns": [
|
|
@@ -2066,7 +2211,7 @@
|
|
|
2066
2211
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2067
2212
|
"captures": {
|
|
2068
2213
|
"1": {
|
|
2069
|
-
"name": "punctuation.definition.
|
|
2214
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2070
2215
|
},
|
|
2071
2216
|
"2": {
|
|
2072
2217
|
"name": "variable.other.mira"
|
|
@@ -2078,13 +2223,13 @@
|
|
|
2078
2223
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2079
2224
|
"beginCaptures": {
|
|
2080
2225
|
"1": {
|
|
2081
|
-
"name": "punctuation.definition.
|
|
2226
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2082
2227
|
}
|
|
2083
2228
|
},
|
|
2084
2229
|
"end": "\\}",
|
|
2085
2230
|
"endCaptures": {
|
|
2086
2231
|
"0": {
|
|
2087
|
-
"name": "punctuation.definition.
|
|
2232
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2088
2233
|
}
|
|
2089
2234
|
},
|
|
2090
2235
|
"patterns": [
|
|
@@ -2098,13 +2243,13 @@
|
|
|
2098
2243
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2099
2244
|
"beginCaptures": {
|
|
2100
2245
|
"1": {
|
|
2101
|
-
"name": "punctuation.definition.
|
|
2246
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2102
2247
|
}
|
|
2103
2248
|
},
|
|
2104
2249
|
"end": "\\)",
|
|
2105
2250
|
"endCaptures": {
|
|
2106
2251
|
"0": {
|
|
2107
|
-
"name": "punctuation.definition.
|
|
2252
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2108
2253
|
}
|
|
2109
2254
|
},
|
|
2110
2255
|
"patterns": [
|
|
@@ -2150,7 +2295,7 @@
|
|
|
2150
2295
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2151
2296
|
"captures": {
|
|
2152
2297
|
"1": {
|
|
2153
|
-
"name": "punctuation.definition.
|
|
2298
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2154
2299
|
},
|
|
2155
2300
|
"2": {
|
|
2156
2301
|
"name": "variable.other.mira"
|
|
@@ -2162,13 +2307,13 @@
|
|
|
2162
2307
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2163
2308
|
"beginCaptures": {
|
|
2164
2309
|
"1": {
|
|
2165
|
-
"name": "punctuation.definition.
|
|
2310
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2166
2311
|
}
|
|
2167
2312
|
},
|
|
2168
2313
|
"end": "\\}",
|
|
2169
2314
|
"endCaptures": {
|
|
2170
2315
|
"0": {
|
|
2171
|
-
"name": "punctuation.definition.
|
|
2316
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2172
2317
|
}
|
|
2173
2318
|
},
|
|
2174
2319
|
"patterns": [
|
|
@@ -2182,13 +2327,13 @@
|
|
|
2182
2327
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2183
2328
|
"beginCaptures": {
|
|
2184
2329
|
"1": {
|
|
2185
|
-
"name": "punctuation.definition.
|
|
2330
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2186
2331
|
}
|
|
2187
2332
|
},
|
|
2188
2333
|
"end": "\\)",
|
|
2189
2334
|
"endCaptures": {
|
|
2190
2335
|
"0": {
|
|
2191
|
-
"name": "punctuation.definition.
|
|
2336
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2192
2337
|
}
|
|
2193
2338
|
},
|
|
2194
2339
|
"patterns": [
|
|
@@ -2234,7 +2379,7 @@
|
|
|
2234
2379
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2235
2380
|
"captures": {
|
|
2236
2381
|
"1": {
|
|
2237
|
-
"name": "punctuation.definition.
|
|
2382
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2238
2383
|
},
|
|
2239
2384
|
"2": {
|
|
2240
2385
|
"name": "variable.other.mira"
|
|
@@ -2246,13 +2391,13 @@
|
|
|
2246
2391
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2247
2392
|
"beginCaptures": {
|
|
2248
2393
|
"1": {
|
|
2249
|
-
"name": "punctuation.definition.
|
|
2394
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2250
2395
|
}
|
|
2251
2396
|
},
|
|
2252
2397
|
"end": "\\}",
|
|
2253
2398
|
"endCaptures": {
|
|
2254
2399
|
"0": {
|
|
2255
|
-
"name": "punctuation.definition.
|
|
2400
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2256
2401
|
}
|
|
2257
2402
|
},
|
|
2258
2403
|
"patterns": [
|
|
@@ -2266,13 +2411,13 @@
|
|
|
2266
2411
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2267
2412
|
"beginCaptures": {
|
|
2268
2413
|
"1": {
|
|
2269
|
-
"name": "punctuation.definition.
|
|
2414
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2270
2415
|
}
|
|
2271
2416
|
},
|
|
2272
2417
|
"end": "\\)",
|
|
2273
2418
|
"endCaptures": {
|
|
2274
2419
|
"0": {
|
|
2275
|
-
"name": "punctuation.definition.
|
|
2420
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2276
2421
|
}
|
|
2277
2422
|
},
|
|
2278
2423
|
"patterns": [
|
|
@@ -2318,7 +2463,7 @@
|
|
|
2318
2463
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2319
2464
|
"captures": {
|
|
2320
2465
|
"1": {
|
|
2321
|
-
"name": "punctuation.definition.
|
|
2466
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2322
2467
|
},
|
|
2323
2468
|
"2": {
|
|
2324
2469
|
"name": "variable.other.mira"
|
|
@@ -2330,13 +2475,13 @@
|
|
|
2330
2475
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2331
2476
|
"beginCaptures": {
|
|
2332
2477
|
"1": {
|
|
2333
|
-
"name": "punctuation.definition.
|
|
2478
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2334
2479
|
}
|
|
2335
2480
|
},
|
|
2336
2481
|
"end": "\\}",
|
|
2337
2482
|
"endCaptures": {
|
|
2338
2483
|
"0": {
|
|
2339
|
-
"name": "punctuation.definition.
|
|
2484
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2340
2485
|
}
|
|
2341
2486
|
},
|
|
2342
2487
|
"patterns": [
|
|
@@ -2350,13 +2495,13 @@
|
|
|
2350
2495
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2351
2496
|
"beginCaptures": {
|
|
2352
2497
|
"1": {
|
|
2353
|
-
"name": "punctuation.definition.
|
|
2498
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2354
2499
|
}
|
|
2355
2500
|
},
|
|
2356
2501
|
"end": "\\)",
|
|
2357
2502
|
"endCaptures": {
|
|
2358
2503
|
"0": {
|
|
2359
|
-
"name": "punctuation.definition.
|
|
2504
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2360
2505
|
}
|
|
2361
2506
|
},
|
|
2362
2507
|
"patterns": [
|
|
@@ -2402,7 +2547,7 @@
|
|
|
2402
2547
|
"match": "(\\$\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2403
2548
|
"captures": {
|
|
2404
2549
|
"1": {
|
|
2405
|
-
"name": "punctuation.definition.
|
|
2550
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2406
2551
|
},
|
|
2407
2552
|
"2": {
|
|
2408
2553
|
"name": "variable.other.mira"
|
|
@@ -2414,13 +2559,13 @@
|
|
|
2414
2559
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2415
2560
|
"beginCaptures": {
|
|
2416
2561
|
"1": {
|
|
2417
|
-
"name": "punctuation.definition.
|
|
2562
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2418
2563
|
}
|
|
2419
2564
|
},
|
|
2420
2565
|
"end": "\\}",
|
|
2421
2566
|
"endCaptures": {
|
|
2422
2567
|
"0": {
|
|
2423
|
-
"name": "punctuation.definition.
|
|
2568
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2424
2569
|
}
|
|
2425
2570
|
},
|
|
2426
2571
|
"patterns": [
|
|
@@ -2434,13 +2579,13 @@
|
|
|
2434
2579
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2435
2580
|
"beginCaptures": {
|
|
2436
2581
|
"1": {
|
|
2437
|
-
"name": "punctuation.definition.
|
|
2582
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2438
2583
|
}
|
|
2439
2584
|
},
|
|
2440
2585
|
"end": "\\)",
|
|
2441
2586
|
"endCaptures": {
|
|
2442
2587
|
"0": {
|
|
2443
|
-
"name": "punctuation.definition.
|
|
2588
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2444
2589
|
}
|
|
2445
2590
|
},
|
|
2446
2591
|
"patterns": [
|
|
@@ -2486,7 +2631,7 @@
|
|
|
2486
2631
|
"match": "(\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2487
2632
|
"captures": {
|
|
2488
2633
|
"1": {
|
|
2489
|
-
"name": "punctuation.definition.
|
|
2634
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2490
2635
|
},
|
|
2491
2636
|
"2": {
|
|
2492
2637
|
"name": "variable.other.mira"
|
|
@@ -2498,13 +2643,13 @@
|
|
|
2498
2643
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2499
2644
|
"beginCaptures": {
|
|
2500
2645
|
"1": {
|
|
2501
|
-
"name": "punctuation.definition.
|
|
2646
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2502
2647
|
}
|
|
2503
2648
|
},
|
|
2504
2649
|
"end": "\\}",
|
|
2505
2650
|
"endCaptures": {
|
|
2506
2651
|
"0": {
|
|
2507
|
-
"name": "punctuation.definition.
|
|
2652
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2508
2653
|
}
|
|
2509
2654
|
},
|
|
2510
2655
|
"patterns": [
|
|
@@ -2518,13 +2663,13 @@
|
|
|
2518
2663
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2519
2664
|
"beginCaptures": {
|
|
2520
2665
|
"1": {
|
|
2521
|
-
"name": "punctuation.definition.
|
|
2666
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2522
2667
|
}
|
|
2523
2668
|
},
|
|
2524
2669
|
"end": "\\)",
|
|
2525
2670
|
"endCaptures": {
|
|
2526
2671
|
"0": {
|
|
2527
|
-
"name": "punctuation.definition.
|
|
2672
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2528
2673
|
}
|
|
2529
2674
|
},
|
|
2530
2675
|
"patterns": [
|
|
@@ -2570,7 +2715,7 @@
|
|
|
2570
2715
|
"match": "(\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2571
2716
|
"captures": {
|
|
2572
2717
|
"1": {
|
|
2573
|
-
"name": "punctuation.definition.
|
|
2718
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2574
2719
|
},
|
|
2575
2720
|
"2": {
|
|
2576
2721
|
"name": "variable.other.mira"
|
|
@@ -2582,13 +2727,13 @@
|
|
|
2582
2727
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2583
2728
|
"beginCaptures": {
|
|
2584
2729
|
"1": {
|
|
2585
|
-
"name": "punctuation.definition.
|
|
2730
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2586
2731
|
}
|
|
2587
2732
|
},
|
|
2588
2733
|
"end": "\\}",
|
|
2589
2734
|
"endCaptures": {
|
|
2590
2735
|
"0": {
|
|
2591
|
-
"name": "punctuation.definition.
|
|
2736
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2592
2737
|
}
|
|
2593
2738
|
},
|
|
2594
2739
|
"patterns": [
|
|
@@ -2602,13 +2747,13 @@
|
|
|
2602
2747
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2603
2748
|
"beginCaptures": {
|
|
2604
2749
|
"1": {
|
|
2605
|
-
"name": "punctuation.definition.
|
|
2750
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2606
2751
|
}
|
|
2607
2752
|
},
|
|
2608
2753
|
"end": "\\)",
|
|
2609
2754
|
"endCaptures": {
|
|
2610
2755
|
"0": {
|
|
2611
|
-
"name": "punctuation.definition.
|
|
2756
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2612
2757
|
}
|
|
2613
2758
|
},
|
|
2614
2759
|
"patterns": [
|
|
@@ -2654,7 +2799,7 @@
|
|
|
2654
2799
|
"match": "(\\$\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2655
2800
|
"captures": {
|
|
2656
2801
|
"1": {
|
|
2657
|
-
"name": "punctuation.definition.
|
|
2802
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2658
2803
|
},
|
|
2659
2804
|
"2": {
|
|
2660
2805
|
"name": "variable.other.mira"
|
|
@@ -2666,13 +2811,13 @@
|
|
|
2666
2811
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\{)",
|
|
2667
2812
|
"beginCaptures": {
|
|
2668
2813
|
"1": {
|
|
2669
|
-
"name": "punctuation.definition.
|
|
2814
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2670
2815
|
}
|
|
2671
2816
|
},
|
|
2672
2817
|
"end": "\\}",
|
|
2673
2818
|
"endCaptures": {
|
|
2674
2819
|
"0": {
|
|
2675
|
-
"name": "punctuation.definition.
|
|
2820
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2676
2821
|
}
|
|
2677
2822
|
},
|
|
2678
2823
|
"patterns": [
|
|
@@ -2686,13 +2831,13 @@
|
|
|
2686
2831
|
"begin": "(\\$\\$\\$\\$\\$\\$\\$\\()",
|
|
2687
2832
|
"beginCaptures": {
|
|
2688
2833
|
"1": {
|
|
2689
|
-
"name": "punctuation.definition.
|
|
2834
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2690
2835
|
}
|
|
2691
2836
|
},
|
|
2692
2837
|
"end": "\\)",
|
|
2693
2838
|
"endCaptures": {
|
|
2694
2839
|
"0": {
|
|
2695
|
-
"name": "punctuation.definition.
|
|
2840
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2696
2841
|
}
|
|
2697
2842
|
},
|
|
2698
2843
|
"patterns": [
|
|
@@ -2738,7 +2883,7 @@
|
|
|
2738
2883
|
"match": "(\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2739
2884
|
"captures": {
|
|
2740
2885
|
"1": {
|
|
2741
|
-
"name": "punctuation.definition.
|
|
2886
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2742
2887
|
},
|
|
2743
2888
|
"2": {
|
|
2744
2889
|
"name": "variable.other.mira"
|
|
@@ -2750,13 +2895,13 @@
|
|
|
2750
2895
|
"begin": "(\\$\\$\\$\\$\\$\\$\\{)",
|
|
2751
2896
|
"beginCaptures": {
|
|
2752
2897
|
"1": {
|
|
2753
|
-
"name": "punctuation.definition.
|
|
2898
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2754
2899
|
}
|
|
2755
2900
|
},
|
|
2756
2901
|
"end": "\\}",
|
|
2757
2902
|
"endCaptures": {
|
|
2758
2903
|
"0": {
|
|
2759
|
-
"name": "punctuation.definition.
|
|
2904
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2760
2905
|
}
|
|
2761
2906
|
},
|
|
2762
2907
|
"patterns": [
|
|
@@ -2770,13 +2915,13 @@
|
|
|
2770
2915
|
"begin": "(\\$\\$\\$\\$\\$\\$\\()",
|
|
2771
2916
|
"beginCaptures": {
|
|
2772
2917
|
"1": {
|
|
2773
|
-
"name": "punctuation.definition.
|
|
2918
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2774
2919
|
}
|
|
2775
2920
|
},
|
|
2776
2921
|
"end": "\\)",
|
|
2777
2922
|
"endCaptures": {
|
|
2778
2923
|
"0": {
|
|
2779
|
-
"name": "punctuation.definition.
|
|
2924
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2780
2925
|
}
|
|
2781
2926
|
},
|
|
2782
2927
|
"patterns": [
|
|
@@ -2822,7 +2967,7 @@
|
|
|
2822
2967
|
"match": "(\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2823
2968
|
"captures": {
|
|
2824
2969
|
"1": {
|
|
2825
|
-
"name": "punctuation.definition.
|
|
2970
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2826
2971
|
},
|
|
2827
2972
|
"2": {
|
|
2828
2973
|
"name": "variable.other.mira"
|
|
@@ -2834,13 +2979,13 @@
|
|
|
2834
2979
|
"begin": "(\\$\\$\\$\\$\\$\\$\\{)",
|
|
2835
2980
|
"beginCaptures": {
|
|
2836
2981
|
"1": {
|
|
2837
|
-
"name": "punctuation.definition.
|
|
2982
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2838
2983
|
}
|
|
2839
2984
|
},
|
|
2840
2985
|
"end": "\\}",
|
|
2841
2986
|
"endCaptures": {
|
|
2842
2987
|
"0": {
|
|
2843
|
-
"name": "punctuation.definition.
|
|
2988
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2844
2989
|
}
|
|
2845
2990
|
},
|
|
2846
2991
|
"patterns": [
|
|
@@ -2854,13 +2999,13 @@
|
|
|
2854
2999
|
"begin": "(\\$\\$\\$\\$\\$\\$\\()",
|
|
2855
3000
|
"beginCaptures": {
|
|
2856
3001
|
"1": {
|
|
2857
|
-
"name": "punctuation.definition.
|
|
3002
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2858
3003
|
}
|
|
2859
3004
|
},
|
|
2860
3005
|
"end": "\\)",
|
|
2861
3006
|
"endCaptures": {
|
|
2862
3007
|
"0": {
|
|
2863
|
-
"name": "punctuation.definition.
|
|
3008
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2864
3009
|
}
|
|
2865
3010
|
},
|
|
2866
3011
|
"patterns": [
|
|
@@ -2906,7 +3051,7 @@
|
|
|
2906
3051
|
"match": "(\\$\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2907
3052
|
"captures": {
|
|
2908
3053
|
"1": {
|
|
2909
|
-
"name": "punctuation.definition.
|
|
3054
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2910
3055
|
},
|
|
2911
3056
|
"2": {
|
|
2912
3057
|
"name": "variable.other.mira"
|
|
@@ -2918,13 +3063,13 @@
|
|
|
2918
3063
|
"begin": "(\\$\\$\\$\\$\\$\\$\\{)",
|
|
2919
3064
|
"beginCaptures": {
|
|
2920
3065
|
"1": {
|
|
2921
|
-
"name": "punctuation.definition.
|
|
3066
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2922
3067
|
}
|
|
2923
3068
|
},
|
|
2924
3069
|
"end": "\\}",
|
|
2925
3070
|
"endCaptures": {
|
|
2926
3071
|
"0": {
|
|
2927
|
-
"name": "punctuation.definition.
|
|
3072
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2928
3073
|
}
|
|
2929
3074
|
},
|
|
2930
3075
|
"patterns": [
|
|
@@ -2938,13 +3083,13 @@
|
|
|
2938
3083
|
"begin": "(\\$\\$\\$\\$\\$\\$\\()",
|
|
2939
3084
|
"beginCaptures": {
|
|
2940
3085
|
"1": {
|
|
2941
|
-
"name": "punctuation.definition.
|
|
3086
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2942
3087
|
}
|
|
2943
3088
|
},
|
|
2944
3089
|
"end": "\\)",
|
|
2945
3090
|
"endCaptures": {
|
|
2946
3091
|
"0": {
|
|
2947
|
-
"name": "punctuation.definition.
|
|
3092
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
2948
3093
|
}
|
|
2949
3094
|
},
|
|
2950
3095
|
"patterns": [
|
|
@@ -2990,7 +3135,7 @@
|
|
|
2990
3135
|
"match": "(\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
2991
3136
|
"captures": {
|
|
2992
3137
|
"1": {
|
|
2993
|
-
"name": "punctuation.definition.
|
|
3138
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
2994
3139
|
},
|
|
2995
3140
|
"2": {
|
|
2996
3141
|
"name": "variable.other.mira"
|
|
@@ -3002,13 +3147,13 @@
|
|
|
3002
3147
|
"begin": "(\\$\\$\\$\\$\\$\\{)",
|
|
3003
3148
|
"beginCaptures": {
|
|
3004
3149
|
"1": {
|
|
3005
|
-
"name": "punctuation.definition.
|
|
3150
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3006
3151
|
}
|
|
3007
3152
|
},
|
|
3008
3153
|
"end": "\\}",
|
|
3009
3154
|
"endCaptures": {
|
|
3010
3155
|
"0": {
|
|
3011
|
-
"name": "punctuation.definition.
|
|
3156
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3012
3157
|
}
|
|
3013
3158
|
},
|
|
3014
3159
|
"patterns": [
|
|
@@ -3022,13 +3167,13 @@
|
|
|
3022
3167
|
"begin": "(\\$\\$\\$\\$\\$\\()",
|
|
3023
3168
|
"beginCaptures": {
|
|
3024
3169
|
"1": {
|
|
3025
|
-
"name": "punctuation.definition.
|
|
3170
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3026
3171
|
}
|
|
3027
3172
|
},
|
|
3028
3173
|
"end": "\\)",
|
|
3029
3174
|
"endCaptures": {
|
|
3030
3175
|
"0": {
|
|
3031
|
-
"name": "punctuation.definition.
|
|
3176
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3032
3177
|
}
|
|
3033
3178
|
},
|
|
3034
3179
|
"patterns": [
|
|
@@ -3074,7 +3219,7 @@
|
|
|
3074
3219
|
"match": "(\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3075
3220
|
"captures": {
|
|
3076
3221
|
"1": {
|
|
3077
|
-
"name": "punctuation.definition.
|
|
3222
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3078
3223
|
},
|
|
3079
3224
|
"2": {
|
|
3080
3225
|
"name": "variable.other.mira"
|
|
@@ -3086,13 +3231,13 @@
|
|
|
3086
3231
|
"begin": "(\\$\\$\\$\\$\\$\\{)",
|
|
3087
3232
|
"beginCaptures": {
|
|
3088
3233
|
"1": {
|
|
3089
|
-
"name": "punctuation.definition.
|
|
3234
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3090
3235
|
}
|
|
3091
3236
|
},
|
|
3092
3237
|
"end": "\\}",
|
|
3093
3238
|
"endCaptures": {
|
|
3094
3239
|
"0": {
|
|
3095
|
-
"name": "punctuation.definition.
|
|
3240
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3096
3241
|
}
|
|
3097
3242
|
},
|
|
3098
3243
|
"patterns": [
|
|
@@ -3106,13 +3251,13 @@
|
|
|
3106
3251
|
"begin": "(\\$\\$\\$\\$\\$\\()",
|
|
3107
3252
|
"beginCaptures": {
|
|
3108
3253
|
"1": {
|
|
3109
|
-
"name": "punctuation.definition.
|
|
3254
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3110
3255
|
}
|
|
3111
3256
|
},
|
|
3112
3257
|
"end": "\\)",
|
|
3113
3258
|
"endCaptures": {
|
|
3114
3259
|
"0": {
|
|
3115
|
-
"name": "punctuation.definition.
|
|
3260
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3116
3261
|
}
|
|
3117
3262
|
},
|
|
3118
3263
|
"patterns": [
|
|
@@ -3158,7 +3303,7 @@
|
|
|
3158
3303
|
"match": "(\\$\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3159
3304
|
"captures": {
|
|
3160
3305
|
"1": {
|
|
3161
|
-
"name": "punctuation.definition.
|
|
3306
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3162
3307
|
},
|
|
3163
3308
|
"2": {
|
|
3164
3309
|
"name": "variable.other.mira"
|
|
@@ -3170,13 +3315,13 @@
|
|
|
3170
3315
|
"begin": "(\\$\\$\\$\\$\\$\\{)",
|
|
3171
3316
|
"beginCaptures": {
|
|
3172
3317
|
"1": {
|
|
3173
|
-
"name": "punctuation.definition.
|
|
3318
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3174
3319
|
}
|
|
3175
3320
|
},
|
|
3176
3321
|
"end": "\\}",
|
|
3177
3322
|
"endCaptures": {
|
|
3178
3323
|
"0": {
|
|
3179
|
-
"name": "punctuation.definition.
|
|
3324
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3180
3325
|
}
|
|
3181
3326
|
},
|
|
3182
3327
|
"patterns": [
|
|
@@ -3190,13 +3335,13 @@
|
|
|
3190
3335
|
"begin": "(\\$\\$\\$\\$\\$\\()",
|
|
3191
3336
|
"beginCaptures": {
|
|
3192
3337
|
"1": {
|
|
3193
|
-
"name": "punctuation.definition.
|
|
3338
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3194
3339
|
}
|
|
3195
3340
|
},
|
|
3196
3341
|
"end": "\\)",
|
|
3197
3342
|
"endCaptures": {
|
|
3198
3343
|
"0": {
|
|
3199
|
-
"name": "punctuation.definition.
|
|
3344
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3200
3345
|
}
|
|
3201
3346
|
},
|
|
3202
3347
|
"patterns": [
|
|
@@ -3242,7 +3387,7 @@
|
|
|
3242
3387
|
"match": "(\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3243
3388
|
"captures": {
|
|
3244
3389
|
"1": {
|
|
3245
|
-
"name": "punctuation.definition.
|
|
3390
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3246
3391
|
},
|
|
3247
3392
|
"2": {
|
|
3248
3393
|
"name": "variable.other.mira"
|
|
@@ -3254,13 +3399,13 @@
|
|
|
3254
3399
|
"begin": "(\\$\\$\\$\\$\\{)",
|
|
3255
3400
|
"beginCaptures": {
|
|
3256
3401
|
"1": {
|
|
3257
|
-
"name": "punctuation.definition.
|
|
3402
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3258
3403
|
}
|
|
3259
3404
|
},
|
|
3260
3405
|
"end": "\\}",
|
|
3261
3406
|
"endCaptures": {
|
|
3262
3407
|
"0": {
|
|
3263
|
-
"name": "punctuation.definition.
|
|
3408
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3264
3409
|
}
|
|
3265
3410
|
},
|
|
3266
3411
|
"patterns": [
|
|
@@ -3274,13 +3419,13 @@
|
|
|
3274
3419
|
"begin": "(\\$\\$\\$\\$\\()",
|
|
3275
3420
|
"beginCaptures": {
|
|
3276
3421
|
"1": {
|
|
3277
|
-
"name": "punctuation.definition.
|
|
3422
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3278
3423
|
}
|
|
3279
3424
|
},
|
|
3280
3425
|
"end": "\\)",
|
|
3281
3426
|
"endCaptures": {
|
|
3282
3427
|
"0": {
|
|
3283
|
-
"name": "punctuation.definition.
|
|
3428
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3284
3429
|
}
|
|
3285
3430
|
},
|
|
3286
3431
|
"patterns": [
|
|
@@ -3326,7 +3471,7 @@
|
|
|
3326
3471
|
"match": "(\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3327
3472
|
"captures": {
|
|
3328
3473
|
"1": {
|
|
3329
|
-
"name": "punctuation.definition.
|
|
3474
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3330
3475
|
},
|
|
3331
3476
|
"2": {
|
|
3332
3477
|
"name": "variable.other.mira"
|
|
@@ -3338,13 +3483,13 @@
|
|
|
3338
3483
|
"begin": "(\\$\\$\\$\\$\\{)",
|
|
3339
3484
|
"beginCaptures": {
|
|
3340
3485
|
"1": {
|
|
3341
|
-
"name": "punctuation.definition.
|
|
3486
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3342
3487
|
}
|
|
3343
3488
|
},
|
|
3344
3489
|
"end": "\\}",
|
|
3345
3490
|
"endCaptures": {
|
|
3346
3491
|
"0": {
|
|
3347
|
-
"name": "punctuation.definition.
|
|
3492
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3348
3493
|
}
|
|
3349
3494
|
},
|
|
3350
3495
|
"patterns": [
|
|
@@ -3358,13 +3503,13 @@
|
|
|
3358
3503
|
"begin": "(\\$\\$\\$\\$\\()",
|
|
3359
3504
|
"beginCaptures": {
|
|
3360
3505
|
"1": {
|
|
3361
|
-
"name": "punctuation.definition.
|
|
3506
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3362
3507
|
}
|
|
3363
3508
|
},
|
|
3364
3509
|
"end": "\\)",
|
|
3365
3510
|
"endCaptures": {
|
|
3366
3511
|
"0": {
|
|
3367
|
-
"name": "punctuation.definition.
|
|
3512
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3368
3513
|
}
|
|
3369
3514
|
},
|
|
3370
3515
|
"patterns": [
|
|
@@ -3410,7 +3555,7 @@
|
|
|
3410
3555
|
"match": "(\\$\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3411
3556
|
"captures": {
|
|
3412
3557
|
"1": {
|
|
3413
|
-
"name": "punctuation.definition.
|
|
3558
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3414
3559
|
},
|
|
3415
3560
|
"2": {
|
|
3416
3561
|
"name": "variable.other.mira"
|
|
@@ -3422,13 +3567,13 @@
|
|
|
3422
3567
|
"begin": "(\\$\\$\\$\\$\\{)",
|
|
3423
3568
|
"beginCaptures": {
|
|
3424
3569
|
"1": {
|
|
3425
|
-
"name": "punctuation.definition.
|
|
3570
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3426
3571
|
}
|
|
3427
3572
|
},
|
|
3428
3573
|
"end": "\\}",
|
|
3429
3574
|
"endCaptures": {
|
|
3430
3575
|
"0": {
|
|
3431
|
-
"name": "punctuation.definition.
|
|
3576
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3432
3577
|
}
|
|
3433
3578
|
},
|
|
3434
3579
|
"patterns": [
|
|
@@ -3442,13 +3587,13 @@
|
|
|
3442
3587
|
"begin": "(\\$\\$\\$\\$\\()",
|
|
3443
3588
|
"beginCaptures": {
|
|
3444
3589
|
"1": {
|
|
3445
|
-
"name": "punctuation.definition.
|
|
3590
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3446
3591
|
}
|
|
3447
3592
|
},
|
|
3448
3593
|
"end": "\\)",
|
|
3449
3594
|
"endCaptures": {
|
|
3450
3595
|
"0": {
|
|
3451
|
-
"name": "punctuation.definition.
|
|
3596
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3452
3597
|
}
|
|
3453
3598
|
},
|
|
3454
3599
|
"patterns": [
|
|
@@ -3494,7 +3639,7 @@
|
|
|
3494
3639
|
"match": "(\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3495
3640
|
"captures": {
|
|
3496
3641
|
"1": {
|
|
3497
|
-
"name": "punctuation.definition.
|
|
3642
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3498
3643
|
},
|
|
3499
3644
|
"2": {
|
|
3500
3645
|
"name": "variable.other.mira"
|
|
@@ -3506,13 +3651,13 @@
|
|
|
3506
3651
|
"begin": "(\\$\\$\\$\\{)",
|
|
3507
3652
|
"beginCaptures": {
|
|
3508
3653
|
"1": {
|
|
3509
|
-
"name": "punctuation.definition.
|
|
3654
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3510
3655
|
}
|
|
3511
3656
|
},
|
|
3512
3657
|
"end": "\\}",
|
|
3513
3658
|
"endCaptures": {
|
|
3514
3659
|
"0": {
|
|
3515
|
-
"name": "punctuation.definition.
|
|
3660
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3516
3661
|
}
|
|
3517
3662
|
},
|
|
3518
3663
|
"patterns": [
|
|
@@ -3526,13 +3671,13 @@
|
|
|
3526
3671
|
"begin": "(\\$\\$\\$\\()",
|
|
3527
3672
|
"beginCaptures": {
|
|
3528
3673
|
"1": {
|
|
3529
|
-
"name": "punctuation.definition.
|
|
3674
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3530
3675
|
}
|
|
3531
3676
|
},
|
|
3532
3677
|
"end": "\\)",
|
|
3533
3678
|
"endCaptures": {
|
|
3534
3679
|
"0": {
|
|
3535
|
-
"name": "punctuation.definition.
|
|
3680
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3536
3681
|
}
|
|
3537
3682
|
},
|
|
3538
3683
|
"patterns": [
|
|
@@ -3578,7 +3723,7 @@
|
|
|
3578
3723
|
"match": "(\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3579
3724
|
"captures": {
|
|
3580
3725
|
"1": {
|
|
3581
|
-
"name": "punctuation.definition.
|
|
3726
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3582
3727
|
},
|
|
3583
3728
|
"2": {
|
|
3584
3729
|
"name": "variable.other.mira"
|
|
@@ -3590,13 +3735,13 @@
|
|
|
3590
3735
|
"begin": "(\\$\\$\\$\\{)",
|
|
3591
3736
|
"beginCaptures": {
|
|
3592
3737
|
"1": {
|
|
3593
|
-
"name": "punctuation.definition.
|
|
3738
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3594
3739
|
}
|
|
3595
3740
|
},
|
|
3596
3741
|
"end": "\\}",
|
|
3597
3742
|
"endCaptures": {
|
|
3598
3743
|
"0": {
|
|
3599
|
-
"name": "punctuation.definition.
|
|
3744
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3600
3745
|
}
|
|
3601
3746
|
},
|
|
3602
3747
|
"patterns": [
|
|
@@ -3610,13 +3755,13 @@
|
|
|
3610
3755
|
"begin": "(\\$\\$\\$\\()",
|
|
3611
3756
|
"beginCaptures": {
|
|
3612
3757
|
"1": {
|
|
3613
|
-
"name": "punctuation.definition.
|
|
3758
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3614
3759
|
}
|
|
3615
3760
|
},
|
|
3616
3761
|
"end": "\\)",
|
|
3617
3762
|
"endCaptures": {
|
|
3618
3763
|
"0": {
|
|
3619
|
-
"name": "punctuation.definition.
|
|
3764
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3620
3765
|
}
|
|
3621
3766
|
},
|
|
3622
3767
|
"patterns": [
|
|
@@ -3662,7 +3807,7 @@
|
|
|
3662
3807
|
"match": "(\\$\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3663
3808
|
"captures": {
|
|
3664
3809
|
"1": {
|
|
3665
|
-
"name": "punctuation.definition.
|
|
3810
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3666
3811
|
},
|
|
3667
3812
|
"2": {
|
|
3668
3813
|
"name": "variable.other.mira"
|
|
@@ -3674,13 +3819,13 @@
|
|
|
3674
3819
|
"begin": "(\\$\\$\\$\\{)",
|
|
3675
3820
|
"beginCaptures": {
|
|
3676
3821
|
"1": {
|
|
3677
|
-
"name": "punctuation.definition.
|
|
3822
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3678
3823
|
}
|
|
3679
3824
|
},
|
|
3680
3825
|
"end": "\\}",
|
|
3681
3826
|
"endCaptures": {
|
|
3682
3827
|
"0": {
|
|
3683
|
-
"name": "punctuation.definition.
|
|
3828
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3684
3829
|
}
|
|
3685
3830
|
},
|
|
3686
3831
|
"patterns": [
|
|
@@ -3694,13 +3839,13 @@
|
|
|
3694
3839
|
"begin": "(\\$\\$\\$\\()",
|
|
3695
3840
|
"beginCaptures": {
|
|
3696
3841
|
"1": {
|
|
3697
|
-
"name": "punctuation.definition.
|
|
3842
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3698
3843
|
}
|
|
3699
3844
|
},
|
|
3700
3845
|
"end": "\\)",
|
|
3701
3846
|
"endCaptures": {
|
|
3702
3847
|
"0": {
|
|
3703
|
-
"name": "punctuation.definition.
|
|
3848
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3704
3849
|
}
|
|
3705
3850
|
},
|
|
3706
3851
|
"patterns": [
|
|
@@ -3746,7 +3891,7 @@
|
|
|
3746
3891
|
"match": "(\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3747
3892
|
"captures": {
|
|
3748
3893
|
"1": {
|
|
3749
|
-
"name": "punctuation.definition.
|
|
3894
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3750
3895
|
},
|
|
3751
3896
|
"2": {
|
|
3752
3897
|
"name": "variable.other.mira"
|
|
@@ -3758,13 +3903,13 @@
|
|
|
3758
3903
|
"begin": "(\\$\\$\\{)",
|
|
3759
3904
|
"beginCaptures": {
|
|
3760
3905
|
"1": {
|
|
3761
|
-
"name": "punctuation.definition.
|
|
3906
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3762
3907
|
}
|
|
3763
3908
|
},
|
|
3764
3909
|
"end": "\\}",
|
|
3765
3910
|
"endCaptures": {
|
|
3766
3911
|
"0": {
|
|
3767
|
-
"name": "punctuation.definition.
|
|
3912
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3768
3913
|
}
|
|
3769
3914
|
},
|
|
3770
3915
|
"patterns": [
|
|
@@ -3778,13 +3923,13 @@
|
|
|
3778
3923
|
"begin": "(\\$\\$\\()",
|
|
3779
3924
|
"beginCaptures": {
|
|
3780
3925
|
"1": {
|
|
3781
|
-
"name": "punctuation.definition.
|
|
3926
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3782
3927
|
}
|
|
3783
3928
|
},
|
|
3784
3929
|
"end": "\\)",
|
|
3785
3930
|
"endCaptures": {
|
|
3786
3931
|
"0": {
|
|
3787
|
-
"name": "punctuation.definition.
|
|
3932
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3788
3933
|
}
|
|
3789
3934
|
},
|
|
3790
3935
|
"patterns": [
|
|
@@ -3830,7 +3975,7 @@
|
|
|
3830
3975
|
"match": "(\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3831
3976
|
"captures": {
|
|
3832
3977
|
"1": {
|
|
3833
|
-
"name": "punctuation.definition.
|
|
3978
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3834
3979
|
},
|
|
3835
3980
|
"2": {
|
|
3836
3981
|
"name": "variable.other.mira"
|
|
@@ -3842,13 +3987,13 @@
|
|
|
3842
3987
|
"begin": "(\\$\\$\\{)",
|
|
3843
3988
|
"beginCaptures": {
|
|
3844
3989
|
"1": {
|
|
3845
|
-
"name": "punctuation.definition.
|
|
3990
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3846
3991
|
}
|
|
3847
3992
|
},
|
|
3848
3993
|
"end": "\\}",
|
|
3849
3994
|
"endCaptures": {
|
|
3850
3995
|
"0": {
|
|
3851
|
-
"name": "punctuation.definition.
|
|
3996
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3852
3997
|
}
|
|
3853
3998
|
},
|
|
3854
3999
|
"patterns": [
|
|
@@ -3862,13 +4007,13 @@
|
|
|
3862
4007
|
"begin": "(\\$\\$\\()",
|
|
3863
4008
|
"beginCaptures": {
|
|
3864
4009
|
"1": {
|
|
3865
|
-
"name": "punctuation.definition.
|
|
4010
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3866
4011
|
}
|
|
3867
4012
|
},
|
|
3868
4013
|
"end": "\\)",
|
|
3869
4014
|
"endCaptures": {
|
|
3870
4015
|
"0": {
|
|
3871
|
-
"name": "punctuation.definition.
|
|
4016
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3872
4017
|
}
|
|
3873
4018
|
},
|
|
3874
4019
|
"patterns": [
|
|
@@ -3914,7 +4059,7 @@
|
|
|
3914
4059
|
"match": "(\\$\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3915
4060
|
"captures": {
|
|
3916
4061
|
"1": {
|
|
3917
|
-
"name": "punctuation.definition.
|
|
4062
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3918
4063
|
},
|
|
3919
4064
|
"2": {
|
|
3920
4065
|
"name": "variable.other.mira"
|
|
@@ -3926,13 +4071,13 @@
|
|
|
3926
4071
|
"begin": "(\\$\\$\\{)",
|
|
3927
4072
|
"beginCaptures": {
|
|
3928
4073
|
"1": {
|
|
3929
|
-
"name": "punctuation.definition.
|
|
4074
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3930
4075
|
}
|
|
3931
4076
|
},
|
|
3932
4077
|
"end": "\\}",
|
|
3933
4078
|
"endCaptures": {
|
|
3934
4079
|
"0": {
|
|
3935
|
-
"name": "punctuation.definition.
|
|
4080
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3936
4081
|
}
|
|
3937
4082
|
},
|
|
3938
4083
|
"patterns": [
|
|
@@ -3946,13 +4091,13 @@
|
|
|
3946
4091
|
"begin": "(\\$\\$\\()",
|
|
3947
4092
|
"beginCaptures": {
|
|
3948
4093
|
"1": {
|
|
3949
|
-
"name": "punctuation.definition.
|
|
4094
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
3950
4095
|
}
|
|
3951
4096
|
},
|
|
3952
4097
|
"end": "\\)",
|
|
3953
4098
|
"endCaptures": {
|
|
3954
4099
|
"0": {
|
|
3955
|
-
"name": "punctuation.definition.
|
|
4100
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
3956
4101
|
}
|
|
3957
4102
|
},
|
|
3958
4103
|
"patterns": [
|
|
@@ -3998,7 +4143,7 @@
|
|
|
3998
4143
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
3999
4144
|
"captures": {
|
|
4000
4145
|
"1": {
|
|
4001
|
-
"name": "punctuation.definition.
|
|
4146
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4002
4147
|
},
|
|
4003
4148
|
"2": {
|
|
4004
4149
|
"name": "variable.other.mira"
|
|
@@ -4010,13 +4155,13 @@
|
|
|
4010
4155
|
"begin": "(\\$\\{)",
|
|
4011
4156
|
"beginCaptures": {
|
|
4012
4157
|
"1": {
|
|
4013
|
-
"name": "punctuation.definition.
|
|
4158
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4014
4159
|
}
|
|
4015
4160
|
},
|
|
4016
4161
|
"end": "\\}",
|
|
4017
4162
|
"endCaptures": {
|
|
4018
4163
|
"0": {
|
|
4019
|
-
"name": "punctuation.definition.
|
|
4164
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4020
4165
|
}
|
|
4021
4166
|
},
|
|
4022
4167
|
"patterns": [
|
|
@@ -4030,13 +4175,13 @@
|
|
|
4030
4175
|
"begin": "(\\$\\()",
|
|
4031
4176
|
"beginCaptures": {
|
|
4032
4177
|
"1": {
|
|
4033
|
-
"name": "punctuation.definition.
|
|
4178
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4034
4179
|
}
|
|
4035
4180
|
},
|
|
4036
4181
|
"end": "\\)",
|
|
4037
4182
|
"endCaptures": {
|
|
4038
4183
|
"0": {
|
|
4039
|
-
"name": "punctuation.definition.
|
|
4184
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4040
4185
|
}
|
|
4041
4186
|
},
|
|
4042
4187
|
"patterns": [
|
|
@@ -4082,7 +4227,7 @@
|
|
|
4082
4227
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
4083
4228
|
"captures": {
|
|
4084
4229
|
"1": {
|
|
4085
|
-
"name": "punctuation.definition.
|
|
4230
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4086
4231
|
},
|
|
4087
4232
|
"2": {
|
|
4088
4233
|
"name": "variable.other.mira"
|
|
@@ -4094,13 +4239,13 @@
|
|
|
4094
4239
|
"begin": "(\\$\\{)",
|
|
4095
4240
|
"beginCaptures": {
|
|
4096
4241
|
"1": {
|
|
4097
|
-
"name": "punctuation.definition.
|
|
4242
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4098
4243
|
}
|
|
4099
4244
|
},
|
|
4100
4245
|
"end": "\\}",
|
|
4101
4246
|
"endCaptures": {
|
|
4102
4247
|
"0": {
|
|
4103
|
-
"name": "punctuation.definition.
|
|
4248
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4104
4249
|
}
|
|
4105
4250
|
},
|
|
4106
4251
|
"patterns": [
|
|
@@ -4114,13 +4259,13 @@
|
|
|
4114
4259
|
"begin": "(\\$\\()",
|
|
4115
4260
|
"beginCaptures": {
|
|
4116
4261
|
"1": {
|
|
4117
|
-
"name": "punctuation.definition.
|
|
4262
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4118
4263
|
}
|
|
4119
4264
|
},
|
|
4120
4265
|
"end": "\\)",
|
|
4121
4266
|
"endCaptures": {
|
|
4122
4267
|
"0": {
|
|
4123
|
-
"name": "punctuation.definition.
|
|
4268
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4124
4269
|
}
|
|
4125
4270
|
},
|
|
4126
4271
|
"patterns": [
|
|
@@ -4166,7 +4311,7 @@
|
|
|
4166
4311
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
4167
4312
|
"captures": {
|
|
4168
4313
|
"1": {
|
|
4169
|
-
"name": "punctuation.definition.
|
|
4314
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4170
4315
|
},
|
|
4171
4316
|
"2": {
|
|
4172
4317
|
"name": "variable.other.mira"
|
|
@@ -4178,13 +4323,13 @@
|
|
|
4178
4323
|
"begin": "(\\$\\{)",
|
|
4179
4324
|
"beginCaptures": {
|
|
4180
4325
|
"1": {
|
|
4181
|
-
"name": "punctuation.definition.
|
|
4326
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4182
4327
|
}
|
|
4183
4328
|
},
|
|
4184
4329
|
"end": "\\}",
|
|
4185
4330
|
"endCaptures": {
|
|
4186
4331
|
"0": {
|
|
4187
|
-
"name": "punctuation.definition.
|
|
4332
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4188
4333
|
}
|
|
4189
4334
|
},
|
|
4190
4335
|
"patterns": [
|
|
@@ -4198,13 +4343,13 @@
|
|
|
4198
4343
|
"begin": "(\\$\\()",
|
|
4199
4344
|
"beginCaptures": {
|
|
4200
4345
|
"1": {
|
|
4201
|
-
"name": "punctuation.definition.
|
|
4346
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4202
4347
|
}
|
|
4203
4348
|
},
|
|
4204
4349
|
"end": "\\)",
|
|
4205
4350
|
"endCaptures": {
|
|
4206
4351
|
"0": {
|
|
4207
|
-
"name": "punctuation.definition.
|
|
4352
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4208
4353
|
}
|
|
4209
4354
|
},
|
|
4210
4355
|
"patterns": [
|
|
@@ -4266,7 +4411,7 @@
|
|
|
4266
4411
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
4267
4412
|
"captures": {
|
|
4268
4413
|
"1": {
|
|
4269
|
-
"name": "punctuation.definition.
|
|
4414
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4270
4415
|
},
|
|
4271
4416
|
"2": {
|
|
4272
4417
|
"name": "variable.other.mira"
|
|
@@ -4278,13 +4423,13 @@
|
|
|
4278
4423
|
"begin": "(\\$\\{)",
|
|
4279
4424
|
"beginCaptures": {
|
|
4280
4425
|
"1": {
|
|
4281
|
-
"name": "punctuation.definition.
|
|
4426
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4282
4427
|
}
|
|
4283
4428
|
},
|
|
4284
4429
|
"end": "\\}",
|
|
4285
4430
|
"endCaptures": {
|
|
4286
4431
|
"0": {
|
|
4287
|
-
"name": "punctuation.definition.
|
|
4432
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4288
4433
|
}
|
|
4289
4434
|
},
|
|
4290
4435
|
"patterns": [
|
|
@@ -4298,13 +4443,13 @@
|
|
|
4298
4443
|
"begin": "(\\$\\()",
|
|
4299
4444
|
"beginCaptures": {
|
|
4300
4445
|
"1": {
|
|
4301
|
-
"name": "punctuation.definition.
|
|
4446
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4302
4447
|
}
|
|
4303
4448
|
},
|
|
4304
4449
|
"end": "\\)",
|
|
4305
4450
|
"endCaptures": {
|
|
4306
4451
|
"0": {
|
|
4307
|
-
"name": "punctuation.definition.
|
|
4452
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4308
4453
|
}
|
|
4309
4454
|
},
|
|
4310
4455
|
"patterns": [
|
|
@@ -4366,7 +4511,7 @@
|
|
|
4366
4511
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
4367
4512
|
"captures": {
|
|
4368
4513
|
"1": {
|
|
4369
|
-
"name": "punctuation.definition.
|
|
4514
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4370
4515
|
},
|
|
4371
4516
|
"2": {
|
|
4372
4517
|
"name": "variable.other.mira"
|
|
@@ -4378,13 +4523,13 @@
|
|
|
4378
4523
|
"begin": "(\\$\\{)",
|
|
4379
4524
|
"beginCaptures": {
|
|
4380
4525
|
"1": {
|
|
4381
|
-
"name": "punctuation.definition.
|
|
4526
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4382
4527
|
}
|
|
4383
4528
|
},
|
|
4384
4529
|
"end": "\\}",
|
|
4385
4530
|
"endCaptures": {
|
|
4386
4531
|
"0": {
|
|
4387
|
-
"name": "punctuation.definition.
|
|
4532
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4388
4533
|
}
|
|
4389
4534
|
},
|
|
4390
4535
|
"patterns": [
|
|
@@ -4398,13 +4543,13 @@
|
|
|
4398
4543
|
"begin": "(\\$\\()",
|
|
4399
4544
|
"beginCaptures": {
|
|
4400
4545
|
"1": {
|
|
4401
|
-
"name": "punctuation.definition.
|
|
4546
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4402
4547
|
}
|
|
4403
4548
|
},
|
|
4404
4549
|
"end": "\\)",
|
|
4405
4550
|
"endCaptures": {
|
|
4406
4551
|
"0": {
|
|
4407
|
-
"name": "punctuation.definition.
|
|
4552
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4408
4553
|
}
|
|
4409
4554
|
},
|
|
4410
4555
|
"patterns": [
|
|
@@ -4466,7 +4611,7 @@
|
|
|
4466
4611
|
"match": "(\\$)((?:_+|@+|\\$+|\\p{XID_Start})\\p{XID_Continue}*)",
|
|
4467
4612
|
"captures": {
|
|
4468
4613
|
"1": {
|
|
4469
|
-
"name": "punctuation.definition.
|
|
4614
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4470
4615
|
},
|
|
4471
4616
|
"2": {
|
|
4472
4617
|
"name": "variable.other.mira"
|
|
@@ -4478,13 +4623,13 @@
|
|
|
4478
4623
|
"begin": "(\\$\\{)",
|
|
4479
4624
|
"beginCaptures": {
|
|
4480
4625
|
"1": {
|
|
4481
|
-
"name": "punctuation.definition.
|
|
4626
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4482
4627
|
}
|
|
4483
4628
|
},
|
|
4484
4629
|
"end": "\\}",
|
|
4485
4630
|
"endCaptures": {
|
|
4486
4631
|
"0": {
|
|
4487
|
-
"name": "punctuation.definition.
|
|
4632
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4488
4633
|
}
|
|
4489
4634
|
},
|
|
4490
4635
|
"patterns": [
|
|
@@ -4498,13 +4643,13 @@
|
|
|
4498
4643
|
"begin": "(\\$\\()",
|
|
4499
4644
|
"beginCaptures": {
|
|
4500
4645
|
"1": {
|
|
4501
|
-
"name": "punctuation.definition.
|
|
4646
|
+
"name": "punctuation.definition.template-expression.begin.mira"
|
|
4502
4647
|
}
|
|
4503
4648
|
},
|
|
4504
4649
|
"end": "\\)",
|
|
4505
4650
|
"endCaptures": {
|
|
4506
4651
|
"0": {
|
|
4507
|
-
"name": "punctuation.definition.
|
|
4652
|
+
"name": "punctuation.definition.template-expression.end.mira"
|
|
4508
4653
|
}
|
|
4509
4654
|
},
|
|
4510
4655
|
"patterns": [
|