tree-sitter-objectscript 1.8.8 → 1.8.9
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/core/grammar.js +8 -8
- package/core/queries/highlights.scm +9 -9
- package/core/src/node-types.json +1 -41
- package/core/src/parser.c +80 -90
- package/expr/src/parser.c +1 -1
- package/objectscript/src/node-types.json +1 -41
- package/objectscript/src/parser.c +247 -257
- package/objectscript_routine/queries/highlights.scm +9 -9
- package/objectscript_routine/queries/studio-highlights.scm +8 -8
- package/objectscript_routine/src/node-types.json +1 -41
- package/objectscript_routine/src/parser.c +80 -90
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/darwin-x64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/linux-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/linux-x64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/win32-arm64/tree-sitter-objectscript.node +0 -0
- package/prebuilds/win32-x64/tree-sitter-objectscript.node +0 -0
- package/tree-sitter.json +1 -1
- package/udl/queries/highlights.scm +9 -9
- package/udl/queries/studio-highlights.scm +8 -8
- package/udl/src/node-types.json +1 -41
- package/udl/src/parser.c +76 -86
|
@@ -275,31 +275,31 @@
|
|
|
275
275
|
"--" @operator
|
|
276
276
|
|
|
277
277
|
(command_if_dotted_block
|
|
278
|
-
|
|
278
|
+
"." @punctuation.special.dots)
|
|
279
279
|
|
|
280
280
|
(command_for_dotted_block
|
|
281
|
-
|
|
281
|
+
"." @punctuation.special.dots)
|
|
282
282
|
|
|
283
283
|
(command_while_dotted_block
|
|
284
|
-
|
|
284
|
+
"." @punctuation.special.dots)
|
|
285
285
|
|
|
286
286
|
(command_dowhile_dotted
|
|
287
|
-
|
|
287
|
+
"." @punctuation.special.dots)
|
|
288
288
|
|
|
289
289
|
(command_trycatch_dotted
|
|
290
|
-
|
|
290
|
+
"." @punctuation.special.dots)
|
|
291
291
|
|
|
292
292
|
(dotted_statement
|
|
293
|
-
|
|
293
|
+
"." @punctuation.special.dots)
|
|
294
294
|
|
|
295
295
|
(else_block_dotted
|
|
296
|
-
|
|
296
|
+
"." @punctuation.special.dots)
|
|
297
297
|
|
|
298
298
|
(elseif_block_dotted
|
|
299
|
-
|
|
299
|
+
"." @punctuation.special.dots)
|
|
300
300
|
|
|
301
301
|
(catch_block_dotted
|
|
302
|
-
|
|
302
|
+
"." @punctuation.special.dots)
|
|
303
303
|
|
|
304
304
|
(variable_datatype
|
|
305
305
|
"." @function.builtin)
|
|
@@ -249,28 +249,28 @@
|
|
|
249
249
|
|
|
250
250
|
; start Dots in dotted statements, (black fg,silver bg)
|
|
251
251
|
(command_if_dotted_block
|
|
252
|
-
|
|
252
|
+
"." @punctuation.special.dots)
|
|
253
253
|
|
|
254
254
|
(command_for_dotted_block
|
|
255
|
-
|
|
255
|
+
"." @punctuation.special.dots)
|
|
256
256
|
|
|
257
257
|
(command_while_dotted_block
|
|
258
|
-
|
|
258
|
+
"." @punctuation.special.dots)
|
|
259
259
|
|
|
260
260
|
(command_dowhile_dotted
|
|
261
|
-
|
|
261
|
+
"." @punctuation.special.dots)
|
|
262
262
|
|
|
263
263
|
(command_trycatch_dotted
|
|
264
|
-
|
|
264
|
+
"." @punctuation.special.dots)
|
|
265
265
|
|
|
266
266
|
(dotted_statement
|
|
267
|
-
|
|
267
|
+
"." @punctuation.special.dots)
|
|
268
268
|
|
|
269
269
|
(else_block_dotted
|
|
270
|
-
|
|
270
|
+
"." @punctuation.special.dots)
|
|
271
271
|
|
|
272
272
|
(elseif_block_dotted
|
|
273
|
-
|
|
273
|
+
"." @punctuation.special.dots)
|
|
274
274
|
|
|
275
275
|
; end Dots in dotted statements (black fg,silver bg)
|
|
276
276
|
; start #dim command
|
|
@@ -254,10 +254,6 @@
|
|
|
254
254
|
"multiple": true,
|
|
255
255
|
"required": true,
|
|
256
256
|
"types": [
|
|
257
|
-
{
|
|
258
|
-
"type": "dot",
|
|
259
|
-
"named": true
|
|
260
|
-
},
|
|
261
257
|
{
|
|
262
258
|
"type": "dotted_statement",
|
|
263
259
|
"named": true
|
|
@@ -567,10 +563,6 @@
|
|
|
567
563
|
"multiple": true,
|
|
568
564
|
"required": true,
|
|
569
565
|
"types": [
|
|
570
|
-
{
|
|
571
|
-
"type": "dot",
|
|
572
|
-
"named": true
|
|
573
|
-
},
|
|
574
566
|
{
|
|
575
567
|
"type": "dotted_statement",
|
|
576
568
|
"named": true
|
|
@@ -660,10 +652,6 @@
|
|
|
660
652
|
"multiple": true,
|
|
661
653
|
"required": true,
|
|
662
654
|
"types": [
|
|
663
|
-
{
|
|
664
|
-
"type": "dot",
|
|
665
|
-
"named": true
|
|
666
|
-
},
|
|
667
655
|
{
|
|
668
656
|
"type": "dotted_statement",
|
|
669
657
|
"named": true
|
|
@@ -796,10 +784,6 @@
|
|
|
796
784
|
"multiple": true,
|
|
797
785
|
"required": true,
|
|
798
786
|
"types": [
|
|
799
|
-
{
|
|
800
|
-
"type": "dot",
|
|
801
|
-
"named": true
|
|
802
|
-
},
|
|
803
787
|
{
|
|
804
788
|
"type": "dotted_statement",
|
|
805
789
|
"named": true
|
|
@@ -1257,10 +1241,6 @@
|
|
|
1257
1241
|
"type": "catch_block_dotted",
|
|
1258
1242
|
"named": true
|
|
1259
1243
|
},
|
|
1260
|
-
{
|
|
1261
|
-
"type": "dot",
|
|
1262
|
-
"named": true
|
|
1263
|
-
},
|
|
1264
1244
|
{
|
|
1265
1245
|
"type": "dotted_statement",
|
|
1266
1246
|
"named": true
|
|
@@ -1380,10 +1360,6 @@
|
|
|
1380
1360
|
"multiple": true,
|
|
1381
1361
|
"required": true,
|
|
1382
1362
|
"types": [
|
|
1383
|
-
{
|
|
1384
|
-
"type": "dot",
|
|
1385
|
-
"named": true
|
|
1386
|
-
},
|
|
1387
1363
|
{
|
|
1388
1364
|
"type": "dotted_statement",
|
|
1389
1365
|
"named": true
|
|
@@ -2220,12 +2196,8 @@
|
|
|
2220
2196
|
"fields": {},
|
|
2221
2197
|
"children": {
|
|
2222
2198
|
"multiple": true,
|
|
2223
|
-
"required":
|
|
2199
|
+
"required": false,
|
|
2224
2200
|
"types": [
|
|
2225
|
-
{
|
|
2226
|
-
"type": "dot",
|
|
2227
|
-
"named": true
|
|
2228
|
-
},
|
|
2229
2201
|
{
|
|
2230
2202
|
"type": "dotted_block_statements",
|
|
2231
2203
|
"named": true
|
|
@@ -2268,10 +2240,6 @@
|
|
|
2268
2240
|
"multiple": true,
|
|
2269
2241
|
"required": true,
|
|
2270
2242
|
"types": [
|
|
2271
|
-
{
|
|
2272
|
-
"type": "dot",
|
|
2273
|
-
"named": true
|
|
2274
|
-
},
|
|
2275
2243
|
{
|
|
2276
2244
|
"type": "dotted_statement",
|
|
2277
2245
|
"named": true
|
|
@@ -2326,10 +2294,6 @@
|
|
|
2326
2294
|
"multiple": true,
|
|
2327
2295
|
"required": true,
|
|
2328
2296
|
"types": [
|
|
2329
|
-
{
|
|
2330
|
-
"type": "dot",
|
|
2331
|
-
"named": true
|
|
2332
|
-
},
|
|
2333
2297
|
{
|
|
2334
2298
|
"type": "dotted_statement",
|
|
2335
2299
|
"named": true
|
|
@@ -5540,10 +5504,6 @@
|
|
|
5540
5504
|
"type": "compiled_header",
|
|
5541
5505
|
"named": true
|
|
5542
5506
|
},
|
|
5543
|
-
{
|
|
5544
|
-
"type": "dot",
|
|
5545
|
-
"named": true
|
|
5546
|
-
},
|
|
5547
5507
|
{
|
|
5548
5508
|
"type": "dotted_statement_block",
|
|
5549
5509
|
"named": true
|