tree-sitter-objectscript 1.9.5 → 1.9.6
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/src/parser.c +15 -15
- package/expr/grammar.js +3 -3
- package/expr/src/node-types.json +1 -1
- package/expr/src/parser.c +15 -15
- package/objectscript/src/node-types.json +9 -24
- package/objectscript/src/parser.c +104 -104
- package/objectscript_routine/src/parser.c +15 -15
- 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/grammar.js +20 -19
- package/udl/src/node-types.json +9 -24
- package/udl/src/parser.c +68 -68
|
@@ -133,7 +133,7 @@ enum ts_symbol_identifiers {
|
|
|
133
133
|
anon_sym_false = 103,
|
|
134
134
|
sym_json_null_literal = 104,
|
|
135
135
|
sym_identifier = 105,
|
|
136
|
-
|
|
136
|
+
aux_sym__quote_permitting_identifier_token1 = 106,
|
|
137
137
|
anon_sym_SLASH_SLASH = 107,
|
|
138
138
|
anon_sym_POUND_SEMI = 108,
|
|
139
139
|
anon_sym_SEMI = 109,
|
|
@@ -524,7 +524,7 @@ enum ts_symbol_identifiers {
|
|
|
524
524
|
sym_json_array_literal = 494,
|
|
525
525
|
sym_json_boolean_literal = 495,
|
|
526
526
|
sym__expression_list = 496,
|
|
527
|
-
|
|
527
|
+
sym__quote_permitting_identifier = 497,
|
|
528
528
|
sym_line_comment_1 = 498,
|
|
529
529
|
sym_line_comment_2 = 499,
|
|
530
530
|
sym_line_comment_3 = 500,
|
|
@@ -1010,7 +1010,7 @@ static const char * const ts_symbol_names[] = {
|
|
|
1010
1010
|
[anon_sym_false] = "false",
|
|
1011
1011
|
[sym_json_null_literal] = "json_null_literal",
|
|
1012
1012
|
[sym_identifier] = "identifier",
|
|
1013
|
-
[
|
|
1013
|
+
[aux_sym__quote_permitting_identifier_token1] = "identifier",
|
|
1014
1014
|
[anon_sym_SLASH_SLASH] = "//",
|
|
1015
1015
|
[anon_sym_POUND_SEMI] = "#;",
|
|
1016
1016
|
[anon_sym_SEMI] = ";",
|
|
@@ -1401,7 +1401,7 @@ static const char * const ts_symbol_names[] = {
|
|
|
1401
1401
|
[sym_json_array_literal] = "json_array_literal",
|
|
1402
1402
|
[sym_json_boolean_literal] = "json_boolean_literal",
|
|
1403
1403
|
[sym__expression_list] = "_expression_list",
|
|
1404
|
-
[
|
|
1404
|
+
[sym__quote_permitting_identifier] = "_quote_permitting_identifier",
|
|
1405
1405
|
[sym_line_comment_1] = "line_comment_1",
|
|
1406
1406
|
[sym_line_comment_2] = "line_comment_2",
|
|
1407
1407
|
[sym_line_comment_3] = "line_comment_3",
|
|
@@ -1887,7 +1887,7 @@ static const TSSymbol ts_symbol_map[] = {
|
|
|
1887
1887
|
[anon_sym_false] = anon_sym_false,
|
|
1888
1888
|
[sym_json_null_literal] = sym_json_null_literal,
|
|
1889
1889
|
[sym_identifier] = sym_identifier,
|
|
1890
|
-
[
|
|
1890
|
+
[aux_sym__quote_permitting_identifier_token1] = sym_identifier,
|
|
1891
1891
|
[anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH,
|
|
1892
1892
|
[anon_sym_POUND_SEMI] = anon_sym_POUND_SEMI,
|
|
1893
1893
|
[anon_sym_SEMI] = anon_sym_SEMI,
|
|
@@ -2278,7 +2278,7 @@ static const TSSymbol ts_symbol_map[] = {
|
|
|
2278
2278
|
[sym_json_array_literal] = sym_json_array_literal,
|
|
2279
2279
|
[sym_json_boolean_literal] = sym_json_boolean_literal,
|
|
2280
2280
|
[sym__expression_list] = sym__expression_list,
|
|
2281
|
-
[
|
|
2281
|
+
[sym__quote_permitting_identifier] = sym__quote_permitting_identifier,
|
|
2282
2282
|
[sym_line_comment_1] = sym_line_comment_1,
|
|
2283
2283
|
[sym_line_comment_2] = sym_line_comment_2,
|
|
2284
2284
|
[sym_line_comment_3] = sym_line_comment_3,
|
|
@@ -3082,9 +3082,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
|
|
|
3082
3082
|
.visible = true,
|
|
3083
3083
|
.named = true,
|
|
3084
3084
|
},
|
|
3085
|
-
[
|
|
3086
|
-
.visible =
|
|
3087
|
-
.named =
|
|
3085
|
+
[aux_sym__quote_permitting_identifier_token1] = {
|
|
3086
|
+
.visible = true,
|
|
3087
|
+
.named = true,
|
|
3088
3088
|
},
|
|
3089
3089
|
[anon_sym_SLASH_SLASH] = {
|
|
3090
3090
|
.visible = true,
|
|
@@ -4646,8 +4646,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = {
|
|
|
4646
4646
|
.visible = false,
|
|
4647
4647
|
.named = true,
|
|
4648
4648
|
},
|
|
4649
|
-
[
|
|
4650
|
-
.visible =
|
|
4649
|
+
[sym__quote_permitting_identifier] = {
|
|
4650
|
+
.visible = false,
|
|
4651
4651
|
.named = true,
|
|
4652
4652
|
},
|
|
4653
4653
|
[sym_line_comment_1] = {
|
|
@@ -6415,8 +6415,8 @@ static const uint16_t ts_non_terminal_alias_map[] = {
|
|
|
6415
6415
|
sym__base_variable,
|
|
6416
6416
|
alias_sym_macro_def,
|
|
6417
6417
|
sym_line_ref,
|
|
6418
|
-
|
|
6419
|
-
|
|
6418
|
+
sym__quote_permitting_identifier, 13,
|
|
6419
|
+
sym__quote_permitting_identifier,
|
|
6420
6420
|
alias_sym_foreignkey_name,
|
|
6421
6421
|
alias_sym_index_name,
|
|
6422
6422
|
alias_sym_method_name,
|
|
@@ -45129,7 +45129,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|
|
45129
45129
|
('a' <= lookahead && lookahead <= 'z')) ADVANCE(3388);
|
|
45130
45130
|
END_STATE();
|
|
45131
45131
|
case 3389:
|
|
45132
|
-
ACCEPT_TOKEN(
|
|
45132
|
+
ACCEPT_TOKEN(aux_sym__quote_permitting_identifier_token1);
|
|
45133
45133
|
if (lookahead == '"') ADVANCE(108);
|
|
45134
45134
|
END_STATE();
|
|
45135
45135
|
case 3390:
|
|
@@ -931821,7 +931821,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
931821
931821
|
ACTIONS(11791), 1,
|
|
931822
931822
|
anon_sym_LPAREN,
|
|
931823
931823
|
STATE(10322), 1,
|
|
931824
|
-
|
|
931824
|
+
sym__quote_permitting_identifier,
|
|
931825
931825
|
STATE(11525), 1,
|
|
931826
931826
|
sym_index_properties,
|
|
931827
931827
|
STATE(11542), 1,
|
|
@@ -931830,7 +931830,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
931830
931830
|
sym_index_item,
|
|
931831
931831
|
ACTIONS(11793), 2,
|
|
931832
931832
|
sym_identifier,
|
|
931833
|
-
|
|
931833
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
931834
931834
|
ACTIONS(15), 3,
|
|
931835
931835
|
sym__whitespace,
|
|
931836
931836
|
sym_inline_comment,
|
|
@@ -934423,7 +934423,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
934423
934423
|
ACTIONS(11791), 1,
|
|
934424
934424
|
anon_sym_LPAREN,
|
|
934425
934425
|
STATE(10322), 1,
|
|
934426
|
-
|
|
934426
|
+
sym__quote_permitting_identifier,
|
|
934427
934427
|
STATE(11385), 1,
|
|
934428
934428
|
sym_index_properties,
|
|
934429
934429
|
STATE(11542), 1,
|
|
@@ -934432,7 +934432,7 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
934432
934432
|
sym_index_item,
|
|
934433
934433
|
ACTIONS(11793), 2,
|
|
934434
934434
|
sym_identifier,
|
|
934435
|
-
|
|
934435
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
934436
934436
|
ACTIONS(15), 3,
|
|
934437
934437
|
sym__whitespace,
|
|
934438
934438
|
sym_inline_comment,
|
|
@@ -938574,14 +938574,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
938574
938574
|
ACTIONS(13), 1,
|
|
938575
938575
|
anon_sym_SLASH_SLASH_SLASH,
|
|
938576
938576
|
STATE(9888), 1,
|
|
938577
|
-
|
|
938577
|
+
sym__quote_permitting_identifier,
|
|
938578
938578
|
STATE(10445), 1,
|
|
938579
938579
|
sym_index_property,
|
|
938580
938580
|
STATE(10547), 1,
|
|
938581
938581
|
sym_index_item,
|
|
938582
938582
|
ACTIONS(12241), 2,
|
|
938583
938583
|
sym_identifier,
|
|
938584
|
-
|
|
938584
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
938585
938585
|
ACTIONS(15), 3,
|
|
938586
938586
|
sym__whitespace,
|
|
938587
938587
|
sym_inline_comment,
|
|
@@ -942778,14 +942778,14 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
942778
942778
|
ACTIONS(13), 1,
|
|
942779
942779
|
anon_sym_SLASH_SLASH_SLASH,
|
|
942780
942780
|
STATE(9888), 1,
|
|
942781
|
-
|
|
942781
|
+
sym__quote_permitting_identifier,
|
|
942782
942782
|
STATE(10445), 1,
|
|
942783
942783
|
sym_index_property,
|
|
942784
942784
|
STATE(11722), 1,
|
|
942785
942785
|
sym_index_item,
|
|
942786
942786
|
ACTIONS(12241), 2,
|
|
942787
942787
|
sym_identifier,
|
|
942788
|
-
|
|
942788
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
942789
942789
|
ACTIONS(15), 3,
|
|
942790
942790
|
sym__whitespace,
|
|
942791
942791
|
sym_inline_comment,
|
|
@@ -948538,10 +948538,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
948538
948538
|
ACTIONS(12642), 1,
|
|
948539
948539
|
anon_sym_LPAREN,
|
|
948540
948540
|
STATE(11584), 1,
|
|
948541
|
-
|
|
948541
|
+
sym__quote_permitting_identifier,
|
|
948542
948542
|
ACTIONS(12644), 2,
|
|
948543
948543
|
sym_identifier,
|
|
948544
|
-
|
|
948544
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
948545
948545
|
ACTIONS(15), 3,
|
|
948546
948546
|
sym__whitespace,
|
|
948547
948547
|
sym_inline_comment,
|
|
@@ -956184,10 +956184,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
956184
956184
|
STATE(4023), 1,
|
|
956185
956185
|
sym_method_definition,
|
|
956186
956186
|
STATE(11426), 1,
|
|
956187
|
-
|
|
956187
|
+
sym__quote_permitting_identifier,
|
|
956188
956188
|
ACTIONS(12644), 2,
|
|
956189
956189
|
sym_identifier,
|
|
956190
|
-
|
|
956190
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
956191
956191
|
ACTIONS(15), 3,
|
|
956192
956192
|
sym__whitespace,
|
|
956193
956193
|
sym_inline_comment,
|
|
@@ -956533,10 +956533,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
956533
956533
|
STATE(4024), 1,
|
|
956534
956534
|
sym_method_definition,
|
|
956535
956535
|
STATE(11426), 1,
|
|
956536
|
-
|
|
956536
|
+
sym__quote_permitting_identifier,
|
|
956537
956537
|
ACTIONS(12644), 2,
|
|
956538
956538
|
sym_identifier,
|
|
956539
|
-
|
|
956539
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
956540
956540
|
ACTIONS(15), 3,
|
|
956541
956541
|
sym__whitespace,
|
|
956542
956542
|
sym_inline_comment,
|
|
@@ -958298,10 +958298,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
958298
958298
|
STATE(8462), 1,
|
|
958299
958299
|
sym_method_definition,
|
|
958300
958300
|
STATE(11326), 1,
|
|
958301
|
-
|
|
958301
|
+
sym__quote_permitting_identifier,
|
|
958302
958302
|
ACTIONS(12644), 2,
|
|
958303
958303
|
sym_identifier,
|
|
958304
|
-
|
|
958304
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
958305
958305
|
ACTIONS(15), 3,
|
|
958306
958306
|
sym__whitespace,
|
|
958307
958307
|
sym_inline_comment,
|
|
@@ -958361,10 +958361,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
958361
958361
|
STATE(8465), 1,
|
|
958362
958362
|
sym_method_definition,
|
|
958363
958363
|
STATE(11326), 1,
|
|
958364
|
-
|
|
958364
|
+
sym__quote_permitting_identifier,
|
|
958365
958365
|
ACTIONS(12644), 2,
|
|
958366
958366
|
sym_identifier,
|
|
958367
|
-
|
|
958367
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
958368
958368
|
ACTIONS(15), 3,
|
|
958369
958369
|
sym__whitespace,
|
|
958370
958370
|
sym_inline_comment,
|
|
@@ -962683,10 +962683,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
962683
962683
|
ACTIONS(13), 1,
|
|
962684
962684
|
anon_sym_SLASH_SLASH_SLASH,
|
|
962685
962685
|
STATE(9616), 1,
|
|
962686
|
-
|
|
962686
|
+
sym__quote_permitting_identifier,
|
|
962687
962687
|
ACTIONS(11793), 2,
|
|
962688
962688
|
sym_identifier,
|
|
962689
|
-
|
|
962689
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
962690
962690
|
ACTIONS(15), 3,
|
|
962691
962691
|
sym__whitespace,
|
|
962692
962692
|
sym_inline_comment,
|
|
@@ -963312,10 +963312,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
963312
963312
|
ACTIONS(13), 1,
|
|
963313
963313
|
anon_sym_SLASH_SLASH_SLASH,
|
|
963314
963314
|
STATE(11885), 1,
|
|
963315
|
-
|
|
963315
|
+
sym__quote_permitting_identifier,
|
|
963316
963316
|
ACTIONS(12644), 2,
|
|
963317
963317
|
sym_identifier,
|
|
963318
|
-
|
|
963318
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
963319
963319
|
ACTIONS(15), 3,
|
|
963320
963320
|
sym__whitespace,
|
|
963321
963321
|
sym_inline_comment,
|
|
@@ -963460,10 +963460,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
963460
963460
|
ACTIONS(13), 1,
|
|
963461
963461
|
anon_sym_SLASH_SLASH_SLASH,
|
|
963462
963462
|
STATE(9278), 1,
|
|
963463
|
-
|
|
963463
|
+
sym__quote_permitting_identifier,
|
|
963464
963464
|
ACTIONS(11793), 2,
|
|
963465
963465
|
sym_identifier,
|
|
963466
|
-
|
|
963466
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
963467
963467
|
ACTIONS(15), 3,
|
|
963468
963468
|
sym__whitespace,
|
|
963469
963469
|
sym_inline_comment,
|
|
@@ -964146,10 +964146,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
964146
964146
|
ACTIONS(13), 1,
|
|
964147
964147
|
anon_sym_SLASH_SLASH_SLASH,
|
|
964148
964148
|
STATE(11479), 1,
|
|
964149
|
-
|
|
964149
|
+
sym__quote_permitting_identifier,
|
|
964150
964150
|
ACTIONS(12644), 2,
|
|
964151
964151
|
sym_identifier,
|
|
964152
|
-
|
|
964152
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
964153
964153
|
ACTIONS(15), 3,
|
|
964154
964154
|
sym__whitespace,
|
|
964155
964155
|
sym_inline_comment,
|
|
@@ -964205,10 +964205,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
964205
964205
|
ACTIONS(13), 1,
|
|
964206
964206
|
anon_sym_SLASH_SLASH_SLASH,
|
|
964207
964207
|
STATE(10842), 1,
|
|
964208
|
-
|
|
964208
|
+
sym__quote_permitting_identifier,
|
|
964209
964209
|
ACTIONS(12644), 2,
|
|
964210
964210
|
sym_identifier,
|
|
964211
|
-
|
|
964211
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
964212
964212
|
ACTIONS(15), 3,
|
|
964213
964213
|
sym__whitespace,
|
|
964214
964214
|
sym_inline_comment,
|
|
@@ -964977,10 +964977,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
964977
964977
|
ACTIONS(13), 1,
|
|
964978
964978
|
anon_sym_SLASH_SLASH_SLASH,
|
|
964979
964979
|
STATE(9149), 1,
|
|
964980
|
-
|
|
964980
|
+
sym__quote_permitting_identifier,
|
|
964981
964981
|
ACTIONS(12644), 2,
|
|
964982
964982
|
sym_identifier,
|
|
964983
|
-
|
|
964983
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
964984
964984
|
ACTIONS(15), 3,
|
|
964985
964985
|
sym__whitespace,
|
|
964986
964986
|
sym_inline_comment,
|
|
@@ -965095,10 +965095,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
965095
965095
|
ACTIONS(13), 1,
|
|
965096
965096
|
anon_sym_SLASH_SLASH_SLASH,
|
|
965097
965097
|
STATE(9656), 1,
|
|
965098
|
-
|
|
965098
|
+
sym__quote_permitting_identifier,
|
|
965099
965099
|
ACTIONS(12644), 2,
|
|
965100
965100
|
sym_identifier,
|
|
965101
|
-
|
|
965101
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
965102
965102
|
ACTIONS(15), 3,
|
|
965103
965103
|
sym__whitespace,
|
|
965104
965104
|
sym_inline_comment,
|
|
@@ -966622,10 +966622,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
966622
966622
|
ACTIONS(13), 1,
|
|
966623
966623
|
anon_sym_SLASH_SLASH_SLASH,
|
|
966624
966624
|
STATE(12985), 1,
|
|
966625
|
-
|
|
966625
|
+
sym__quote_permitting_identifier,
|
|
966626
966626
|
ACTIONS(12241), 2,
|
|
966627
966627
|
sym_identifier,
|
|
966628
|
-
|
|
966628
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
966629
966629
|
ACTIONS(15), 3,
|
|
966630
966630
|
sym__whitespace,
|
|
966631
966631
|
sym_inline_comment,
|
|
@@ -980234,10 +980234,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
980234
980234
|
ACTIONS(13), 1,
|
|
980235
980235
|
anon_sym_SLASH_SLASH_SLASH,
|
|
980236
980236
|
STATE(11562), 1,
|
|
980237
|
-
|
|
980237
|
+
sym__quote_permitting_identifier,
|
|
980238
980238
|
ACTIONS(12644), 2,
|
|
980239
980239
|
sym_identifier,
|
|
980240
|
-
|
|
980240
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
980241
980241
|
ACTIONS(15), 3,
|
|
980242
980242
|
sym__whitespace,
|
|
980243
980243
|
sym_inline_comment,
|
|
@@ -982685,10 +982685,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
982685
982685
|
ACTIONS(13), 1,
|
|
982686
982686
|
anon_sym_SLASH_SLASH_SLASH,
|
|
982687
982687
|
STATE(9194), 1,
|
|
982688
|
-
|
|
982688
|
+
sym__quote_permitting_identifier,
|
|
982689
982689
|
ACTIONS(12644), 2,
|
|
982690
982690
|
sym_identifier,
|
|
982691
|
-
|
|
982691
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
982692
982692
|
ACTIONS(15), 3,
|
|
982693
982693
|
sym__whitespace,
|
|
982694
982694
|
sym_inline_comment,
|
|
@@ -982714,10 +982714,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
982714
982714
|
ACTIONS(13), 1,
|
|
982715
982715
|
anon_sym_SLASH_SLASH_SLASH,
|
|
982716
982716
|
STATE(9876), 1,
|
|
982717
|
-
|
|
982717
|
+
sym__quote_permitting_identifier,
|
|
982718
982718
|
ACTIONS(11793), 2,
|
|
982719
982719
|
sym_identifier,
|
|
982720
|
-
|
|
982720
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
982721
982721
|
ACTIONS(15), 3,
|
|
982722
982722
|
sym__whitespace,
|
|
982723
982723
|
sym_inline_comment,
|
|
@@ -982743,10 +982743,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
982743
982743
|
ACTIONS(13), 1,
|
|
982744
982744
|
anon_sym_SLASH_SLASH_SLASH,
|
|
982745
982745
|
STATE(9195), 1,
|
|
982746
|
-
|
|
982746
|
+
sym__quote_permitting_identifier,
|
|
982747
982747
|
ACTIONS(11793), 2,
|
|
982748
982748
|
sym_identifier,
|
|
982749
|
-
|
|
982749
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
982750
982750
|
ACTIONS(15), 3,
|
|
982751
982751
|
sym__whitespace,
|
|
982752
982752
|
sym_inline_comment,
|
|
@@ -982772,10 +982772,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
982772
982772
|
ACTIONS(13), 1,
|
|
982773
982773
|
anon_sym_SLASH_SLASH_SLASH,
|
|
982774
982774
|
STATE(9126), 1,
|
|
982775
|
-
|
|
982775
|
+
sym__quote_permitting_identifier,
|
|
982776
982776
|
ACTIONS(12644), 2,
|
|
982777
982777
|
sym_identifier,
|
|
982778
|
-
|
|
982778
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
982779
982779
|
ACTIONS(15), 3,
|
|
982780
982780
|
sym__whitespace,
|
|
982781
982781
|
sym_inline_comment,
|
|
@@ -982801,10 +982801,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
982801
982801
|
ACTIONS(13), 1,
|
|
982802
982802
|
anon_sym_SLASH_SLASH_SLASH,
|
|
982803
982803
|
STATE(9883), 1,
|
|
982804
|
-
|
|
982804
|
+
sym__quote_permitting_identifier,
|
|
982805
982805
|
ACTIONS(12644), 2,
|
|
982806
982806
|
sym_identifier,
|
|
982807
|
-
|
|
982807
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
982808
982808
|
ACTIONS(15), 3,
|
|
982809
982809
|
sym__whitespace,
|
|
982810
982810
|
sym_inline_comment,
|
|
@@ -984214,10 +984214,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
984214
984214
|
ACTIONS(13), 1,
|
|
984215
984215
|
anon_sym_SLASH_SLASH_SLASH,
|
|
984216
984216
|
STATE(13127), 1,
|
|
984217
|
-
|
|
984217
|
+
sym__quote_permitting_identifier,
|
|
984218
984218
|
ACTIONS(12644), 2,
|
|
984219
984219
|
sym_identifier,
|
|
984220
|
-
|
|
984220
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
984221
984221
|
ACTIONS(15), 3,
|
|
984222
984222
|
sym__whitespace,
|
|
984223
984223
|
sym_inline_comment,
|
|
@@ -984720,10 +984720,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
984720
984720
|
ACTIONS(13), 1,
|
|
984721
984721
|
anon_sym_SLASH_SLASH_SLASH,
|
|
984722
984722
|
STATE(11415), 1,
|
|
984723
|
-
|
|
984723
|
+
sym__quote_permitting_identifier,
|
|
984724
984724
|
ACTIONS(12241), 2,
|
|
984725
984725
|
sym_identifier,
|
|
984726
|
-
|
|
984726
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
984727
984727
|
ACTIONS(15), 3,
|
|
984728
984728
|
sym__whitespace,
|
|
984729
984729
|
sym_inline_comment,
|
|
@@ -984749,10 +984749,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
984749
984749
|
ACTIONS(13), 1,
|
|
984750
984750
|
anon_sym_SLASH_SLASH_SLASH,
|
|
984751
984751
|
STATE(10761), 1,
|
|
984752
|
-
|
|
984752
|
+
sym__quote_permitting_identifier,
|
|
984753
984753
|
ACTIONS(11793), 2,
|
|
984754
984754
|
sym_identifier,
|
|
984755
|
-
|
|
984755
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
984756
984756
|
ACTIONS(15), 3,
|
|
984757
984757
|
sym__whitespace,
|
|
984758
984758
|
sym_inline_comment,
|
|
@@ -984838,10 +984838,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
984838
984838
|
ACTIONS(13), 1,
|
|
984839
984839
|
anon_sym_SLASH_SLASH_SLASH,
|
|
984840
984840
|
STATE(10765), 1,
|
|
984841
|
-
|
|
984841
|
+
sym__quote_permitting_identifier,
|
|
984842
984842
|
ACTIONS(11793), 2,
|
|
984843
984843
|
sym_identifier,
|
|
984844
|
-
|
|
984844
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
984845
984845
|
ACTIONS(15), 3,
|
|
984846
984846
|
sym__whitespace,
|
|
984847
984847
|
sym_inline_comment,
|
|
@@ -985460,10 +985460,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
985460
985460
|
ACTIONS(13), 1,
|
|
985461
985461
|
anon_sym_SLASH_SLASH_SLASH,
|
|
985462
985462
|
STATE(12496), 1,
|
|
985463
|
-
|
|
985463
|
+
sym__quote_permitting_identifier,
|
|
985464
985464
|
ACTIONS(12644), 2,
|
|
985465
985465
|
sym_identifier,
|
|
985466
|
-
|
|
985466
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
985467
985467
|
ACTIONS(15), 3,
|
|
985468
985468
|
sym__whitespace,
|
|
985469
985469
|
sym_inline_comment,
|
|
@@ -989300,10 +989300,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
989300
989300
|
ACTIONS(13), 1,
|
|
989301
989301
|
anon_sym_SLASH_SLASH_SLASH,
|
|
989302
989302
|
STATE(10120), 1,
|
|
989303
|
-
|
|
989303
|
+
sym__quote_permitting_identifier,
|
|
989304
989304
|
ACTIONS(12644), 2,
|
|
989305
989305
|
sym_identifier,
|
|
989306
|
-
|
|
989306
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
989307
989307
|
ACTIONS(15), 3,
|
|
989308
989308
|
sym__whitespace,
|
|
989309
989309
|
sym_inline_comment,
|
|
@@ -991267,10 +991267,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
991267
991267
|
ACTIONS(13), 1,
|
|
991268
991268
|
anon_sym_SLASH_SLASH_SLASH,
|
|
991269
991269
|
STATE(11040), 1,
|
|
991270
|
-
|
|
991270
|
+
sym__quote_permitting_identifier,
|
|
991271
991271
|
ACTIONS(11793), 2,
|
|
991272
991272
|
sym_identifier,
|
|
991273
|
-
|
|
991273
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
991274
991274
|
ACTIONS(15), 3,
|
|
991275
991275
|
sym__whitespace,
|
|
991276
991276
|
sym_inline_comment,
|
|
@@ -991832,10 +991832,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
991832
991832
|
ACTIONS(13), 1,
|
|
991833
991833
|
anon_sym_SLASH_SLASH_SLASH,
|
|
991834
991834
|
STATE(11047), 1,
|
|
991835
|
-
|
|
991835
|
+
sym__quote_permitting_identifier,
|
|
991836
991836
|
ACTIONS(12241), 2,
|
|
991837
991837
|
sym_identifier,
|
|
991838
|
-
|
|
991838
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
991839
991839
|
ACTIONS(15), 3,
|
|
991840
991840
|
sym__whitespace,
|
|
991841
991841
|
sym_inline_comment,
|
|
@@ -992397,10 +992397,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
992397
992397
|
ACTIONS(13), 1,
|
|
992398
992398
|
anon_sym_SLASH_SLASH_SLASH,
|
|
992399
992399
|
STATE(9611), 1,
|
|
992400
|
-
|
|
992400
|
+
sym__quote_permitting_identifier,
|
|
992401
992401
|
ACTIONS(12644), 2,
|
|
992402
992402
|
sym_identifier,
|
|
992403
|
-
|
|
992403
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
992404
992404
|
ACTIONS(15), 3,
|
|
992405
992405
|
sym__whitespace,
|
|
992406
992406
|
sym_inline_comment,
|
|
@@ -995683,10 +995683,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
995683
995683
|
ACTIONS(13), 1,
|
|
995684
995684
|
anon_sym_SLASH_SLASH_SLASH,
|
|
995685
995685
|
STATE(11213), 1,
|
|
995686
|
-
|
|
995686
|
+
sym__quote_permitting_identifier,
|
|
995687
995687
|
ACTIONS(11793), 2,
|
|
995688
995688
|
sym_identifier,
|
|
995689
|
-
|
|
995689
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
995690
995690
|
ACTIONS(15), 3,
|
|
995691
995691
|
sym__whitespace,
|
|
995692
995692
|
sym_inline_comment,
|
|
@@ -996097,10 +996097,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
996097
996097
|
ACTIONS(13), 1,
|
|
996098
996098
|
anon_sym_SLASH_SLASH_SLASH,
|
|
996099
996099
|
STATE(9554), 1,
|
|
996100
|
-
|
|
996100
|
+
sym__quote_permitting_identifier,
|
|
996101
996101
|
ACTIONS(12644), 2,
|
|
996102
996102
|
sym_identifier,
|
|
996103
|
-
|
|
996103
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
996104
996104
|
ACTIONS(15), 3,
|
|
996105
996105
|
sym__whitespace,
|
|
996106
996106
|
sym_inline_comment,
|
|
@@ -996126,10 +996126,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
996126
996126
|
ACTIONS(13), 1,
|
|
996127
996127
|
anon_sym_SLASH_SLASH_SLASH,
|
|
996128
996128
|
STATE(11327), 1,
|
|
996129
|
-
|
|
996129
|
+
sym__quote_permitting_identifier,
|
|
996130
996130
|
ACTIONS(12644), 2,
|
|
996131
996131
|
sym_identifier,
|
|
996132
|
-
|
|
996132
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
996133
996133
|
ACTIONS(15), 3,
|
|
996134
996134
|
sym__whitespace,
|
|
996135
996135
|
sym_inline_comment,
|
|
@@ -996155,10 +996155,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
996155
996155
|
ACTIONS(13), 1,
|
|
996156
996156
|
anon_sym_SLASH_SLASH_SLASH,
|
|
996157
996157
|
STATE(10629), 1,
|
|
996158
|
-
|
|
996158
|
+
sym__quote_permitting_identifier,
|
|
996159
996159
|
ACTIONS(12644), 2,
|
|
996160
996160
|
sym_identifier,
|
|
996161
|
-
|
|
996161
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
996162
996162
|
ACTIONS(15), 3,
|
|
996163
996163
|
sym__whitespace,
|
|
996164
996164
|
sym_inline_comment,
|
|
@@ -996572,10 +996572,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
996572
996572
|
ACTIONS(13), 1,
|
|
996573
996573
|
anon_sym_SLASH_SLASH_SLASH,
|
|
996574
996574
|
STATE(12602), 1,
|
|
996575
|
-
|
|
996575
|
+
sym__quote_permitting_identifier,
|
|
996576
996576
|
ACTIONS(12241), 2,
|
|
996577
996577
|
sym_identifier,
|
|
996578
|
-
|
|
996578
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
996579
996579
|
ACTIONS(15), 3,
|
|
996580
996580
|
sym__whitespace,
|
|
996581
996581
|
sym_inline_comment,
|
|
@@ -996601,10 +996601,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
996601
996601
|
ACTIONS(13), 1,
|
|
996602
996602
|
anon_sym_SLASH_SLASH_SLASH,
|
|
996603
996603
|
STATE(12606), 1,
|
|
996604
|
-
|
|
996604
|
+
sym__quote_permitting_identifier,
|
|
996605
996605
|
ACTIONS(12241), 2,
|
|
996606
996606
|
sym_identifier,
|
|
996607
|
-
|
|
996607
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
996608
996608
|
ACTIONS(15), 3,
|
|
996609
996609
|
sym__whitespace,
|
|
996610
996610
|
sym_inline_comment,
|
|
@@ -999403,10 +999403,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
999403
999403
|
ACTIONS(13), 1,
|
|
999404
999404
|
anon_sym_SLASH_SLASH_SLASH,
|
|
999405
999405
|
STATE(9168), 1,
|
|
999406
|
-
|
|
999406
|
+
sym__quote_permitting_identifier,
|
|
999407
999407
|
ACTIONS(12644), 2,
|
|
999408
999408
|
sym_identifier,
|
|
999409
|
-
|
|
999409
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
999410
999410
|
ACTIONS(15), 3,
|
|
999411
999411
|
sym__whitespace,
|
|
999412
999412
|
sym_inline_comment,
|
|
@@ -999522,10 +999522,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
999522
999522
|
ACTIONS(13), 1,
|
|
999523
999523
|
anon_sym_SLASH_SLASH_SLASH,
|
|
999524
999524
|
STATE(11430), 1,
|
|
999525
|
-
|
|
999525
|
+
sym__quote_permitting_identifier,
|
|
999526
999526
|
ACTIONS(12644), 2,
|
|
999527
999527
|
sym_identifier,
|
|
999528
|
-
|
|
999528
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
999529
999529
|
ACTIONS(15), 3,
|
|
999530
999530
|
sym__whitespace,
|
|
999531
999531
|
sym_inline_comment,
|
|
@@ -1000232,10 +1000232,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
1000232
1000232
|
ACTIONS(13), 1,
|
|
1000233
1000233
|
anon_sym_SLASH_SLASH_SLASH,
|
|
1000234
1000234
|
STATE(11890), 1,
|
|
1000235
|
-
|
|
1000235
|
+
sym__quote_permitting_identifier,
|
|
1000236
1000236
|
ACTIONS(12241), 2,
|
|
1000237
1000237
|
sym_identifier,
|
|
1000238
|
-
|
|
1000238
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
1000239
1000239
|
ACTIONS(15), 3,
|
|
1000240
1000240
|
sym__whitespace,
|
|
1000241
1000241
|
sym_inline_comment,
|
|
@@ -1000591,10 +1000591,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
1000591
1000591
|
ACTIONS(13), 1,
|
|
1000592
1000592
|
anon_sym_SLASH_SLASH_SLASH,
|
|
1000593
1000593
|
STATE(11738), 1,
|
|
1000594
|
-
|
|
1000594
|
+
sym__quote_permitting_identifier,
|
|
1000595
1000595
|
ACTIONS(12644), 2,
|
|
1000596
1000596
|
sym_identifier,
|
|
1000597
|
-
|
|
1000597
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
1000598
1000598
|
ACTIONS(15), 3,
|
|
1000599
1000599
|
sym__whitespace,
|
|
1000600
1000600
|
sym_inline_comment,
|
|
@@ -1000946,10 +1000946,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
1000946
1000946
|
ACTIONS(13), 1,
|
|
1000947
1000947
|
anon_sym_SLASH_SLASH_SLASH,
|
|
1000948
1000948
|
STATE(9277), 1,
|
|
1000949
|
-
|
|
1000949
|
+
sym__quote_permitting_identifier,
|
|
1000950
1000950
|
ACTIONS(12644), 2,
|
|
1000951
1000951
|
sym_identifier,
|
|
1000952
|
-
|
|
1000952
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
1000953
1000953
|
ACTIONS(15), 3,
|
|
1000954
1000954
|
sym__whitespace,
|
|
1000955
1000955
|
sym_inline_comment,
|
|
@@ -1001092,10 +1001092,10 @@ static const uint16_t ts_small_parse_table[] = {
|
|
|
1001092
1001092
|
ACTIONS(13), 1,
|
|
1001093
1001093
|
anon_sym_SLASH_SLASH_SLASH,
|
|
1001094
1001094
|
STATE(11211), 1,
|
|
1001095
|
-
|
|
1001095
|
+
sym__quote_permitting_identifier,
|
|
1001096
1001096
|
ACTIONS(12644), 2,
|
|
1001097
1001097
|
sym_identifier,
|
|
1001098
|
-
|
|
1001098
|
+
aux_sym__quote_permitting_identifier_token1,
|
|
1001099
1001099
|
ACTIONS(15), 3,
|
|
1001100
1001100
|
sym__whitespace,
|
|
1001101
1001101
|
sym_inline_comment,
|
|
@@ -1064328,7 +1064328,7 @@ static const TSParseActionEntry ts_parse_actions[] = {
|
|
|
1064328
1064328
|
[11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882),
|
|
1064329
1064329
|
[11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184),
|
|
1064330
1064330
|
[11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
|
|
1064331
|
-
[11576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(
|
|
1064331
|
+
[11576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quote_permitting_identifier, 1, 0, 0),
|
|
1064332
1064332
|
[11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887),
|
|
1064333
1064333
|
[11580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9211),
|
|
1064334
1064334
|
[11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409),
|
|
@@ -1068533,7 +1068533,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_objectscript(void) {
|
|
|
1068533
1068533
|
.metadata = {
|
|
1068534
1068534
|
.major_version = 1,
|
|
1068535
1068535
|
.minor_version = 9,
|
|
1068536
|
-
.patch_version =
|
|
1068536
|
+
.patch_version = 6,
|
|
1068537
1068537
|
},
|
|
1068538
1068538
|
};
|
|
1068539
1068539
|
return &language;
|