diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a84695..c3f02af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,9 @@ # Changelog -## 1.1.0 - not yet released +## 1.1.0 - 2023-07-25 feature * add dialects so we can have different queries in `nvim-treesitter` -* fix structure of comments in block bodies fix: * fix ci acceptance workflow diff --git a/dialects/terraform/src/grammar.json b/dialects/terraform/src/grammar.json index 442d6a3..efbf0e2 100644 --- a/dialects/terraform/src/grammar.json +++ b/dialects/terraform/src/grammar.json @@ -5,17 +5,8 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "body" - }, - { - "type": "SYMBOL", - "name": "object" - } - ] + "type": "SYMBOL", + "name": "body" }, { "type": "BLANK" @@ -26,41 +17,20 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_shim" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_shim" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "SYMBOL", + "name": "block" } - } - ] + ] + } } ] }, @@ -1805,10 +1775,6 @@ { "type": "SYMBOL", "name": "heredoc_identifier" - }, - { - "type": "SYMBOL", - "name": "_shim" } ], "inline": [], diff --git a/dialects/terraform/src/node-types.json b/dialects/terraform/src/node-types.json index ed54921..dc16991 100644 --- a/dialects/terraform/src/node-types.json +++ b/dialects/terraform/src/node-types.json @@ -139,7 +139,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "attribute", @@ -202,10 +202,6 @@ { "type": "body", "named": true - }, - { - "type": "object", - "named": true } ] } diff --git a/dialects/terraform/src/parser.c b/dialects/terraform/src/parser.c index 80e122d..c6f45a5 100644 --- a/dialects/terraform/src/parser.c +++ b/dialects/terraform/src/parser.c @@ -6,12 +6,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 680 +#define STATE_COUNT 676 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 122 +#define SYMBOL_COUNT 121 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 57 -#define EXTERNAL_TOKEN_COUNT 9 +#define TOKEN_COUNT 56 +#define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 2 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 2 @@ -72,72 +72,71 @@ enum { sym_template_directive_start = 53, sym_template_directive_end = 54, sym_heredoc_identifier = 55, - sym__shim = 56, - sym_config_file = 57, - sym_body = 58, - sym_attribute = 59, - sym_block = 60, - sym_block_start = 61, - sym_block_end = 62, - sym_expression = 63, - sym__expr_term = 64, - sym_literal_value = 65, - sym_numeric_lit = 66, - sym_bool_lit = 67, - sym_string_lit = 68, - sym_collection_value = 69, - sym__comma = 70, - sym_tuple = 71, - sym_tuple_start = 72, - sym_tuple_end = 73, - sym__tuple_elems = 74, - sym_object = 75, - sym_object_start = 76, - sym_object_end = 77, - sym__object_elems = 78, - sym_object_elem = 79, - sym_index = 80, - sym_new_index = 81, - sym_legacy_index = 82, - sym_get_attr = 83, - sym_splat = 84, - sym_attr_splat = 85, - sym_full_splat = 86, - sym_for_expr = 87, - sym_for_tuple_expr = 88, - sym_for_object_expr = 89, - sym_for_intro = 90, - sym_for_cond = 91, - sym_variable_expr = 92, - sym_function_call = 93, - sym__function_call_start = 94, - sym__function_call_end = 95, - sym_function_arguments = 96, - sym_conditional = 97, - sym_operation = 98, - sym_unary_operation = 99, - sym_binary_operation = 100, - sym_template_expr = 101, - sym_quoted_template = 102, - sym_heredoc_template = 103, - sym_heredoc_start = 104, - aux_sym__template = 105, - sym_template_literal = 106, - sym_template_interpolation = 107, - sym_template_directive = 108, - sym_template_for = 109, - sym_template_for_start = 110, - sym_template_for_end = 111, - sym_template_if = 112, - sym_template_if_intro = 113, - sym_template_else_intro = 114, - sym_template_if_end = 115, - aux_sym_body_repeat1 = 116, - aux_sym_block_repeat1 = 117, - aux_sym__tuple_elems_repeat1 = 118, - aux_sym__object_elems_repeat1 = 119, - aux_sym_attr_splat_repeat1 = 120, - aux_sym_template_literal_repeat1 = 121, + sym_config_file = 56, + sym_body = 57, + sym_attribute = 58, + sym_block = 59, + sym_block_start = 60, + sym_block_end = 61, + sym_expression = 62, + sym__expr_term = 63, + sym_literal_value = 64, + sym_numeric_lit = 65, + sym_bool_lit = 66, + sym_string_lit = 67, + sym_collection_value = 68, + sym__comma = 69, + sym_tuple = 70, + sym_tuple_start = 71, + sym_tuple_end = 72, + sym__tuple_elems = 73, + sym_object = 74, + sym_object_start = 75, + sym_object_end = 76, + sym__object_elems = 77, + sym_object_elem = 78, + sym_index = 79, + sym_new_index = 80, + sym_legacy_index = 81, + sym_get_attr = 82, + sym_splat = 83, + sym_attr_splat = 84, + sym_full_splat = 85, + sym_for_expr = 86, + sym_for_tuple_expr = 87, + sym_for_object_expr = 88, + sym_for_intro = 89, + sym_for_cond = 90, + sym_variable_expr = 91, + sym_function_call = 92, + sym__function_call_start = 93, + sym__function_call_end = 94, + sym_function_arguments = 95, + sym_conditional = 96, + sym_operation = 97, + sym_unary_operation = 98, + sym_binary_operation = 99, + sym_template_expr = 100, + sym_quoted_template = 101, + sym_heredoc_template = 102, + sym_heredoc_start = 103, + aux_sym__template = 104, + sym_template_literal = 105, + sym_template_interpolation = 106, + sym_template_directive = 107, + sym_template_for = 108, + sym_template_for_start = 109, + sym_template_for_end = 110, + sym_template_if = 111, + sym_template_if_intro = 112, + sym_template_else_intro = 113, + sym_template_if_end = 114, + aux_sym_body_repeat1 = 115, + aux_sym_block_repeat1 = 116, + aux_sym__tuple_elems_repeat1 = 117, + aux_sym__object_elems_repeat1 = 118, + aux_sym_attr_splat_repeat1 = 119, + aux_sym_template_literal_repeat1 = 120, }; static const char * const ts_symbol_names[] = { @@ -197,7 +196,6 @@ static const char * const ts_symbol_names[] = { [sym_template_directive_start] = "template_directive_start", [sym_template_directive_end] = "template_directive_end", [sym_heredoc_identifier] = "heredoc_identifier", - [sym__shim] = "_shim", [sym_config_file] = "config_file", [sym_body] = "body", [sym_attribute] = "attribute", @@ -322,7 +320,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_template_directive_start] = sym_template_directive_start, [sym_template_directive_end] = sym_template_directive_end, [sym_heredoc_identifier] = sym_heredoc_identifier, - [sym__shim] = sym__shim, [sym_config_file] = sym_config_file, [sym_body] = sym_body, [sym_attribute] = sym_attribute, @@ -615,10 +612,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__shim] = { - .visible = false, - .named = true, - }, [sym_config_file] = { .visible = true, .named = true, @@ -919,27 +912,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 2, [7] = 7, - [8] = 8, + [8] = 7, [9] = 9, - [10] = 9, - [11] = 9, - [12] = 9, - [13] = 9, - [14] = 14, + [10] = 7, + [11] = 11, + [12] = 7, + [13] = 13, + [14] = 7, [15] = 15, - [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, - [20] = 16, + [16] = 15, + [17] = 15, + [18] = 15, + [19] = 15, + [20] = 20, [21] = 21, [22] = 22, [23] = 21, - [24] = 24, - [25] = 24, - [26] = 26, - [27] = 24, - [28] = 21, + [24] = 22, + [25] = 21, + [26] = 22, + [27] = 27, + [28] = 28, [29] = 29, [30] = 30, [31] = 31, @@ -955,51 +948,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 42, + [44] = 44, [45] = 45, - [46] = 43, + [46] = 46, [47] = 47, - [48] = 48, - [49] = 49, - [50] = 45, - [51] = 51, - [52] = 48, - [53] = 51, - [54] = 48, - [55] = 51, - [56] = 56, - [57] = 48, - [58] = 51, - [59] = 45, - [60] = 60, - [61] = 61, + [48] = 43, + [49] = 46, + [50] = 50, + [51] = 43, + [52] = 46, + [53] = 53, + [54] = 42, + [55] = 47, + [56] = 43, + [57] = 45, + [58] = 58, + [59] = 59, + [60] = 59, + [61] = 45, [62] = 62, - [63] = 62, - [64] = 61, - [65] = 65, - [66] = 66, - [67] = 48, - [68] = 43, - [69] = 42, - [70] = 62, - [71] = 71, - [72] = 45, - [73] = 61, - [74] = 74, - [75] = 62, - [76] = 42, - [77] = 77, - [78] = 61, - [79] = 51, - [80] = 45, - [81] = 81, - [82] = 42, - [83] = 43, - [84] = 84, - [85] = 85, - [86] = 61, - [87] = 43, - [88] = 62, + [63] = 63, + [64] = 64, + [65] = 59, + [66] = 62, + [67] = 59, + [68] = 47, + [69] = 46, + [70] = 43, + [71] = 62, + [72] = 46, + [73] = 73, + [74] = 42, + [75] = 75, + [76] = 47, + [77] = 62, + [78] = 59, + [79] = 42, + [80] = 80, + [81] = 42, + [82] = 47, + [83] = 83, + [84] = 62, + [85] = 45, + [86] = 86, + [87] = 45, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, @@ -1009,51 +1002,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [95] = 95, [96] = 96, [97] = 97, - [98] = 94, - [99] = 99, - [100] = 100, - [101] = 95, + [98] = 98, + [99] = 94, + [100] = 97, + [101] = 101, [102] = 96, [103] = 95, - [104] = 100, - [105] = 105, - [106] = 97, - [107] = 95, - [108] = 105, - [109] = 96, - [110] = 97, - [111] = 94, - [112] = 99, - [113] = 105, - [114] = 105, - [115] = 100, - [116] = 99, - [117] = 94, - [118] = 97, + [104] = 101, + [105] = 97, + [106] = 98, + [107] = 94, + [108] = 97, + [109] = 98, + [110] = 101, + [111] = 93, + [112] = 95, + [113] = 96, + [114] = 93, + [115] = 95, + [116] = 93, + [117] = 101, + [118] = 98, [119] = 96, - [120] = 99, - [121] = 100, - [122] = 105, - [123] = 95, - [124] = 96, - [125] = 97, - [126] = 94, - [127] = 99, - [128] = 100, - [129] = 38, - [130] = 37, - [131] = 36, - [132] = 29, - [133] = 35, - [134] = 34, - [135] = 33, - [136] = 31, + [120] = 94, + [121] = 97, + [122] = 95, + [123] = 93, + [124] = 101, + [125] = 98, + [126] = 96, + [127] = 94, + [128] = 29, + [129] = 31, + [130] = 30, + [131] = 40, + [132] = 28, + [133] = 33, + [134] = 35, + [135] = 38, + [136] = 90, [137] = 89, - [138] = 91, - [139] = 90, - [140] = 92, - [141] = 141, - [142] = 93, + [138] = 92, + [139] = 91, + [140] = 140, + [141] = 88, + [142] = 142, [143] = 143, [144] = 144, [145] = 145, @@ -1085,512 +1078,508 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [171] = 171, [172] = 172, [173] = 173, - [174] = 174, - [175] = 141, - [176] = 38, - [177] = 34, - [178] = 37, - [179] = 36, - [180] = 31, - [181] = 35, - [182] = 29, - [183] = 33, - [184] = 163, - [185] = 149, - [186] = 156, - [187] = 145, - [188] = 147, - [189] = 148, - [190] = 174, - [191] = 169, - [192] = 153, - [193] = 154, - [194] = 143, - [195] = 157, - [196] = 155, - [197] = 158, - [198] = 151, - [199] = 144, - [200] = 173, - [201] = 160, - [202] = 150, - [203] = 171, - [204] = 162, - [205] = 167, - [206] = 159, - [207] = 161, - [208] = 172, - [209] = 146, - [210] = 170, - [211] = 166, - [212] = 165, + [174] = 140, + [175] = 28, + [176] = 33, + [177] = 29, + [178] = 31, + [179] = 35, + [180] = 38, + [181] = 30, + [182] = 40, + [183] = 149, + [184] = 171, + [185] = 173, + [186] = 148, + [187] = 143, + [188] = 152, + [189] = 167, + [190] = 150, + [191] = 164, + [192] = 146, + [193] = 144, + [194] = 147, + [195] = 172, + [196] = 154, + [197] = 165, + [198] = 145, + [199] = 156, + [200] = 161, + [201] = 170, + [202] = 142, + [203] = 153, + [204] = 155, + [205] = 158, + [206] = 162, + [207] = 157, + [208] = 159, + [209] = 151, + [210] = 160, + [211] = 163, + [212] = 166, [213] = 168, - [214] = 152, - [215] = 164, - [216] = 35, - [217] = 90, - [218] = 34, - [219] = 93, - [220] = 31, - [221] = 29, - [222] = 31, - [223] = 91, - [224] = 89, - [225] = 38, - [226] = 38, - [227] = 37, - [228] = 36, - [229] = 35, - [230] = 37, - [231] = 34, - [232] = 33, - [233] = 36, - [234] = 92, - [235] = 33, - [236] = 29, - [237] = 92, - [238] = 93, - [239] = 90, - [240] = 89, - [241] = 93, - [242] = 89, - [243] = 91, - [244] = 91, - [245] = 90, - [246] = 92, - [247] = 141, - [248] = 167, - [249] = 159, - [250] = 146, - [251] = 147, - [252] = 148, - [253] = 153, - [254] = 154, - [255] = 155, - [256] = 158, - [257] = 160, - [258] = 162, - [259] = 141, - [260] = 163, - [261] = 166, - [262] = 144, - [263] = 141, - [264] = 164, + [214] = 169, + [215] = 92, + [216] = 88, + [217] = 33, + [218] = 31, + [219] = 30, + [220] = 40, + [221] = 28, + [222] = 35, + [223] = 38, + [224] = 31, + [225] = 29, + [226] = 30, + [227] = 40, + [228] = 29, + [229] = 33, + [230] = 28, + [231] = 89, + [232] = 90, + [233] = 91, + [234] = 35, + [235] = 38, + [236] = 89, + [237] = 90, + [238] = 92, + [239] = 91, + [240] = 90, + [241] = 92, + [242] = 91, + [243] = 89, + [244] = 88, + [245] = 88, + [246] = 140, + [247] = 158, + [248] = 160, + [249] = 151, + [250] = 140, + [251] = 157, + [252] = 162, + [253] = 163, + [254] = 164, + [255] = 143, + [256] = 140, + [257] = 167, + [258] = 170, + [259] = 142, + [260] = 171, + [261] = 173, + [262] = 172, + [263] = 148, + [264] = 150, [265] = 165, - [266] = 171, - [267] = 143, - [268] = 169, - [269] = 174, - [270] = 145, - [271] = 156, - [272] = 173, - [273] = 172, - [274] = 170, - [275] = 168, - [276] = 161, - [277] = 150, - [278] = 157, - [279] = 152, - [280] = 151, - [281] = 149, - [282] = 162, - [283] = 144, - [284] = 143, - [285] = 166, - [286] = 169, - [287] = 157, - [288] = 174, - [289] = 145, - [290] = 156, - [291] = 144, - [292] = 164, - [293] = 165, - [294] = 167, - [295] = 171, - [296] = 173, + [266] = 144, + [267] = 145, + [268] = 146, + [269] = 147, + [270] = 149, + [271] = 152, + [272] = 154, + [273] = 156, + [274] = 161, + [275] = 153, + [276] = 169, + [277] = 168, + [278] = 166, + [279] = 159, + [280] = 155, + [281] = 171, + [282] = 173, + [283] = 165, + [284] = 147, + [285] = 146, + [286] = 144, + [287] = 145, + [288] = 145, + [289] = 146, + [290] = 147, + [291] = 149, + [292] = 144, + [293] = 167, + [294] = 165, + [295] = 150, + [296] = 148, [297] = 172, - [298] = 143, - [299] = 155, - [300] = 154, - [301] = 170, - [302] = 169, - [303] = 168, - [304] = 174, - [305] = 161, - [306] = 159, - [307] = 159, - [308] = 171, - [309] = 155, - [310] = 145, - [311] = 156, - [312] = 167, - [313] = 157, - [314] = 152, - [315] = 165, - [316] = 164, - [317] = 163, - [318] = 166, - [319] = 151, - [320] = 152, - [321] = 160, - [322] = 173, - [323] = 146, - [324] = 150, - [325] = 172, - [326] = 149, - [327] = 150, - [328] = 146, - [329] = 147, - [330] = 170, - [331] = 168, - [332] = 161, - [333] = 158, + [298] = 154, + [299] = 173, + [300] = 150, + [301] = 156, + [302] = 161, + [303] = 155, + [304] = 142, + [305] = 153, + [306] = 170, + [307] = 167, + [308] = 155, + [309] = 143, + [310] = 158, + [311] = 148, + [312] = 159, + [313] = 149, + [314] = 160, + [315] = 164, + [316] = 172, + [317] = 166, + [318] = 168, + [319] = 158, + [320] = 169, + [321] = 153, + [322] = 163, + [323] = 159, + [324] = 171, + [325] = 142, + [326] = 162, + [327] = 170, + [328] = 157, + [329] = 161, + [330] = 152, + [331] = 143, + [332] = 164, + [333] = 156, [334] = 151, - [335] = 148, - [336] = 154, - [337] = 153, - [338] = 147, - [339] = 163, - [340] = 148, - [341] = 162, - [342] = 149, - [343] = 160, - [344] = 153, - [345] = 158, + [335] = 163, + [336] = 162, + [337] = 157, + [338] = 154, + [339] = 169, + [340] = 152, + [341] = 160, + [342] = 168, + [343] = 151, + [344] = 166, + [345] = 345, [346] = 346, [347] = 347, [348] = 348, [349] = 349, [350] = 350, [351] = 351, - [352] = 350, + [352] = 352, [353] = 353, - [354] = 354, - [355] = 354, - [356] = 353, - [357] = 353, - [358] = 358, + [354] = 351, + [355] = 351, + [356] = 352, + [357] = 357, + [358] = 352, [359] = 359, - [360] = 354, + [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 364, - [365] = 365, - [366] = 362, - [367] = 363, - [368] = 368, + [364] = 361, + [365] = 363, + [366] = 366, + [367] = 360, + [368] = 363, [369] = 369, - [370] = 361, - [371] = 369, - [372] = 362, - [373] = 373, - [374] = 365, - [375] = 365, - [376] = 376, - [377] = 361, - [378] = 378, - [379] = 368, - [380] = 378, - [381] = 373, - [382] = 382, - [383] = 382, - [384] = 378, - [385] = 378, - [386] = 362, - [387] = 382, - [388] = 362, - [389] = 373, - [390] = 364, - [391] = 365, - [392] = 369, - [393] = 364, - [394] = 361, - [395] = 361, - [396] = 363, - [397] = 365, - [398] = 378, - [399] = 376, - [400] = 376, - [401] = 368, - [402] = 348, - [403] = 347, + [370] = 366, + [371] = 371, + [372] = 372, + [373] = 369, + [374] = 374, + [375] = 361, + [376] = 372, + [377] = 366, + [378] = 369, + [379] = 363, + [380] = 372, + [381] = 360, + [382] = 371, + [383] = 361, + [384] = 371, + [385] = 360, + [386] = 363, + [387] = 387, + [388] = 361, + [389] = 360, + [390] = 366, + [391] = 362, + [392] = 374, + [393] = 387, + [394] = 387, + [395] = 359, + [396] = 374, + [397] = 362, + [398] = 366, + [399] = 359, + [400] = 346, + [401] = 347, + [402] = 402, + [403] = 403, [404] = 404, [405] = 405, [406] = 406, [407] = 407, - [408] = 407, + [408] = 408, [409] = 409, - [410] = 410, - [411] = 411, + [410] = 405, + [411] = 405, [412] = 412, - [413] = 407, - [414] = 414, - [415] = 407, + [413] = 405, + [414] = 405, + [415] = 415, [416] = 416, - [417] = 407, - [418] = 418, + [417] = 347, + [418] = 416, [419] = 419, [420] = 420, [421] = 421, - [422] = 422, + [422] = 346, [423] = 423, - [424] = 420, - [425] = 348, - [426] = 426, - [427] = 420, - [428] = 421, - [429] = 419, - [430] = 347, - [431] = 419, - [432] = 420, - [433] = 420, + [424] = 424, + [425] = 419, + [426] = 419, + [427] = 427, + [428] = 419, + [429] = 421, + [430] = 419, + [431] = 420, + [432] = 421, + [433] = 433, [434] = 434, [435] = 435, - [436] = 423, + [436] = 436, [437] = 437, - [438] = 438, - [439] = 439, + [438] = 436, + [439] = 437, [440] = 440, - [441] = 438, + [441] = 441, [442] = 442, [443] = 443, - [444] = 444, - [445] = 445, + [444] = 443, + [445] = 434, [446] = 446, [447] = 447, - [448] = 448, - [449] = 442, + [448] = 443, + [449] = 449, [450] = 450, - [451] = 451, - [452] = 450, - [453] = 453, - [454] = 454, - [455] = 440, + [451] = 443, + [452] = 416, + [453] = 450, + [454] = 447, + [455] = 455, [456] = 456, - [457] = 444, - [458] = 454, - [459] = 456, - [460] = 460, - [461] = 439, - [462] = 462, - [463] = 442, + [457] = 420, + [458] = 433, + [459] = 449, + [460] = 446, + [461] = 447, + [462] = 450, + [463] = 463, [464] = 464, - [465] = 448, - [466] = 466, - [467] = 467, - [468] = 453, - [469] = 447, - [470] = 444, - [471] = 444, - [472] = 472, - [473] = 446, - [474] = 474, - [475] = 453, + [465] = 465, + [466] = 441, + [467] = 455, + [468] = 450, + [469] = 469, + [470] = 469, + [471] = 465, + [472] = 450, + [473] = 456, + [474] = 436, + [475] = 475, [476] = 476, [477] = 477, - [478] = 462, - [479] = 423, - [480] = 437, - [481] = 437, - [482] = 444, - [483] = 445, - [484] = 476, - [485] = 453, - [486] = 439, - [487] = 443, - [488] = 477, - [489] = 474, - [490] = 467, - [491] = 472, - [492] = 460, - [493] = 453, - [494] = 421, - [495] = 421, - [496] = 151, + [478] = 478, + [479] = 477, + [480] = 480, + [481] = 440, + [482] = 480, + [483] = 437, + [484] = 484, + [485] = 484, + [486] = 443, + [487] = 463, + [488] = 464, + [489] = 475, + [490] = 476, + [491] = 491, + [492] = 484, + [493] = 493, + [494] = 347, + [495] = 495, + [496] = 496, [497] = 497, [498] = 498, - [499] = 498, + [499] = 499, [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, + [501] = 416, + [502] = 346, + [503] = 449, + [504] = 498, [505] = 505, [506] = 506, [507] = 507, [508] = 508, [509] = 509, [510] = 510, - [511] = 460, - [512] = 477, + [511] = 477, + [512] = 476, [513] = 498, - [514] = 348, - [515] = 467, + [514] = 434, + [515] = 151, [516] = 516, - [517] = 438, - [518] = 443, - [519] = 445, - [520] = 348, + [517] = 517, + [518] = 475, + [519] = 519, + [520] = 420, [521] = 521, [522] = 522, [523] = 523, - [524] = 524, - [525] = 423, - [526] = 510, - [527] = 446, - [528] = 447, - [529] = 529, - [530] = 448, - [531] = 450, - [532] = 347, - [533] = 533, - [534] = 347, - [535] = 454, - [536] = 440, - [537] = 456, - [538] = 523, + [524] = 463, + [525] = 523, + [526] = 480, + [527] = 527, + [528] = 440, + [529] = 519, + [530] = 456, + [531] = 531, + [532] = 465, + [533] = 347, + [534] = 469, + [535] = 491, + [536] = 455, + [537] = 441, + [538] = 464, [539] = 539, - [540] = 540, - [541] = 523, - [542] = 542, - [543] = 543, + [540] = 491, + [541] = 446, + [542] = 433, + [543] = 523, [544] = 544, [545] = 545, - [546] = 546, - [547] = 474, - [548] = 476, - [549] = 521, - [550] = 462, - [551] = 510, - [552] = 521, + [546] = 346, + [547] = 547, + [548] = 548, + [549] = 519, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, [554] = 554, - [555] = 472, + [555] = 555, [556] = 556, [557] = 557, [558] = 558, [559] = 559, [560] = 560, - [561] = 559, + [561] = 561, [562] = 562, - [563] = 558, + [563] = 563, [564] = 564, [565] = 565, - [566] = 566, - [567] = 567, + [566] = 562, + [567] = 558, [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 569, - [574] = 574, - [575] = 569, - [576] = 574, - [577] = 577, - [578] = 568, - [579] = 579, - [580] = 558, - [581] = 577, - [582] = 582, - [583] = 567, - [584] = 564, - [585] = 574, - [586] = 565, - [587] = 566, - [588] = 558, - [589] = 564, - [590] = 567, - [591] = 591, - [592] = 568, - [593] = 593, - [594] = 559, - [595] = 593, - [596] = 569, - [597] = 574, + [569] = 557, + [570] = 556, + [571] = 565, + [572] = 555, + [573] = 573, + [574] = 565, + [575] = 575, + [576] = 576, + [577] = 557, + [578] = 578, + [579] = 554, + [580] = 562, + [581] = 565, + [582] = 568, + [583] = 568, + [584] = 568, + [585] = 561, + [586] = 586, + [587] = 562, + [588] = 554, + [589] = 558, + [590] = 565, + [591] = 586, + [592] = 553, + [593] = 561, + [594] = 594, + [595] = 557, + [596] = 561, + [597] = 559, [598] = 598, - [599] = 569, - [600] = 568, - [601] = 570, - [602] = 565, - [603] = 566, - [604] = 604, - [605] = 564, - [606] = 571, - [607] = 570, - [608] = 571, - [609] = 582, - [610] = 582, - [611] = 558, - [612] = 564, - [613] = 568, - [614] = 577, - [615] = 582, - [616] = 579, - [617] = 593, - [618] = 566, - [619] = 567, - [620] = 565, - [621] = 567, - [622] = 622, - [623] = 593, - [624] = 559, + [599] = 594, + [600] = 594, + [601] = 563, + [602] = 564, + [603] = 553, + [604] = 559, + [605] = 605, + [606] = 561, + [607] = 559, + [608] = 556, + [609] = 553, + [610] = 555, + [611] = 586, + [612] = 554, + [613] = 586, + [614] = 557, + [615] = 594, + [616] = 616, + [617] = 558, + [618] = 562, + [619] = 554, + [620] = 586, + [621] = 594, + [622] = 553, + [623] = 559, + [624] = 563, [625] = 625, - [626] = 582, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 579, - [631] = 574, - [632] = 593, - [633] = 559, + [626] = 568, + [627] = 564, + [628] = 628, + [629] = 558, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 633, [634] = 634, [635] = 635, [636] = 636, [637] = 637, - [638] = 634, + [638] = 638, [639] = 639, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 644, - [645] = 645, + [644] = 640, + [645] = 638, [646] = 646, [647] = 647, - [648] = 648, - [649] = 647, + [648] = 632, + [649] = 630, [650] = 650, [651] = 651, [652] = 652, - [653] = 645, - [654] = 641, - [655] = 655, - [656] = 639, - [657] = 657, - [658] = 647, - [659] = 640, - [660] = 660, - [661] = 661, + [653] = 653, + [654] = 638, + [655] = 647, + [656] = 656, + [657] = 641, + [658] = 658, + [659] = 659, + [660] = 636, + [661] = 630, [662] = 662, - [663] = 663, - [664] = 664, - [665] = 663, - [666] = 639, + [663] = 638, + [664] = 640, + [665] = 665, + [666] = 641, [667] = 647, - [668] = 645, + [668] = 638, [669] = 669, - [670] = 634, + [670] = 632, [671] = 671, - [672] = 647, - [673] = 641, - [674] = 640, + [672] = 636, + [673] = 673, + [674] = 674, [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 663, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -11812,134 +11801,134 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 41, .external_lex_state = 2}, - [2] = {.lex_state = 3, .external_lex_state = 3}, - [3] = {.lex_state = 3, .external_lex_state = 3}, - [4] = {.lex_state = 3, .external_lex_state = 3}, - [5] = {.lex_state = 3, .external_lex_state = 3}, - [6] = {.lex_state = 3, .external_lex_state = 3}, - [7] = {.lex_state = 1, .external_lex_state = 3}, - [8] = {.lex_state = 1, .external_lex_state = 3}, - [9] = {.lex_state = 3, .external_lex_state = 3}, - [10] = {.lex_state = 3, .external_lex_state = 3}, - [11] = {.lex_state = 3, .external_lex_state = 3}, - [12] = {.lex_state = 3, .external_lex_state = 3}, - [13] = {.lex_state = 3, .external_lex_state = 3}, - [14] = {.lex_state = 1, .external_lex_state = 3}, - [15] = {.lex_state = 1, .external_lex_state = 3}, - [16] = {.lex_state = 1, .external_lex_state = 3}, - [17] = {.lex_state = 1, .external_lex_state = 3}, - [18] = {.lex_state = 1, .external_lex_state = 3}, - [19] = {.lex_state = 1, .external_lex_state = 3}, - [20] = {.lex_state = 1, .external_lex_state = 3}, - [21] = {.lex_state = 1, .external_lex_state = 4}, + [1] = {.lex_state = 41}, + [2] = {.lex_state = 3, .external_lex_state = 2}, + [3] = {.lex_state = 3, .external_lex_state = 2}, + [4] = {.lex_state = 3, .external_lex_state = 2}, + [5] = {.lex_state = 3, .external_lex_state = 2}, + [6] = {.lex_state = 3, .external_lex_state = 2}, + [7] = {.lex_state = 3, .external_lex_state = 2}, + [8] = {.lex_state = 3, .external_lex_state = 2}, + [9] = {.lex_state = 1, .external_lex_state = 2}, + [10] = {.lex_state = 3, .external_lex_state = 2}, + [11] = {.lex_state = 1, .external_lex_state = 2}, + [12] = {.lex_state = 3, .external_lex_state = 2}, + [13] = {.lex_state = 1, .external_lex_state = 2}, + [14] = {.lex_state = 3, .external_lex_state = 2}, + [15] = {.lex_state = 1, .external_lex_state = 2}, + [16] = {.lex_state = 1, .external_lex_state = 2}, + [17] = {.lex_state = 1, .external_lex_state = 2}, + [18] = {.lex_state = 1, .external_lex_state = 2}, + [19] = {.lex_state = 1, .external_lex_state = 2}, + [20] = {.lex_state = 1, .external_lex_state = 2}, + [21] = {.lex_state = 1, .external_lex_state = 3}, [22] = {.lex_state = 1, .external_lex_state = 3}, - [23] = {.lex_state = 1, .external_lex_state = 4}, - [24] = {.lex_state = 1, .external_lex_state = 4}, - [25] = {.lex_state = 1, .external_lex_state = 4}, + [23] = {.lex_state = 1, .external_lex_state = 3}, + [24] = {.lex_state = 1, .external_lex_state = 3}, + [25] = {.lex_state = 1, .external_lex_state = 3}, [26] = {.lex_state = 1, .external_lex_state = 3}, - [27] = {.lex_state = 1, .external_lex_state = 4}, - [28] = {.lex_state = 1, .external_lex_state = 4}, - [29] = {.lex_state = 1, .external_lex_state = 3}, - [30] = {.lex_state = 1, .external_lex_state = 3}, - [31] = {.lex_state = 1, .external_lex_state = 3}, - [32] = {.lex_state = 1, .external_lex_state = 3}, - [33] = {.lex_state = 1, .external_lex_state = 3}, - [34] = {.lex_state = 1, .external_lex_state = 3}, - [35] = {.lex_state = 1, .external_lex_state = 3}, - [36] = {.lex_state = 1, .external_lex_state = 3}, - [37] = {.lex_state = 1, .external_lex_state = 3}, - [38] = {.lex_state = 1, .external_lex_state = 3}, - [39] = {.lex_state = 1, .external_lex_state = 3}, - [40] = {.lex_state = 1, .external_lex_state = 3}, - [41] = {.lex_state = 1, .external_lex_state = 3}, - [42] = {.lex_state = 1, .external_lex_state = 3}, - [43] = {.lex_state = 1, .external_lex_state = 3}, - [44] = {.lex_state = 1, .external_lex_state = 3}, - [45] = {.lex_state = 1, .external_lex_state = 3}, - [46] = {.lex_state = 1, .external_lex_state = 3}, - [47] = {.lex_state = 1, .external_lex_state = 3}, - [48] = {.lex_state = 1, .external_lex_state = 3}, - [49] = {.lex_state = 1, .external_lex_state = 3}, - [50] = {.lex_state = 1, .external_lex_state = 3}, - [51] = {.lex_state = 1, .external_lex_state = 3}, - [52] = {.lex_state = 1, .external_lex_state = 3}, - [53] = {.lex_state = 1, .external_lex_state = 3}, - [54] = {.lex_state = 1, .external_lex_state = 3}, - [55] = {.lex_state = 1, .external_lex_state = 3}, - [56] = {.lex_state = 1, .external_lex_state = 3}, - [57] = {.lex_state = 1, .external_lex_state = 3}, - [58] = {.lex_state = 1, .external_lex_state = 3}, - [59] = {.lex_state = 1, .external_lex_state = 3}, - [60] = {.lex_state = 1, .external_lex_state = 3}, - [61] = {.lex_state = 1, .external_lex_state = 3}, - [62] = {.lex_state = 1, .external_lex_state = 3}, - [63] = {.lex_state = 1, .external_lex_state = 3}, - [64] = {.lex_state = 1, .external_lex_state = 3}, - [65] = {.lex_state = 1, .external_lex_state = 3}, - [66] = {.lex_state = 1, .external_lex_state = 3}, - [67] = {.lex_state = 1, .external_lex_state = 3}, - [68] = {.lex_state = 1, .external_lex_state = 3}, - [69] = {.lex_state = 1, .external_lex_state = 3}, - [70] = {.lex_state = 1, .external_lex_state = 3}, - [71] = {.lex_state = 1, .external_lex_state = 3}, - [72] = {.lex_state = 1, .external_lex_state = 3}, - [73] = {.lex_state = 1, .external_lex_state = 3}, - [74] = {.lex_state = 1, .external_lex_state = 3}, - [75] = {.lex_state = 1, .external_lex_state = 3}, - [76] = {.lex_state = 1, .external_lex_state = 3}, - [77] = {.lex_state = 1, .external_lex_state = 3}, - [78] = {.lex_state = 1, .external_lex_state = 3}, - [79] = {.lex_state = 1, .external_lex_state = 3}, - [80] = {.lex_state = 1, .external_lex_state = 3}, - [81] = {.lex_state = 1, .external_lex_state = 3}, - [82] = {.lex_state = 1, .external_lex_state = 3}, - [83] = {.lex_state = 1, .external_lex_state = 3}, - [84] = {.lex_state = 1, .external_lex_state = 3}, - [85] = {.lex_state = 1, .external_lex_state = 3}, - [86] = {.lex_state = 1, .external_lex_state = 3}, - [87] = {.lex_state = 1, .external_lex_state = 3}, - [88] = {.lex_state = 1, .external_lex_state = 3}, - [89] = {.lex_state = 1, .external_lex_state = 3}, - [90] = {.lex_state = 1, .external_lex_state = 3}, - [91] = {.lex_state = 1, .external_lex_state = 3}, - [92] = {.lex_state = 1, .external_lex_state = 3}, - [93] = {.lex_state = 1, .external_lex_state = 3}, - [94] = {.lex_state = 1, .external_lex_state = 3}, - [95] = {.lex_state = 1, .external_lex_state = 3}, - [96] = {.lex_state = 1, .external_lex_state = 3}, - [97] = {.lex_state = 1, .external_lex_state = 3}, - [98] = {.lex_state = 1, .external_lex_state = 3}, - [99] = {.lex_state = 1, .external_lex_state = 3}, - [100] = {.lex_state = 1, .external_lex_state = 3}, - [101] = {.lex_state = 1, .external_lex_state = 3}, - [102] = {.lex_state = 1, .external_lex_state = 3}, - [103] = {.lex_state = 1, .external_lex_state = 3}, - [104] = {.lex_state = 1, .external_lex_state = 3}, - [105] = {.lex_state = 1, .external_lex_state = 3}, - [106] = {.lex_state = 1, .external_lex_state = 3}, - [107] = {.lex_state = 1, .external_lex_state = 3}, - [108] = {.lex_state = 1, .external_lex_state = 3}, - [109] = {.lex_state = 1, .external_lex_state = 3}, - [110] = {.lex_state = 1, .external_lex_state = 3}, - [111] = {.lex_state = 1, .external_lex_state = 3}, - [112] = {.lex_state = 1, .external_lex_state = 3}, - [113] = {.lex_state = 1, .external_lex_state = 3}, - [114] = {.lex_state = 1, .external_lex_state = 3}, - [115] = {.lex_state = 1, .external_lex_state = 3}, - [116] = {.lex_state = 1, .external_lex_state = 3}, - [117] = {.lex_state = 1, .external_lex_state = 3}, - [118] = {.lex_state = 1, .external_lex_state = 3}, - [119] = {.lex_state = 1, .external_lex_state = 3}, - [120] = {.lex_state = 1, .external_lex_state = 3}, - [121] = {.lex_state = 1, .external_lex_state = 3}, - [122] = {.lex_state = 1, .external_lex_state = 3}, - [123] = {.lex_state = 1, .external_lex_state = 3}, - [124] = {.lex_state = 1, .external_lex_state = 3}, - [125] = {.lex_state = 1, .external_lex_state = 3}, - [126] = {.lex_state = 1, .external_lex_state = 3}, - [127] = {.lex_state = 1, .external_lex_state = 3}, - [128] = {.lex_state = 1, .external_lex_state = 3}, + [27] = {.lex_state = 1, .external_lex_state = 2}, + [28] = {.lex_state = 1, .external_lex_state = 2}, + [29] = {.lex_state = 1, .external_lex_state = 2}, + [30] = {.lex_state = 1, .external_lex_state = 2}, + [31] = {.lex_state = 1, .external_lex_state = 2}, + [32] = {.lex_state = 1, .external_lex_state = 2}, + [33] = {.lex_state = 1, .external_lex_state = 2}, + [34] = {.lex_state = 1, .external_lex_state = 2}, + [35] = {.lex_state = 1, .external_lex_state = 2}, + [36] = {.lex_state = 1, .external_lex_state = 2}, + [37] = {.lex_state = 1, .external_lex_state = 2}, + [38] = {.lex_state = 1, .external_lex_state = 2}, + [39] = {.lex_state = 1, .external_lex_state = 2}, + [40] = {.lex_state = 1, .external_lex_state = 2}, + [41] = {.lex_state = 1, .external_lex_state = 2}, + [42] = {.lex_state = 1, .external_lex_state = 2}, + [43] = {.lex_state = 1, .external_lex_state = 2}, + [44] = {.lex_state = 1, .external_lex_state = 2}, + [45] = {.lex_state = 1, .external_lex_state = 2}, + [46] = {.lex_state = 1, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, + [48] = {.lex_state = 1, .external_lex_state = 2}, + [49] = {.lex_state = 1, .external_lex_state = 2}, + [50] = {.lex_state = 1, .external_lex_state = 2}, + [51] = {.lex_state = 1, .external_lex_state = 2}, + [52] = {.lex_state = 1, .external_lex_state = 2}, + [53] = {.lex_state = 1, .external_lex_state = 2}, + [54] = {.lex_state = 1, .external_lex_state = 2}, + [55] = {.lex_state = 1, .external_lex_state = 2}, + [56] = {.lex_state = 1, .external_lex_state = 2}, + [57] = {.lex_state = 1, .external_lex_state = 2}, + [58] = {.lex_state = 1, .external_lex_state = 2}, + [59] = {.lex_state = 1, .external_lex_state = 2}, + [60] = {.lex_state = 1, .external_lex_state = 2}, + [61] = {.lex_state = 1, .external_lex_state = 2}, + [62] = {.lex_state = 1, .external_lex_state = 2}, + [63] = {.lex_state = 1, .external_lex_state = 2}, + [64] = {.lex_state = 1, .external_lex_state = 2}, + [65] = {.lex_state = 1, .external_lex_state = 2}, + [66] = {.lex_state = 1, .external_lex_state = 2}, + [67] = {.lex_state = 1, .external_lex_state = 2}, + [68] = {.lex_state = 1, .external_lex_state = 2}, + [69] = {.lex_state = 1, .external_lex_state = 2}, + [70] = {.lex_state = 1, .external_lex_state = 2}, + [71] = {.lex_state = 1, .external_lex_state = 2}, + [72] = {.lex_state = 1, .external_lex_state = 2}, + [73] = {.lex_state = 1, .external_lex_state = 2}, + [74] = {.lex_state = 1, .external_lex_state = 2}, + [75] = {.lex_state = 1, .external_lex_state = 2}, + [76] = {.lex_state = 1, .external_lex_state = 2}, + [77] = {.lex_state = 1, .external_lex_state = 2}, + [78] = {.lex_state = 1, .external_lex_state = 2}, + [79] = {.lex_state = 1, .external_lex_state = 2}, + [80] = {.lex_state = 1, .external_lex_state = 2}, + [81] = {.lex_state = 1, .external_lex_state = 2}, + [82] = {.lex_state = 1, .external_lex_state = 2}, + [83] = {.lex_state = 1, .external_lex_state = 2}, + [84] = {.lex_state = 1, .external_lex_state = 2}, + [85] = {.lex_state = 1, .external_lex_state = 2}, + [86] = {.lex_state = 1, .external_lex_state = 2}, + [87] = {.lex_state = 1, .external_lex_state = 2}, + [88] = {.lex_state = 1, .external_lex_state = 2}, + [89] = {.lex_state = 1, .external_lex_state = 2}, + [90] = {.lex_state = 1, .external_lex_state = 2}, + [91] = {.lex_state = 1, .external_lex_state = 2}, + [92] = {.lex_state = 1, .external_lex_state = 2}, + [93] = {.lex_state = 1, .external_lex_state = 2}, + [94] = {.lex_state = 1, .external_lex_state = 2}, + [95] = {.lex_state = 1, .external_lex_state = 2}, + [96] = {.lex_state = 1, .external_lex_state = 2}, + [97] = {.lex_state = 1, .external_lex_state = 2}, + [98] = {.lex_state = 1, .external_lex_state = 2}, + [99] = {.lex_state = 1, .external_lex_state = 2}, + [100] = {.lex_state = 1, .external_lex_state = 2}, + [101] = {.lex_state = 1, .external_lex_state = 2}, + [102] = {.lex_state = 1, .external_lex_state = 2}, + [103] = {.lex_state = 1, .external_lex_state = 2}, + [104] = {.lex_state = 1, .external_lex_state = 2}, + [105] = {.lex_state = 1, .external_lex_state = 2}, + [106] = {.lex_state = 1, .external_lex_state = 2}, + [107] = {.lex_state = 1, .external_lex_state = 2}, + [108] = {.lex_state = 1, .external_lex_state = 2}, + [109] = {.lex_state = 1, .external_lex_state = 2}, + [110] = {.lex_state = 1, .external_lex_state = 2}, + [111] = {.lex_state = 1, .external_lex_state = 2}, + [112] = {.lex_state = 1, .external_lex_state = 2}, + [113] = {.lex_state = 1, .external_lex_state = 2}, + [114] = {.lex_state = 1, .external_lex_state = 2}, + [115] = {.lex_state = 1, .external_lex_state = 2}, + [116] = {.lex_state = 1, .external_lex_state = 2}, + [117] = {.lex_state = 1, .external_lex_state = 2}, + [118] = {.lex_state = 1, .external_lex_state = 2}, + [119] = {.lex_state = 1, .external_lex_state = 2}, + [120] = {.lex_state = 1, .external_lex_state = 2}, + [121] = {.lex_state = 1, .external_lex_state = 2}, + [122] = {.lex_state = 1, .external_lex_state = 2}, + [123] = {.lex_state = 1, .external_lex_state = 2}, + [124] = {.lex_state = 1, .external_lex_state = 2}, + [125] = {.lex_state = 1, .external_lex_state = 2}, + [126] = {.lex_state = 1, .external_lex_state = 2}, + [127] = {.lex_state = 1, .external_lex_state = 2}, + [128] = {.lex_state = 41}, [129] = {.lex_state = 41}, [130] = {.lex_state = 41}, [131] = {.lex_state = 41}, @@ -11951,42 +11940,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 41}, [138] = {.lex_state = 41}, [139] = {.lex_state = 41}, - [140] = {.lex_state = 41}, - [141] = {.lex_state = 1, .external_lex_state = 3}, - [142] = {.lex_state = 41}, - [143] = {.lex_state = 1, .external_lex_state = 3}, - [144] = {.lex_state = 1, .external_lex_state = 3}, - [145] = {.lex_state = 1, .external_lex_state = 3}, - [146] = {.lex_state = 1, .external_lex_state = 3}, - [147] = {.lex_state = 1, .external_lex_state = 3}, - [148] = {.lex_state = 1, .external_lex_state = 3}, - [149] = {.lex_state = 1, .external_lex_state = 3}, - [150] = {.lex_state = 1, .external_lex_state = 3}, - [151] = {.lex_state = 1, .external_lex_state = 3}, - [152] = {.lex_state = 1, .external_lex_state = 3}, - [153] = {.lex_state = 1, .external_lex_state = 3}, - [154] = {.lex_state = 1, .external_lex_state = 3}, - [155] = {.lex_state = 1, .external_lex_state = 3}, - [156] = {.lex_state = 1, .external_lex_state = 3}, - [157] = {.lex_state = 1, .external_lex_state = 3}, - [158] = {.lex_state = 1, .external_lex_state = 3}, - [159] = {.lex_state = 1, .external_lex_state = 3}, - [160] = {.lex_state = 1, .external_lex_state = 3}, - [161] = {.lex_state = 1, .external_lex_state = 3}, - [162] = {.lex_state = 1, .external_lex_state = 3}, - [163] = {.lex_state = 1, .external_lex_state = 3}, - [164] = {.lex_state = 1, .external_lex_state = 3}, - [165] = {.lex_state = 1, .external_lex_state = 3}, - [166] = {.lex_state = 1, .external_lex_state = 3}, - [167] = {.lex_state = 1, .external_lex_state = 3}, - [168] = {.lex_state = 1, .external_lex_state = 3}, - [169] = {.lex_state = 1, .external_lex_state = 3}, - [170] = {.lex_state = 1, .external_lex_state = 3}, - [171] = {.lex_state = 1, .external_lex_state = 3}, - [172] = {.lex_state = 1, .external_lex_state = 3}, - [173] = {.lex_state = 1, .external_lex_state = 3}, - [174] = {.lex_state = 1, .external_lex_state = 3}, - [175] = {.lex_state = 41}, + [140] = {.lex_state = 1, .external_lex_state = 2}, + [141] = {.lex_state = 41}, + [142] = {.lex_state = 1, .external_lex_state = 2}, + [143] = {.lex_state = 1, .external_lex_state = 2}, + [144] = {.lex_state = 1, .external_lex_state = 2}, + [145] = {.lex_state = 1, .external_lex_state = 2}, + [146] = {.lex_state = 1, .external_lex_state = 2}, + [147] = {.lex_state = 1, .external_lex_state = 2}, + [148] = {.lex_state = 1, .external_lex_state = 2}, + [149] = {.lex_state = 1, .external_lex_state = 2}, + [150] = {.lex_state = 1, .external_lex_state = 2}, + [151] = {.lex_state = 1, .external_lex_state = 2}, + [152] = {.lex_state = 1, .external_lex_state = 2}, + [153] = {.lex_state = 1, .external_lex_state = 2}, + [154] = {.lex_state = 1, .external_lex_state = 2}, + [155] = {.lex_state = 1, .external_lex_state = 2}, + [156] = {.lex_state = 1, .external_lex_state = 2}, + [157] = {.lex_state = 1, .external_lex_state = 2}, + [158] = {.lex_state = 1, .external_lex_state = 2}, + [159] = {.lex_state = 1, .external_lex_state = 2}, + [160] = {.lex_state = 1, .external_lex_state = 2}, + [161] = {.lex_state = 1, .external_lex_state = 2}, + [162] = {.lex_state = 1, .external_lex_state = 2}, + [163] = {.lex_state = 1, .external_lex_state = 2}, + [164] = {.lex_state = 1, .external_lex_state = 2}, + [165] = {.lex_state = 1, .external_lex_state = 2}, + [166] = {.lex_state = 1, .external_lex_state = 2}, + [167] = {.lex_state = 1, .external_lex_state = 2}, + [168] = {.lex_state = 1, .external_lex_state = 2}, + [169] = {.lex_state = 1, .external_lex_state = 2}, + [170] = {.lex_state = 1, .external_lex_state = 2}, + [171] = {.lex_state = 1, .external_lex_state = 2}, + [172] = {.lex_state = 1, .external_lex_state = 2}, + [173] = {.lex_state = 1, .external_lex_state = 2}, + [174] = {.lex_state = 41}, + [175] = {.lex_state = 2}, [176] = {.lex_state = 2}, [177] = {.lex_state = 2}, [178] = {.lex_state = 2}, @@ -11994,7 +11983,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 2}, [181] = {.lex_state = 2}, [182] = {.lex_state = 2}, - [183] = {.lex_state = 2}, + [183] = {.lex_state = 41}, [184] = {.lex_state = 41}, [185] = {.lex_state = 41}, [186] = {.lex_state = 41}, @@ -12026,55 +12015,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 41}, [213] = {.lex_state = 41}, [214] = {.lex_state = 41}, - [215] = {.lex_state = 41}, - [216] = {.lex_state = 41, .external_lex_state = 5}, - [217] = {.lex_state = 2}, + [215] = {.lex_state = 2}, + [216] = {.lex_state = 2}, + [217] = {.lex_state = 41, .external_lex_state = 4}, [218] = {.lex_state = 41, .external_lex_state = 5}, - [219] = {.lex_state = 2}, - [220] = {.lex_state = 41, .external_lex_state = 6}, - [221] = {.lex_state = 41, .external_lex_state = 6}, + [219] = {.lex_state = 41, .external_lex_state = 5}, + [220] = {.lex_state = 41, .external_lex_state = 5}, + [221] = {.lex_state = 41, .external_lex_state = 5}, [222] = {.lex_state = 41, .external_lex_state = 5}, - [223] = {.lex_state = 2}, - [224] = {.lex_state = 2}, - [225] = {.lex_state = 41, .external_lex_state = 6}, - [226] = {.lex_state = 41, .external_lex_state = 5}, - [227] = {.lex_state = 41, .external_lex_state = 6}, - [228] = {.lex_state = 41, .external_lex_state = 6}, - [229] = {.lex_state = 41, .external_lex_state = 6}, - [230] = {.lex_state = 41, .external_lex_state = 5}, - [231] = {.lex_state = 41, .external_lex_state = 6}, - [232] = {.lex_state = 41, .external_lex_state = 6}, - [233] = {.lex_state = 41, .external_lex_state = 5}, - [234] = {.lex_state = 2}, - [235] = {.lex_state = 41, .external_lex_state = 5}, - [236] = {.lex_state = 41, .external_lex_state = 5}, - [237] = {.lex_state = 41, .external_lex_state = 6}, + [223] = {.lex_state = 41, .external_lex_state = 5}, + [224] = {.lex_state = 41, .external_lex_state = 4}, + [225] = {.lex_state = 41, .external_lex_state = 4}, + [226] = {.lex_state = 41, .external_lex_state = 4}, + [227] = {.lex_state = 41, .external_lex_state = 4}, + [228] = {.lex_state = 41, .external_lex_state = 5}, + [229] = {.lex_state = 41, .external_lex_state = 5}, + [230] = {.lex_state = 41, .external_lex_state = 4}, + [231] = {.lex_state = 2}, + [232] = {.lex_state = 2}, + [233] = {.lex_state = 2}, + [234] = {.lex_state = 41, .external_lex_state = 4}, + [235] = {.lex_state = 41, .external_lex_state = 4}, + [236] = {.lex_state = 41, .external_lex_state = 4}, + [237] = {.lex_state = 41, .external_lex_state = 4}, [238] = {.lex_state = 41, .external_lex_state = 5}, - [239] = {.lex_state = 41, .external_lex_state = 6}, + [239] = {.lex_state = 41, .external_lex_state = 5}, [240] = {.lex_state = 41, .external_lex_state = 5}, - [241] = {.lex_state = 41, .external_lex_state = 6}, - [242] = {.lex_state = 41, .external_lex_state = 6}, - [243] = {.lex_state = 41, .external_lex_state = 6}, - [244] = {.lex_state = 41, .external_lex_state = 5}, + [241] = {.lex_state = 41, .external_lex_state = 4}, + [242] = {.lex_state = 41, .external_lex_state = 4}, + [243] = {.lex_state = 41, .external_lex_state = 5}, + [244] = {.lex_state = 41, .external_lex_state = 4}, [245] = {.lex_state = 41, .external_lex_state = 5}, - [246] = {.lex_state = 41, .external_lex_state = 5}, + [246] = {.lex_state = 2}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, [249] = {.lex_state = 2}, - [250] = {.lex_state = 2}, + [250] = {.lex_state = 41, .external_lex_state = 5}, [251] = {.lex_state = 2}, [252] = {.lex_state = 2}, [253] = {.lex_state = 2}, [254] = {.lex_state = 2}, [255] = {.lex_state = 2}, - [256] = {.lex_state = 2}, + [256] = {.lex_state = 41, .external_lex_state = 4}, [257] = {.lex_state = 2}, [258] = {.lex_state = 2}, - [259] = {.lex_state = 41, .external_lex_state = 5}, + [259] = {.lex_state = 2}, [260] = {.lex_state = 2}, [261] = {.lex_state = 2}, [262] = {.lex_state = 2}, - [263] = {.lex_state = 41, .external_lex_state = 6}, + [263] = {.lex_state = 2}, [264] = {.lex_state = 2}, [265] = {.lex_state = 2}, [266] = {.lex_state = 2}, @@ -12092,405 +12081,401 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [278] = {.lex_state = 2}, [279] = {.lex_state = 2}, [280] = {.lex_state = 2}, - [281] = {.lex_state = 2}, + [281] = {.lex_state = 41, .external_lex_state = 4}, [282] = {.lex_state = 41, .external_lex_state = 5}, - [283] = {.lex_state = 41, .external_lex_state = 6}, - [284] = {.lex_state = 41, .external_lex_state = 6}, - [285] = {.lex_state = 41, .external_lex_state = 5}, - [286] = {.lex_state = 41, .external_lex_state = 6}, + [283] = {.lex_state = 41, .external_lex_state = 5}, + [284] = {.lex_state = 41, .external_lex_state = 4}, + [285] = {.lex_state = 41, .external_lex_state = 4}, + [286] = {.lex_state = 41, .external_lex_state = 5}, [287] = {.lex_state = 41, .external_lex_state = 5}, - [288] = {.lex_state = 41, .external_lex_state = 6}, - [289] = {.lex_state = 41, .external_lex_state = 6}, - [290] = {.lex_state = 41, .external_lex_state = 6}, + [288] = {.lex_state = 41, .external_lex_state = 4}, + [289] = {.lex_state = 41, .external_lex_state = 5}, + [290] = {.lex_state = 41, .external_lex_state = 5}, [291] = {.lex_state = 41, .external_lex_state = 5}, - [292] = {.lex_state = 41, .external_lex_state = 5}, + [292] = {.lex_state = 41, .external_lex_state = 4}, [293] = {.lex_state = 41, .external_lex_state = 5}, - [294] = {.lex_state = 41, .external_lex_state = 5}, - [295] = {.lex_state = 41, .external_lex_state = 5}, - [296] = {.lex_state = 41, .external_lex_state = 6}, - [297] = {.lex_state = 41, .external_lex_state = 6}, + [294] = {.lex_state = 41, .external_lex_state = 4}, + [295] = {.lex_state = 41, .external_lex_state = 4}, + [296] = {.lex_state = 41, .external_lex_state = 4}, + [297] = {.lex_state = 41, .external_lex_state = 4}, [298] = {.lex_state = 41, .external_lex_state = 5}, - [299] = {.lex_state = 41, .external_lex_state = 6}, + [299] = {.lex_state = 41, .external_lex_state = 4}, [300] = {.lex_state = 41, .external_lex_state = 5}, - [301] = {.lex_state = 41, .external_lex_state = 6}, + [301] = {.lex_state = 41, .external_lex_state = 5}, [302] = {.lex_state = 41, .external_lex_state = 5}, - [303] = {.lex_state = 41, .external_lex_state = 6}, - [304] = {.lex_state = 41, .external_lex_state = 5}, - [305] = {.lex_state = 41, .external_lex_state = 6}, - [306] = {.lex_state = 41, .external_lex_state = 5}, - [307] = {.lex_state = 41, .external_lex_state = 6}, - [308] = {.lex_state = 41, .external_lex_state = 6}, - [309] = {.lex_state = 41, .external_lex_state = 5}, + [303] = {.lex_state = 41, .external_lex_state = 4}, + [304] = {.lex_state = 41, .external_lex_state = 4}, + [305] = {.lex_state = 41, .external_lex_state = 5}, + [306] = {.lex_state = 41, .external_lex_state = 4}, + [307] = {.lex_state = 41, .external_lex_state = 4}, + [308] = {.lex_state = 41, .external_lex_state = 5}, + [309] = {.lex_state = 41, .external_lex_state = 4}, [310] = {.lex_state = 41, .external_lex_state = 5}, [311] = {.lex_state = 41, .external_lex_state = 5}, - [312] = {.lex_state = 41, .external_lex_state = 6}, - [313] = {.lex_state = 41, .external_lex_state = 6}, + [312] = {.lex_state = 41, .external_lex_state = 5}, + [313] = {.lex_state = 41, .external_lex_state = 4}, [314] = {.lex_state = 41, .external_lex_state = 5}, - [315] = {.lex_state = 41, .external_lex_state = 6}, - [316] = {.lex_state = 41, .external_lex_state = 6}, + [315] = {.lex_state = 41, .external_lex_state = 4}, + [316] = {.lex_state = 41, .external_lex_state = 5}, [317] = {.lex_state = 41, .external_lex_state = 5}, - [318] = {.lex_state = 41, .external_lex_state = 6}, - [319] = {.lex_state = 41, .external_lex_state = 5}, - [320] = {.lex_state = 41, .external_lex_state = 6}, - [321] = {.lex_state = 41, .external_lex_state = 5}, - [322] = {.lex_state = 41, .external_lex_state = 5}, - [323] = {.lex_state = 41, .external_lex_state = 5}, - [324] = {.lex_state = 41, .external_lex_state = 6}, + [318] = {.lex_state = 41, .external_lex_state = 5}, + [319] = {.lex_state = 41, .external_lex_state = 4}, + [320] = {.lex_state = 41, .external_lex_state = 5}, + [321] = {.lex_state = 41, .external_lex_state = 4}, + [322] = {.lex_state = 41, .external_lex_state = 4}, + [323] = {.lex_state = 41, .external_lex_state = 4}, + [324] = {.lex_state = 41, .external_lex_state = 5}, [325] = {.lex_state = 41, .external_lex_state = 5}, - [326] = {.lex_state = 41, .external_lex_state = 6}, + [326] = {.lex_state = 41, .external_lex_state = 4}, [327] = {.lex_state = 41, .external_lex_state = 5}, - [328] = {.lex_state = 41, .external_lex_state = 6}, - [329] = {.lex_state = 41, .external_lex_state = 6}, + [328] = {.lex_state = 41, .external_lex_state = 4}, + [329] = {.lex_state = 41, .external_lex_state = 4}, [330] = {.lex_state = 41, .external_lex_state = 5}, [331] = {.lex_state = 41, .external_lex_state = 5}, [332] = {.lex_state = 41, .external_lex_state = 5}, - [333] = {.lex_state = 41, .external_lex_state = 5}, - [334] = {.lex_state = 41, .external_lex_state = 6}, - [335] = {.lex_state = 41, .external_lex_state = 6}, - [336] = {.lex_state = 41, .external_lex_state = 6}, - [337] = {.lex_state = 41, .external_lex_state = 6}, - [338] = {.lex_state = 41, .external_lex_state = 5}, - [339] = {.lex_state = 41, .external_lex_state = 6}, - [340] = {.lex_state = 41, .external_lex_state = 5}, - [341] = {.lex_state = 41, .external_lex_state = 6}, - [342] = {.lex_state = 41, .external_lex_state = 5}, - [343] = {.lex_state = 41, .external_lex_state = 6}, - [344] = {.lex_state = 41, .external_lex_state = 5}, - [345] = {.lex_state = 41, .external_lex_state = 6}, - [346] = {.lex_state = 1, .external_lex_state = 3}, - [347] = {.lex_state = 1, .external_lex_state = 3}, - [348] = {.lex_state = 1, .external_lex_state = 3}, - [349] = {.lex_state = 3, .external_lex_state = 3}, - [350] = {.lex_state = 3, .external_lex_state = 3}, - [351] = {.lex_state = 1, .external_lex_state = 3}, - [352] = {.lex_state = 1, .external_lex_state = 3}, - [353] = {.lex_state = 0, .external_lex_state = 7}, - [354] = {.lex_state = 0, .external_lex_state = 7}, - [355] = {.lex_state = 0, .external_lex_state = 7}, - [356] = {.lex_state = 0, .external_lex_state = 7}, - [357] = {.lex_state = 0, .external_lex_state = 7}, - [358] = {.lex_state = 1, .external_lex_state = 3}, - [359] = {.lex_state = 1, .external_lex_state = 3}, - [360] = {.lex_state = 0, .external_lex_state = 7}, - [361] = {.lex_state = 0, .external_lex_state = 8}, - [362] = {.lex_state = 0, .external_lex_state = 9}, + [333] = {.lex_state = 41, .external_lex_state = 4}, + [334] = {.lex_state = 41, .external_lex_state = 4}, + [335] = {.lex_state = 41, .external_lex_state = 5}, + [336] = {.lex_state = 41, .external_lex_state = 5}, + [337] = {.lex_state = 41, .external_lex_state = 5}, + [338] = {.lex_state = 41, .external_lex_state = 4}, + [339] = {.lex_state = 41, .external_lex_state = 4}, + [340] = {.lex_state = 41, .external_lex_state = 4}, + [341] = {.lex_state = 41, .external_lex_state = 4}, + [342] = {.lex_state = 41, .external_lex_state = 4}, + [343] = {.lex_state = 41, .external_lex_state = 5}, + [344] = {.lex_state = 41, .external_lex_state = 4}, + [345] = {.lex_state = 1, .external_lex_state = 2}, + [346] = {.lex_state = 1, .external_lex_state = 2}, + [347] = {.lex_state = 1, .external_lex_state = 2}, + [348] = {.lex_state = 1, .external_lex_state = 2}, + [349] = {.lex_state = 3, .external_lex_state = 2}, + [350] = {.lex_state = 3, .external_lex_state = 2}, + [351] = {.lex_state = 0, .external_lex_state = 6}, + [352] = {.lex_state = 0, .external_lex_state = 6}, + [353] = {.lex_state = 1, .external_lex_state = 2}, + [354] = {.lex_state = 0, .external_lex_state = 6}, + [355] = {.lex_state = 0, .external_lex_state = 6}, + [356] = {.lex_state = 0, .external_lex_state = 6}, + [357] = {.lex_state = 1, .external_lex_state = 2}, + [358] = {.lex_state = 0, .external_lex_state = 6}, + [359] = {.lex_state = 0, .external_lex_state = 7}, + [360] = {.lex_state = 0, .external_lex_state = 8}, + [361] = {.lex_state = 0, .external_lex_state = 7}, + [362] = {.lex_state = 0, .external_lex_state = 6}, [363] = {.lex_state = 0, .external_lex_state = 7}, [364] = {.lex_state = 0, .external_lex_state = 7}, - [365] = {.lex_state = 0, .external_lex_state = 9}, - [366] = {.lex_state = 0, .external_lex_state = 9}, - [367] = {.lex_state = 0, .external_lex_state = 7}, - [368] = {.lex_state = 0, .external_lex_state = 8}, - [369] = {.lex_state = 0, .external_lex_state = 7}, + [365] = {.lex_state = 0, .external_lex_state = 7}, + [366] = {.lex_state = 0, .external_lex_state = 8}, + [367] = {.lex_state = 0, .external_lex_state = 8}, + [368] = {.lex_state = 0, .external_lex_state = 7}, + [369] = {.lex_state = 0, .external_lex_state = 6}, [370] = {.lex_state = 0, .external_lex_state = 8}, - [371] = {.lex_state = 0, .external_lex_state = 7}, - [372] = {.lex_state = 0, .external_lex_state = 9}, - [373] = {.lex_state = 0, .external_lex_state = 7}, - [374] = {.lex_state = 0, .external_lex_state = 9}, - [375] = {.lex_state = 0, .external_lex_state = 9}, - [376] = {.lex_state = 0, .external_lex_state = 7}, + [371] = {.lex_state = 0, .external_lex_state = 6}, + [372] = {.lex_state = 0, .external_lex_state = 6}, + [373] = {.lex_state = 0, .external_lex_state = 6}, + [374] = {.lex_state = 0, .external_lex_state = 6}, + [375] = {.lex_state = 0, .external_lex_state = 7}, + [376] = {.lex_state = 0, .external_lex_state = 6}, [377] = {.lex_state = 0, .external_lex_state = 8}, - [378] = {.lex_state = 0, .external_lex_state = 8}, - [379] = {.lex_state = 0, .external_lex_state = 9}, - [380] = {.lex_state = 0, .external_lex_state = 8}, - [381] = {.lex_state = 0, .external_lex_state = 7}, - [382] = {.lex_state = 0, .external_lex_state = 7}, + [378] = {.lex_state = 0, .external_lex_state = 6}, + [379] = {.lex_state = 0, .external_lex_state = 7}, + [380] = {.lex_state = 0, .external_lex_state = 6}, + [381] = {.lex_state = 0, .external_lex_state = 8}, + [382] = {.lex_state = 0, .external_lex_state = 6}, [383] = {.lex_state = 0, .external_lex_state = 7}, - [384] = {.lex_state = 0, .external_lex_state = 8}, + [384] = {.lex_state = 0, .external_lex_state = 6}, [385] = {.lex_state = 0, .external_lex_state = 8}, - [386] = {.lex_state = 0, .external_lex_state = 9}, - [387] = {.lex_state = 0, .external_lex_state = 7}, - [388] = {.lex_state = 0, .external_lex_state = 9}, - [389] = {.lex_state = 0, .external_lex_state = 7}, - [390] = {.lex_state = 0, .external_lex_state = 7}, - [391] = {.lex_state = 0, .external_lex_state = 9}, - [392] = {.lex_state = 0, .external_lex_state = 7}, - [393] = {.lex_state = 0, .external_lex_state = 7}, - [394] = {.lex_state = 0, .external_lex_state = 8}, + [386] = {.lex_state = 0, .external_lex_state = 7}, + [387] = {.lex_state = 0, .external_lex_state = 6}, + [388] = {.lex_state = 0, .external_lex_state = 7}, + [389] = {.lex_state = 0, .external_lex_state = 8}, + [390] = {.lex_state = 0, .external_lex_state = 8}, + [391] = {.lex_state = 0, .external_lex_state = 6}, + [392] = {.lex_state = 0, .external_lex_state = 6}, + [393] = {.lex_state = 0, .external_lex_state = 6}, + [394] = {.lex_state = 0, .external_lex_state = 6}, [395] = {.lex_state = 0, .external_lex_state = 8}, - [396] = {.lex_state = 0, .external_lex_state = 7}, - [397] = {.lex_state = 0, .external_lex_state = 9}, + [396] = {.lex_state = 0, .external_lex_state = 6}, + [397] = {.lex_state = 0, .external_lex_state = 6}, [398] = {.lex_state = 0, .external_lex_state = 8}, - [399] = {.lex_state = 0, .external_lex_state = 7}, - [400] = {.lex_state = 0, .external_lex_state = 7}, - [401] = {.lex_state = 0, .external_lex_state = 7}, - [402] = {.lex_state = 41}, + [399] = {.lex_state = 0, .external_lex_state = 6}, + [400] = {.lex_state = 41}, + [401] = {.lex_state = 41}, + [402] = {.lex_state = 4, .external_lex_state = 2}, [403] = {.lex_state = 41}, - [404] = {.lex_state = 41, .external_lex_state = 2}, - [405] = {.lex_state = 41, .external_lex_state = 2}, - [406] = {.lex_state = 4, .external_lex_state = 3}, + [404] = {.lex_state = 41}, + [405] = {.lex_state = 0}, + [406] = {.lex_state = 41}, [407] = {.lex_state = 0}, - [408] = {.lex_state = 0}, - [409] = {.lex_state = 41, .external_lex_state = 3}, + [408] = {.lex_state = 41, .external_lex_state = 2}, + [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, - [411] = {.lex_state = 41}, - [412] = {.lex_state = 0}, + [411] = {.lex_state = 0}, + [412] = {.lex_state = 41}, [413] = {.lex_state = 0}, - [414] = {.lex_state = 41}, + [414] = {.lex_state = 0}, [415] = {.lex_state = 0}, - [416] = {.lex_state = 41}, + [416] = {.lex_state = 0, .external_lex_state = 7}, [417] = {.lex_state = 0}, - [418] = {.lex_state = 41}, + [418] = {.lex_state = 0, .external_lex_state = 8}, [419] = {.lex_state = 0}, - [420] = {.lex_state = 0}, - [421] = {.lex_state = 0, .external_lex_state = 9}, + [420] = {.lex_state = 0, .external_lex_state = 8}, + [421] = {.lex_state = 0}, [422] = {.lex_state = 0}, - [423] = {.lex_state = 0, .external_lex_state = 9}, + [423] = {.lex_state = 0}, [424] = {.lex_state = 0}, [425] = {.lex_state = 0}, [426] = {.lex_state = 0}, - [427] = {.lex_state = 0}, - [428] = {.lex_state = 0, .external_lex_state = 8}, + [427] = {.lex_state = 41, .external_lex_state = 2}, + [428] = {.lex_state = 0}, [429] = {.lex_state = 0}, [430] = {.lex_state = 0}, - [431] = {.lex_state = 0}, + [431] = {.lex_state = 0, .external_lex_state = 7}, [432] = {.lex_state = 0}, - [433] = {.lex_state = 0}, - [434] = {.lex_state = 0}, - [435] = {.lex_state = 41, .external_lex_state = 3}, - [436] = {.lex_state = 0, .external_lex_state = 8}, + [433] = {.lex_state = 0, .external_lex_state = 7}, + [434] = {.lex_state = 0, .external_lex_state = 7}, + [435] = {.lex_state = 0, .external_lex_state = 9}, + [436] = {.lex_state = 0}, [437] = {.lex_state = 0}, - [438] = {.lex_state = 0, .external_lex_state = 9}, + [438] = {.lex_state = 0}, [439] = {.lex_state = 0}, - [440] = {.lex_state = 0, .external_lex_state = 9}, - [441] = {.lex_state = 0, .external_lex_state = 8}, - [442] = {.lex_state = 0}, - [443] = {.lex_state = 0, .external_lex_state = 8}, - [444] = {.lex_state = 0, .external_lex_state = 9}, + [440] = {.lex_state = 0, .external_lex_state = 7}, + [441] = {.lex_state = 0, .external_lex_state = 7}, + [442] = {.lex_state = 41}, + [443] = {.lex_state = 0, .external_lex_state = 7}, + [444] = {.lex_state = 0, .external_lex_state = 7}, [445] = {.lex_state = 0, .external_lex_state = 8}, - [446] = {.lex_state = 0, .external_lex_state = 8}, - [447] = {.lex_state = 0, .external_lex_state = 8}, - [448] = {.lex_state = 0, .external_lex_state = 8}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 0, .external_lex_state = 8}, - [451] = {.lex_state = 0, .external_lex_state = 10}, - [452] = {.lex_state = 0, .external_lex_state = 9}, + [446] = {.lex_state = 0, .external_lex_state = 7}, + [447] = {.lex_state = 0}, + [448] = {.lex_state = 0, .external_lex_state = 7}, + [449] = {.lex_state = 0, .external_lex_state = 7}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 0, .external_lex_state = 7}, + [452] = {.lex_state = 0, .external_lex_state = 6}, [453] = {.lex_state = 0}, - [454] = {.lex_state = 0, .external_lex_state = 8}, - [455] = {.lex_state = 0, .external_lex_state = 8}, - [456] = {.lex_state = 0, .external_lex_state = 8}, - [457] = {.lex_state = 0, .external_lex_state = 9}, - [458] = {.lex_state = 0, .external_lex_state = 9}, - [459] = {.lex_state = 0, .external_lex_state = 9}, - [460] = {.lex_state = 0, .external_lex_state = 9}, + [454] = {.lex_state = 0}, + [455] = {.lex_state = 0, .external_lex_state = 7}, + [456] = {.lex_state = 0, .external_lex_state = 7}, + [457] = {.lex_state = 0, .external_lex_state = 6}, + [458] = {.lex_state = 0, .external_lex_state = 8}, + [459] = {.lex_state = 0, .external_lex_state = 8}, + [460] = {.lex_state = 0, .external_lex_state = 8}, [461] = {.lex_state = 0}, - [462] = {.lex_state = 0, .external_lex_state = 9}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 41}, - [465] = {.lex_state = 0, .external_lex_state = 9}, - [466] = {.lex_state = 0}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 0, .external_lex_state = 7}, + [464] = {.lex_state = 0, .external_lex_state = 8}, + [465] = {.lex_state = 0, .external_lex_state = 7}, + [466] = {.lex_state = 0, .external_lex_state = 8}, [467] = {.lex_state = 0, .external_lex_state = 8}, [468] = {.lex_state = 0}, - [469] = {.lex_state = 0, .external_lex_state = 9}, - [470] = {.lex_state = 0, .external_lex_state = 9}, - [471] = {.lex_state = 0, .external_lex_state = 9}, - [472] = {.lex_state = 0, .external_lex_state = 9}, - [473] = {.lex_state = 0, .external_lex_state = 9}, - [474] = {.lex_state = 0, .external_lex_state = 8}, - [475] = {.lex_state = 0}, + [469] = {.lex_state = 0, .external_lex_state = 8}, + [470] = {.lex_state = 0, .external_lex_state = 7}, + [471] = {.lex_state = 0, .external_lex_state = 8}, + [472] = {.lex_state = 0}, + [473] = {.lex_state = 0, .external_lex_state = 8}, + [474] = {.lex_state = 0}, + [475] = {.lex_state = 0, .external_lex_state = 7}, [476] = {.lex_state = 0, .external_lex_state = 8}, - [477] = {.lex_state = 0, .external_lex_state = 9}, - [478] = {.lex_state = 0, .external_lex_state = 8}, - [479] = {.lex_state = 0, .external_lex_state = 7}, - [480] = {.lex_state = 0}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0, .external_lex_state = 9}, - [483] = {.lex_state = 0, .external_lex_state = 9}, - [484] = {.lex_state = 0, .external_lex_state = 9}, - [485] = {.lex_state = 0}, - [486] = {.lex_state = 0}, - [487] = {.lex_state = 0, .external_lex_state = 9}, - [488] = {.lex_state = 0, .external_lex_state = 8}, - [489] = {.lex_state = 0, .external_lex_state = 9}, - [490] = {.lex_state = 0, .external_lex_state = 9}, - [491] = {.lex_state = 0, .external_lex_state = 8}, - [492] = {.lex_state = 0, .external_lex_state = 8}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 0, .external_lex_state = 7}, - [495] = {.lex_state = 0, .external_lex_state = 10}, - [496] = {.lex_state = 41, .external_lex_state = 3}, - [497] = {.lex_state = 0, .external_lex_state = 7}, + [477] = {.lex_state = 0, .external_lex_state = 7}, + [478] = {.lex_state = 0}, + [479] = {.lex_state = 0, .external_lex_state = 8}, + [480] = {.lex_state = 0, .external_lex_state = 7}, + [481] = {.lex_state = 0, .external_lex_state = 8}, + [482] = {.lex_state = 0, .external_lex_state = 8}, + [483] = {.lex_state = 0}, + [484] = {.lex_state = 0, .external_lex_state = 7}, + [485] = {.lex_state = 0, .external_lex_state = 8}, + [486] = {.lex_state = 0, .external_lex_state = 7}, + [487] = {.lex_state = 0, .external_lex_state = 8}, + [488] = {.lex_state = 0, .external_lex_state = 7}, + [489] = {.lex_state = 0, .external_lex_state = 8}, + [490] = {.lex_state = 0, .external_lex_state = 7}, + [491] = {.lex_state = 0, .external_lex_state = 4}, + [492] = {.lex_state = 0, .external_lex_state = 6}, + [493] = {.lex_state = 0, .external_lex_state = 5}, + [494] = {.lex_state = 0, .external_lex_state = 5}, + [495] = {.lex_state = 0, .external_lex_state = 6}, + [496] = {.lex_state = 41, .external_lex_state = 2}, + [497] = {.lex_state = 0, .external_lex_state = 5}, [498] = {.lex_state = 0}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 3}, - [501] = {.lex_state = 41}, - [502] = {.lex_state = 0, .external_lex_state = 7}, - [503] = {.lex_state = 0, .external_lex_state = 7}, - [504] = {.lex_state = 0, .external_lex_state = 5}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 0, .external_lex_state = 5}, - [507] = {.lex_state = 0, .external_lex_state = 7}, - [508] = {.lex_state = 41, .external_lex_state = 3}, - [509] = {.lex_state = 0, .external_lex_state = 7}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 0, .external_lex_state = 7}, - [512] = {.lex_state = 0, .external_lex_state = 7}, + [499] = {.lex_state = 0, .external_lex_state = 6}, + [500] = {.lex_state = 0, .external_lex_state = 6}, + [501] = {.lex_state = 0, .external_lex_state = 9}, + [502] = {.lex_state = 0, .external_lex_state = 4}, + [503] = {.lex_state = 0, .external_lex_state = 6}, + [504] = {.lex_state = 0}, + [505] = {.lex_state = 0, .external_lex_state = 5}, + [506] = {.lex_state = 0, .external_lex_state = 6}, + [507] = {.lex_state = 0, .external_lex_state = 6}, + [508] = {.lex_state = 41}, + [509] = {.lex_state = 0, .external_lex_state = 5}, + [510] = {.lex_state = 41}, + [511] = {.lex_state = 0, .external_lex_state = 6}, + [512] = {.lex_state = 0, .external_lex_state = 6}, [513] = {.lex_state = 0}, - [514] = {.lex_state = 0, .external_lex_state = 5}, - [515] = {.lex_state = 0, .external_lex_state = 7}, - [516] = {.lex_state = 0, .external_lex_state = 7}, - [517] = {.lex_state = 0, .external_lex_state = 7}, - [518] = {.lex_state = 0, .external_lex_state = 7}, - [519] = {.lex_state = 0, .external_lex_state = 7}, - [520] = {.lex_state = 0, .external_lex_state = 6}, - [521] = {.lex_state = 0, .external_lex_state = 6}, - [522] = {.lex_state = 0, .external_lex_state = 5}, - [523] = {.lex_state = 0, .external_lex_state = 6}, - [524] = {.lex_state = 41}, - [525] = {.lex_state = 0, .external_lex_state = 10}, - [526] = {.lex_state = 0}, - [527] = {.lex_state = 0, .external_lex_state = 7}, - [528] = {.lex_state = 0, .external_lex_state = 7}, - [529] = {.lex_state = 41}, - [530] = {.lex_state = 0, .external_lex_state = 7}, - [531] = {.lex_state = 0, .external_lex_state = 7}, + [514] = {.lex_state = 0, .external_lex_state = 6}, + [515] = {.lex_state = 41, .external_lex_state = 2}, + [516] = {.lex_state = 3}, + [517] = {.lex_state = 0, .external_lex_state = 6}, + [518] = {.lex_state = 0, .external_lex_state = 6}, + [519] = {.lex_state = 0, .external_lex_state = 4}, + [520] = {.lex_state = 0, .external_lex_state = 9}, + [521] = {.lex_state = 0}, + [522] = {.lex_state = 41}, + [523] = {.lex_state = 0}, + [524] = {.lex_state = 0, .external_lex_state = 6}, + [525] = {.lex_state = 0}, + [526] = {.lex_state = 0, .external_lex_state = 6}, + [527] = {.lex_state = 0, .external_lex_state = 5}, + [528] = {.lex_state = 0, .external_lex_state = 6}, + [529] = {.lex_state = 0, .external_lex_state = 4}, + [530] = {.lex_state = 0, .external_lex_state = 6}, + [531] = {.lex_state = 0, .external_lex_state = 6}, [532] = {.lex_state = 0, .external_lex_state = 6}, - [533] = {.lex_state = 0}, - [534] = {.lex_state = 0, .external_lex_state = 5}, - [535] = {.lex_state = 0, .external_lex_state = 7}, - [536] = {.lex_state = 0, .external_lex_state = 7}, - [537] = {.lex_state = 0, .external_lex_state = 7}, + [533] = {.lex_state = 0, .external_lex_state = 4}, + [534] = {.lex_state = 0, .external_lex_state = 6}, + [535] = {.lex_state = 0, .external_lex_state = 4}, + [536] = {.lex_state = 0, .external_lex_state = 6}, + [537] = {.lex_state = 0, .external_lex_state = 6}, [538] = {.lex_state = 0, .external_lex_state = 6}, - [539] = {.lex_state = 41}, - [540] = {.lex_state = 0, .external_lex_state = 5}, + [539] = {.lex_state = 0, .external_lex_state = 6}, + [540] = {.lex_state = 0, .external_lex_state = 4}, [541] = {.lex_state = 0, .external_lex_state = 6}, - [542] = {.lex_state = 0, .external_lex_state = 7}, - [543] = {.lex_state = 0, .external_lex_state = 7}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 0, .external_lex_state = 5}, - [546] = {.lex_state = 0, .external_lex_state = 7}, - [547] = {.lex_state = 0, .external_lex_state = 7}, - [548] = {.lex_state = 0, .external_lex_state = 7}, - [549] = {.lex_state = 0, .external_lex_state = 6}, - [550] = {.lex_state = 0, .external_lex_state = 7}, - [551] = {.lex_state = 0}, - [552] = {.lex_state = 0, .external_lex_state = 6}, - [553] = {.lex_state = 0, .external_lex_state = 7}, - [554] = {.lex_state = 0, .external_lex_state = 7}, - [555] = {.lex_state = 0, .external_lex_state = 7}, + [542] = {.lex_state = 0, .external_lex_state = 6}, + [543] = {.lex_state = 0}, + [544] = {.lex_state = 41}, + [545] = {.lex_state = 0}, + [546] = {.lex_state = 0, .external_lex_state = 5}, + [547] = {.lex_state = 0, .external_lex_state = 6}, + [548] = {.lex_state = 0, .external_lex_state = 5}, + [549] = {.lex_state = 0, .external_lex_state = 4}, + [550] = {.lex_state = 0, .external_lex_state = 6}, + [551] = {.lex_state = 0, .external_lex_state = 6}, + [552] = {.lex_state = 0}, + [553] = {.lex_state = 0}, + [554] = {.lex_state = 41}, + [555] = {.lex_state = 0, .external_lex_state = 5}, [556] = {.lex_state = 0, .external_lex_state = 5}, - [557] = {.lex_state = 0}, + [557] = {.lex_state = 1}, [558] = {.lex_state = 0}, - [559] = {.lex_state = 41}, - [560] = {.lex_state = 0}, - [561] = {.lex_state = 41}, + [559] = {.lex_state = 0}, + [560] = {.lex_state = 41}, + [561] = {.lex_state = 0}, [562] = {.lex_state = 0}, - [563] = {.lex_state = 0}, - [564] = {.lex_state = 0}, + [563] = {.lex_state = 0, .external_lex_state = 5}, + [564] = {.lex_state = 0, .external_lex_state = 5}, [565] = {.lex_state = 0}, [566] = {.lex_state = 0}, [567] = {.lex_state = 0}, - [568] = {.lex_state = 1}, - [569] = {.lex_state = 0}, + [568] = {.lex_state = 0}, + [569] = {.lex_state = 1}, [570] = {.lex_state = 0, .external_lex_state = 5}, - [571] = {.lex_state = 0, .external_lex_state = 5}, - [572] = {.lex_state = 0}, - [573] = {.lex_state = 0}, + [571] = {.lex_state = 0}, + [572] = {.lex_state = 0, .external_lex_state = 5}, + [573] = {.lex_state = 0, .external_lex_state = 5}, [574] = {.lex_state = 0}, [575] = {.lex_state = 0}, [576] = {.lex_state = 0}, - [577] = {.lex_state = 0, .external_lex_state = 5}, - [578] = {.lex_state = 1}, - [579] = {.lex_state = 0, .external_lex_state = 5}, + [577] = {.lex_state = 1}, + [578] = {.lex_state = 0}, + [579] = {.lex_state = 41}, [580] = {.lex_state = 0}, - [581] = {.lex_state = 0, .external_lex_state = 5}, + [581] = {.lex_state = 0}, [582] = {.lex_state = 0}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, [585] = {.lex_state = 0}, [586] = {.lex_state = 0}, [587] = {.lex_state = 0}, - [588] = {.lex_state = 0}, + [588] = {.lex_state = 41}, [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, [591] = {.lex_state = 0}, - [592] = {.lex_state = 1}, + [592] = {.lex_state = 0}, [593] = {.lex_state = 0}, - [594] = {.lex_state = 41}, - [595] = {.lex_state = 0}, + [594] = {.lex_state = 0}, + [595] = {.lex_state = 1}, [596] = {.lex_state = 0}, [597] = {.lex_state = 0}, [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, - [600] = {.lex_state = 1}, + [600] = {.lex_state = 0}, [601] = {.lex_state = 0, .external_lex_state = 5}, - [602] = {.lex_state = 0}, + [602] = {.lex_state = 0, .external_lex_state = 5}, [603] = {.lex_state = 0}, - [604] = {.lex_state = 0, .external_lex_state = 5}, + [604] = {.lex_state = 0}, [605] = {.lex_state = 0}, - [606] = {.lex_state = 0, .external_lex_state = 5}, - [607] = {.lex_state = 0, .external_lex_state = 5}, + [606] = {.lex_state = 0}, + [607] = {.lex_state = 0}, [608] = {.lex_state = 0, .external_lex_state = 5}, [609] = {.lex_state = 0}, - [610] = {.lex_state = 0}, + [610] = {.lex_state = 0, .external_lex_state = 5}, [611] = {.lex_state = 0}, - [612] = {.lex_state = 0}, - [613] = {.lex_state = 1}, - [614] = {.lex_state = 0, .external_lex_state = 5}, + [612] = {.lex_state = 41}, + [613] = {.lex_state = 0}, + [614] = {.lex_state = 1}, [615] = {.lex_state = 0}, - [616] = {.lex_state = 0, .external_lex_state = 5}, + [616] = {.lex_state = 0}, [617] = {.lex_state = 0}, [618] = {.lex_state = 0}, - [619] = {.lex_state = 0}, + [619] = {.lex_state = 41}, [620] = {.lex_state = 0}, [621] = {.lex_state = 0}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, - [624] = {.lex_state = 41}, - [625] = {.lex_state = 0}, + [624] = {.lex_state = 0, .external_lex_state = 5}, + [625] = {.lex_state = 0, .external_lex_state = 5}, [626] = {.lex_state = 0}, - [627] = {.lex_state = 0}, + [627] = {.lex_state = 0, .external_lex_state = 5}, [628] = {.lex_state = 0}, - [629] = {.lex_state = 0, .external_lex_state = 5}, + [629] = {.lex_state = 0}, [630] = {.lex_state = 0, .external_lex_state = 5}, [631] = {.lex_state = 0}, - [632] = {.lex_state = 0}, + [632] = {.lex_state = 0, .external_lex_state = 4}, [633] = {.lex_state = 41}, - [634] = {.lex_state = 0, .external_lex_state = 5}, - [635] = {.lex_state = 0, .external_lex_state = 5}, - [636] = {.lex_state = 0, .external_lex_state = 11}, - [637] = {.lex_state = 0, .external_lex_state = 5}, - [638] = {.lex_state = 0, .external_lex_state = 5}, + [634] = {.lex_state = 0}, + [635] = {.lex_state = 0}, + [636] = {.lex_state = 0, .external_lex_state = 5}, + [637] = {.lex_state = 41}, + [638] = {.lex_state = 0, .external_lex_state = 10}, [639] = {.lex_state = 0, .external_lex_state = 5}, - [640] = {.lex_state = 0, .external_lex_state = 6}, + [640] = {.lex_state = 0, .external_lex_state = 5}, [641] = {.lex_state = 0, .external_lex_state = 5}, - [642] = {.lex_state = 0}, - [643] = {.lex_state = 41}, - [644] = {.lex_state = 41}, - [645] = {.lex_state = 0, .external_lex_state = 5}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0, .external_lex_state = 12}, - [648] = {.lex_state = 0}, - [649] = {.lex_state = 0, .external_lex_state = 12}, - [650] = {.lex_state = 41}, - [651] = {.lex_state = 41}, - [652] = {.lex_state = 0, .external_lex_state = 5}, + [642] = {.lex_state = 41}, + [643] = {.lex_state = 0, .external_lex_state = 5}, + [644] = {.lex_state = 0, .external_lex_state = 5}, + [645] = {.lex_state = 0, .external_lex_state = 10}, + [646] = {.lex_state = 0, .external_lex_state = 10}, + [647] = {.lex_state = 0, .external_lex_state = 4}, + [648] = {.lex_state = 0, .external_lex_state = 4}, + [649] = {.lex_state = 0, .external_lex_state = 5}, + [650] = {.lex_state = 0}, + [651] = {.lex_state = 0, .external_lex_state = 5}, + [652] = {.lex_state = 0}, [653] = {.lex_state = 0, .external_lex_state = 5}, - [654] = {.lex_state = 0, .external_lex_state = 5}, - [655] = {.lex_state = 0, .external_lex_state = 5}, - [656] = {.lex_state = 0, .external_lex_state = 5}, - [657] = {.lex_state = 0, .external_lex_state = 12}, - [658] = {.lex_state = 0, .external_lex_state = 12}, - [659] = {.lex_state = 0, .external_lex_state = 6}, - [660] = {.lex_state = 0}, + [654] = {.lex_state = 0, .external_lex_state = 10}, + [655] = {.lex_state = 0, .external_lex_state = 4}, + [656] = {.lex_state = 41}, + [657] = {.lex_state = 0, .external_lex_state = 5}, + [658] = {.lex_state = 0, .external_lex_state = 5}, + [659] = {.lex_state = 41}, + [660] = {.lex_state = 0, .external_lex_state = 5}, [661] = {.lex_state = 0, .external_lex_state = 5}, - [662] = {.lex_state = 0}, - [663] = {.lex_state = 0, .external_lex_state = 6}, - [664] = {.lex_state = 41}, - [665] = {.lex_state = 0, .external_lex_state = 6}, + [662] = {.lex_state = 0, .external_lex_state = 11}, + [663] = {.lex_state = 0, .external_lex_state = 10}, + [664] = {.lex_state = 0, .external_lex_state = 5}, + [665] = {.lex_state = 0, .external_lex_state = 5}, [666] = {.lex_state = 0, .external_lex_state = 5}, - [667] = {.lex_state = 0, .external_lex_state = 12}, - [668] = {.lex_state = 0, .external_lex_state = 5}, - [669] = {.lex_state = 0, .external_lex_state = 5}, - [670] = {.lex_state = 0, .external_lex_state = 5}, + [667] = {.lex_state = 0, .external_lex_state = 4}, + [668] = {.lex_state = 0, .external_lex_state = 10}, + [669] = {.lex_state = 41}, + [670] = {.lex_state = 0, .external_lex_state = 4}, [671] = {.lex_state = 0, .external_lex_state = 5}, - [672] = {.lex_state = 0, .external_lex_state = 12}, + [672] = {.lex_state = 0, .external_lex_state = 5}, [673] = {.lex_state = 0, .external_lex_state = 5}, - [674] = {.lex_state = 0, .external_lex_state = 6}, - [675] = {.lex_state = 41}, - [676] = {.lex_state = 0}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 0, .external_lex_state = 5}, - [679] = {.lex_state = 0, .external_lex_state = 6}, + [674] = {.lex_state = 0}, + [675] = {.lex_state = 0}, }; enum { @@ -12502,7 +12487,6 @@ enum { ts_external_token_template_directive_start = 5, ts_external_token_template_directive_end = 6, ts_external_token_heredoc_identifier = 7, - ts_external_token__shim = 8, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -12514,10 +12498,9 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_template_directive_start] = sym_template_directive_start, [ts_external_token_template_directive_end] = sym_template_directive_end, [ts_external_token_heredoc_identifier] = sym_heredoc_identifier, - [ts_external_token__shim] = sym__shim, }; -static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_quoted_template_start] = true, [ts_external_token_quoted_template_end] = true, @@ -12527,25 +12510,27 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_template_directive_start] = true, [ts_external_token_template_directive_end] = true, [ts_external_token_heredoc_identifier] = true, - [ts_external_token__shim] = true, }, [2] = { - [ts_external_token__shim] = true, + [ts_external_token_quoted_template_start] = true, }, [3] = { [ts_external_token_quoted_template_start] = true, + [ts_external_token_template_interpolation_end] = true, }, [4] = { - [ts_external_token_quoted_template_start] = true, [ts_external_token_template_interpolation_end] = true, }, [5] = { [ts_external_token_template_directive_end] = true, }, [6] = { - [ts_external_token_template_interpolation_end] = true, + [ts_external_token__template_literal_chunk] = true, + [ts_external_token_template_interpolation_start] = true, + [ts_external_token_template_directive_start] = true, }, [7] = { + [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, [ts_external_token_template_interpolation_start] = true, [ts_external_token_template_directive_start] = true, @@ -12559,19 +12544,13 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [9] = { [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, - [ts_external_token_template_interpolation_start] = true, - [ts_external_token_template_directive_start] = true, }, [10] = { - [ts_external_token_quoted_template_end] = true, - [ts_external_token__template_literal_chunk] = true, + [ts_external_token_heredoc_identifier] = true, }, [11] = { [ts_external_token_quoted_template_end] = true, }, - [12] = { - [ts_external_token_heredoc_identifier] = true, - }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12630,95 +12609,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_directive_start] = ACTIONS(1), [sym_template_directive_end] = ACTIONS(1), [sym_heredoc_identifier] = ACTIONS(1), - [sym__shim] = ACTIONS(1), }, [1] = { - [sym_config_file] = STATE(677), - [sym_body] = STATE(676), - [sym_attribute] = STATE(416), - [sym_block] = STATE(416), - [sym_object] = STATE(676), - [sym_object_start] = STATE(15), - [aux_sym_body_repeat1] = STATE(416), + [sym_config_file] = STATE(675), + [sym_body] = STATE(674), + [sym_attribute] = STATE(406), + [sym_block] = STATE(406), + [aux_sym_body_repeat1] = STATE(406), [ts_builtin_sym_end] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [sym_identifier] = ACTIONS(9), + [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [sym__whitespace] = ACTIONS(3), - [sym__shim] = ACTIONS(11), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 30, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(15), 1, + ACTIONS(11), 1, anon_sym_RBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(80), 1, + STATE(9), 1, + sym_object_elem, + STATE(78), 1, sym_for_intro, - STATE(196), 1, + STATE(192), 1, sym_object_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(615), 1, + STATE(567), 1, sym__object_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12728,74 +12702,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [107] = 30, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(41), 1, + ACTIONS(37), 1, anon_sym_RBRACE, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(50), 1, + STATE(9), 1, + sym_object_elem, + STATE(60), 1, sym_for_intro, - STATE(155), 1, + STATE(268), 1, sym_object_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(610), 1, + STATE(558), 1, sym__object_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12805,74 +12779,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [214] = 30, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(43), 1, + ACTIONS(39), 1, anon_sym_RBRACE, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(45), 1, + STATE(9), 1, + sym_object_elem, + STATE(59), 1, sym_for_intro, - STATE(255), 1, + STATE(289), 1, sym_object_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(609), 1, + STATE(589), 1, sym__object_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12882,74 +12856,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [321] = 30, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_RBRACE, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(59), 1, + STATE(9), 1, + sym_object_elem, + STATE(65), 1, sym_for_intro, - STATE(299), 1, + STATE(146), 1, sym_object_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(626), 1, + STATE(617), 1, sym__object_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12959,74 +12933,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [428] = 30, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(47), 1, + ACTIONS(43), 1, anon_sym_RBRACE, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(72), 1, + STATE(9), 1, + sym_object_elem, + STATE(67), 1, sym_for_intro, - STATE(309), 1, + STATE(285), 1, sym_object_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(582), 1, + STATE(629), 1, sym__object_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13035,26 +13009,176 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [535] = 28, - ACTIONS(13), 1, + [535] = 29, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(45), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(69), 1, + sym_for_intro, + STATE(313), 1, + sym_tuple_end, + STATE(400), 1, + sym_conditional, + STATE(415), 1, + sym_expression, + STATE(611), 1, + sym__tuple_elems, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [639] = 29, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(47), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(72), 1, + sym_for_intro, + STATE(183), 1, + sym_tuple_end, + STATE(400), 1, + sym_conditional, + STATE(415), 1, + sym_expression, + STATE(613), 1, + sym__tuple_elems, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [743] = 28, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(49), 1, anon_sym_RBRACE, @@ -13062,45 +13186,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(22), 1, + STATE(27), 1, sym__comma, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(8), 2, + STATE(11), 2, sym_object_elem, aux_sym__object_elems_repeat1, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13109,297 +13233,147 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [637] = 28, - ACTIONS(13), 1, + [845] = 29, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(53), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(52), 1, + sym_for_intro, + STATE(270), 1, + sym_tuple_end, + STATE(400), 1, + sym_conditional, + STATE(415), 1, + sym_expression, + STATE(586), 1, + sym__tuple_elems, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [949] = 28, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, ACTIONS(55), 1, + anon_sym_RBRACE, + ACTIONS(57), 1, anon_sym_COMMA, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(26), 1, + STATE(20), 1, sym__comma, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(14), 2, + STATE(13), 2, sym_object_elem, aux_sym__object_elems_repeat1, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [739] = 29, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - ACTIONS(57), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(51), 1, - sym_for_intro, - STATE(294), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(426), 1, - sym_expression, - STATE(575), 1, - sym__tuple_elems, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [843] = 29, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - ACTIONS(59), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(79), 1, - sym_for_intro, - STATE(205), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(426), 1, - sym_expression, - STATE(569), 1, - sym__tuple_elems, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [947] = 29, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - ACTIONS(61), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(58), 1, - sym_for_intro, - STATE(312), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(426), 1, - sym_expression, - STATE(573), 1, - sym__tuple_elems, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, + STATE(210), 2, sym_tuple, sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13409,72 +13383,72 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1051] = 29, - ACTIONS(13), 1, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(31), 1, + ACTIONS(27), 1, anon_sym_for, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(63), 1, + ACTIONS(59), 1, anon_sym_RBRACK, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(55), 1, + STATE(46), 1, sym_for_intro, - STATE(167), 1, + STATE(149), 1, sym_tuple_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(426), 1, + STATE(415), 1, sym_expression, - STATE(596), 1, + STATE(620), 1, sym__tuple_elems, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13483,147 +13457,72 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1155] = 29, - ACTIONS(13), 1, + [1155] = 28, + ACTIONS(61), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_for, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - ACTIONS(65), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(53), 1, - sym_for_intro, - STATE(248), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(426), 1, - sym_expression, - STATE(599), 1, - sym__tuple_elems, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [1259] = 28, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(70), 1, + ACTIONS(64), 1, anon_sym_RBRACE, - ACTIONS(72), 1, + ACTIONS(66), 1, sym_identifier, - ACTIONS(75), 1, + ACTIONS(69), 1, anon_sym_LPAREN, - ACTIONS(78), 1, + ACTIONS(72), 1, aux_sym_numeric_lit_token1, - ACTIONS(81), 1, + ACTIONS(75), 1, aux_sym_numeric_lit_token2, - ACTIONS(87), 1, + ACTIONS(81), 1, sym_null_lit, - ACTIONS(90), 1, + ACTIONS(84), 1, anon_sym_COMMA, - ACTIONS(93), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(99), 1, + ACTIONS(93), 1, anon_sym_LT_LT, - ACTIONS(102), 1, + ACTIONS(96), 1, anon_sym_LT_LT_DASH, - ACTIONS(105), 1, + ACTIONS(99), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(40), 1, + STATE(34), 1, sym__comma, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(516), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(84), 2, + ACTIONS(78), 2, anon_sym_true, anon_sym_false, - ACTIONS(96), 2, + ACTIONS(90), 2, anon_sym_DASH, anon_sym_BANG, - STATE(14), 2, + STATE(13), 2, sym_object_elem, aux_sym__object_elems_repeat1, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13632,71 +13531,73 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1361] = 28, - ACTIONS(13), 1, + [1257] = 29, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - anon_sym_RBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(27), 1, + anon_sym_for, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, + ACTIONS(102), 1, + anon_sym_RBRACK, STATE(2), 1, sym_object_start, - STATE(7), 1, - sym_object_elem, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(196), 1, - sym_object_end, - STATE(403), 1, + STATE(49), 1, + sym_for_intro, + STATE(291), 1, + sym_tuple_end, + STATE(400), 1, sym_conditional, - STATE(500), 1, + STATE(415), 1, sym_expression, - STATE(615), 1, - sym__object_elems, - STATE(647), 1, + STATE(591), 1, + sym__tuple_elems, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13705,69 +13606,211 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1462] = 27, - ACTIONS(13), 1, + [1361] = 27, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(104), 1, + anon_sym_RPAREN, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(292), 1, + sym__function_call_end, + STATE(400), 1, + sym_conditional, + STATE(407), 1, + sym_expression, + STATE(621), 1, + sym_function_arguments, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [1459] = 27, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(106), 1, + anon_sym_RPAREN, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(193), 1, + sym__function_call_end, + STATE(400), 1, + sym_conditional, + STATE(407), 1, + sym_expression, + STATE(600), 1, + sym_function_arguments, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [1557] = 27, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(108), 1, anon_sym_RPAREN, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(191), 1, + STATE(144), 1, sym__function_call_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(585), 1, + STATE(615), 1, sym_function_arguments, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13776,69 +13819,69 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1560] = 27, - ACTIONS(13), 1, + [1655] = 27, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(110), 1, anon_sym_RPAREN, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(169), 1, + STATE(266), 1, sym__function_call_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(631), 1, + STATE(594), 1, sym_function_arguments, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13847,69 +13890,69 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1658] = 27, - ACTIONS(13), 1, + [1753] = 27, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(112), 1, anon_sym_RPAREN, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, STATE(286), 1, sym__function_call_end, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(576), 1, + STATE(599), 1, sym_function_arguments, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13918,69 +13961,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1756] = 27, - ACTIONS(13), 1, + [1851] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(114), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(268), 1, - sym__function_call_end, - STATE(403), 1, + STATE(348), 1, + sym_object_elem, + STATE(400), 1, sym_conditional, - STATE(412), 1, + STATE(516), 1, sym_expression, - STATE(597), 1, - sym_function_arguments, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13989,69 +14030,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1854] = 27, - ACTIONS(13), 1, + [1946] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, ACTIONS(116), 1, - anon_sym_RPAREN, - STATE(2), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(130), 1, + sym_strip_marker, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(134), 1, + sym_template_interpolation_end, + STATE(6), 1, sym_object_start, - STATE(10), 1, + STATE(7), 1, sym_tuple_start, - STATE(302), 1, - sym__function_call_end, - STATE(403), 1, + STATE(502), 1, sym_conditional, - STATE(412), 1, + STATE(519), 1, sym_expression, - STATE(574), 1, - sym_function_arguments, - STATE(647), 1, + STATE(645), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, + STATE(303), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14060,343 +14099,205 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1952] = 26, - ACTIONS(13), 1, + [2041] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(118), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(120), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(124), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(128), 1, + ACTIONS(126), 1, sym_null_lit, ACTIONS(132), 1, - sym_strip_marker, - ACTIONS(134), 1, sym_quoted_template_start, ACTIONS(136), 1, - sym_template_interpolation_end, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(532), 1, - sym_conditional, - STATE(538), 1, - sym_expression, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(220), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2047] = 26, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - ACTIONS(53), 1, - anon_sym_RBRACE, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(351), 1, - sym_object_elem, - STATE(403), 1, - sym_conditional, - STATE(500), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2142] = 26, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, + sym_strip_marker, ACTIONS(138), 1, - sym_strip_marker, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(491), 1, + sym_expression, + STATE(502), 1, + sym_conditional, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(217), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2136] = 26, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, ACTIONS(140), 1, - sym_template_interpolation_end, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(532), 1, - sym_conditional, - STATE(541), 1, - sym_expression, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(220), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2237] = 26, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, + sym_strip_marker, ACTIONS(142), 1, - sym_strip_marker, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(502), 1, + sym_conditional, + STATE(549), 1, + sym_expression, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(217), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2231] = 26, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, ACTIONS(144), 1, - sym_template_interpolation_end, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(521), 1, - sym_expression, - STATE(532), 1, - sym_conditional, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(220), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2332] = 26, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - ACTIONS(146), 1, sym_strip_marker, - ACTIONS(148), 1, + ACTIONS(146), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(11), 1, + STATE(7), 1, sym_tuple_start, - STATE(532), 1, + STATE(502), 1, sym_conditional, - STATE(552), 1, + STATE(540), 1, sym_expression, - STATE(649), 1, + STATE(645), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(126), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(130), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, + sym_tuple, + sym_object, + STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14405,67 +14306,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2427] = 26, - ACTIONS(13), 1, + [2326] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, sym_quoted_template_start, + ACTIONS(148), 1, + sym_strip_marker, ACTIONS(150), 1, - anon_sym_RBRACE, - STATE(2), 1, + sym_template_interpolation_end, + STATE(6), 1, sym_object_start, - STATE(10), 1, + STATE(7), 1, sym_tuple_start, - STATE(351), 1, - sym_object_elem, - STATE(403), 1, + STATE(502), 1, sym_conditional, - STATE(500), 1, + STATE(529), 1, sym_expression, - STATE(647), 1, + STATE(645), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, + STATE(303), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14474,67 +14375,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2522] = 26, - ACTIONS(13), 1, + [2421] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(118), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(120), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(124), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(128), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(134), 1, + ACTIONS(132), 1, sym_quoted_template_start, ACTIONS(152), 1, sym_strip_marker, ACTIONS(154), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(11), 1, + STATE(7), 1, sym_tuple_start, - STATE(532), 1, + STATE(502), 1, sym_conditional, - STATE(549), 1, + STATE(535), 1, sym_expression, - STATE(649), 1, + STATE(645), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(126), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(130), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, + STATE(303), 2, sym_quoted_template, sym_heredoc_template, - STATE(343), 2, + STATE(319), 2, sym_unary_operation, sym_binary_operation, - STATE(345), 2, + STATE(323), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(337), 3, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14543,67 +14444,67 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2617] = 26, - ACTIONS(13), 1, + [2516] = 26, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(120), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(124), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(128), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(134), 1, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, - ACTIONS(156), 1, - sym_strip_marker, - ACTIONS(158), 1, - sym_template_interpolation_end, - STATE(5), 1, + ACTIONS(55), 1, + anon_sym_RBRACE, + STATE(2), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_tuple_start, - STATE(523), 1, - sym_expression, - STATE(532), 1, + STATE(348), 1, + sym_object_elem, + STATE(400), 1, sym_conditional, - STATE(649), 1, + STATE(516), 1, + sym_expression, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(126), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(130), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(343), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(345), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(337), 3, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14612,21 +14513,72 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2712] = 6, + [2611] = 9, + ACTIONS(164), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, + ACTIONS(160), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(162), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(154), 2, sym_attr_splat, sym_full_splat, - STATE(166), 3, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(162), 12, + ACTIONS(158), 11, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(156), 16, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [2671] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(154), 2, + sym_attr_splat, + sym_full_splat, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14639,7 +14591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(160), 20, + ACTIONS(166), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14660,65 +14612,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [2766] = 25, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, + [2725] = 12, ACTIONS(164), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(160), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(162), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(170), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(154), 2, + sym_attr_splat, + sym_full_splat, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 9, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(156), 12, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [2791] = 13, + ACTIONS(164), 1, + anon_sym_SLASH, + ACTIONS(176), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(160), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(162), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(170), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(154), 2, + sym_attr_splat, + sym_full_splat, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 9, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(156), 11, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [2859] = 25, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(178), 1, anon_sym_RPAREN, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(434), 1, + STATE(423), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14727,50 +14788,50 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2858] = 18, - ACTIONS(170), 1, - anon_sym_LBRACK, - ACTIONS(172), 1, - anon_sym_DOT, - ACTIONS(174), 1, - anon_sym_DOT_STAR, - ACTIONS(176), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(182), 1, + [2951] = 18, + ACTIONS(164), 1, anon_sym_SLASH, - ACTIONS(190), 1, + ACTIONS(176), 1, anon_sym_AMP_AMP, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_DOT, + ACTIONS(188), 1, + anon_sym_DOT_STAR, + ACTIONS(190), 1, + anon_sym_LBRACK_STAR_RBRACK, ACTIONS(192), 1, anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(178), 2, + ACTIONS(160), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(180), 2, + ACTIONS(162), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(184), 2, + ACTIONS(170), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(186), 2, + ACTIONS(172), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(188), 2, + ACTIONS(174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, + STATE(154), 2, sym_attr_splat, sym_full_splat, - STATE(166), 3, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 7, + ACTIONS(182), 7, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14778,7 +14839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, anon_sym_BANG, anon_sym_LT_LT, - ACTIONS(166), 8, + ACTIONS(180), 8, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14787,65 +14848,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_LT_LT_DASH, - [2936] = 25, - ACTIONS(13), 1, + [3029] = 25, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(348), 1, + sym_object_elem, + STATE(400), 1, + sym_conditional, + STATE(516), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3121] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(154), 2, + sym_attr_splat, + sym_full_splat, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 12, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(156), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3175] = 25, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, ACTIONS(194), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(423), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3267] = 25, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(196), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(423), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3359] = 8, + ACTIONS(164), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(162), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(154), 2, + sym_attr_splat, + sym_full_splat, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 11, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(156), 18, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3417] = 25, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + ACTIONS(198), 1, anon_sym_RPAREN, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(403), 1, + STATE(400), 1, sym_conditional, - STATE(434), 1, + STATE(423), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14854,184 +15214,35 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3028] = 8, - ACTIONS(182), 1, + [3509] = 11, + ACTIONS(164), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(180), 2, + ACTIONS(160), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(162), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, + ACTIONS(170), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(172), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(154), 2, sym_attr_splat, sym_full_splat, - STATE(166), 3, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(161), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(198), 11, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(196), 18, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3086] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, - sym_attr_splat, - sym_full_splat, - STATE(166), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 12, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(196), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3140] = 9, - ACTIONS(182), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(178), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(180), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, - sym_attr_splat, - sym_full_splat, - STATE(166), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 11, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(196), 16, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3200] = 11, - ACTIONS(182), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(178), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(180), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(184), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(186), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, - sym_attr_splat, - sym_full_splat, - STATE(166), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 9, + ACTIONS(158), 9, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -15041,7 +15252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_BANG, anon_sym_LT_LT, - ACTIONS(196), 14, + ACTIONS(156), 14, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -15056,1543 +15267,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3264] = 12, - ACTIONS(182), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(178), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(180), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(184), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(186), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(188), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, - sym_attr_splat, - sym_full_splat, - STATE(166), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 9, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_LT_LT, - ACTIONS(196), 12, - sym_quoted_template_start, + [3573] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3330] = 13, - ACTIONS(182), 1, - anon_sym_SLASH, - ACTIONS(190), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(178), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(180), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(184), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(186), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(188), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(164), 2, - sym_attr_splat, - sym_full_splat, - STATE(166), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 9, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, + ACTIONS(25), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(196), 11, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - [3398] = 25, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, ACTIONS(200), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(434), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3490] = 25, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(351), 1, - sym_object_elem, - STATE(403), 1, - sym_conditional, - STATE(500), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3582] = 25, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, ACTIONS(202), 1, - anon_sym_RBRACK, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(434), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3674] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, anon_sym_LPAREN, - ACTIONS(122), 1, + ACTIONS(204), 1, aux_sym_numeric_lit_token1, - ACTIONS(124), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token2, - ACTIONS(128), 1, + ACTIONS(210), 1, sym_null_lit, - ACTIONS(134), 1, + ACTIONS(214), 1, sym_quoted_template_start, STATE(5), 1, sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(520), 1, - sym_expression, - STATE(532), 1, - sym_conditional, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(220), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3763] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(632), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3852] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(402), 1, - sym_expression, - STATE(403), 1, - sym_conditional, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3941] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(578), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4030] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(617), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4119] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(534), 1, - sym_conditional, - STATE(545), 1, - sym_expression, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4208] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(408), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4297] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(557), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4386] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(600), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4475] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(427), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4564] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(417), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4653] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(430), 1, - sym_conditional, - STATE(432), 1, - sym_expression, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4742] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(407), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4831] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(420), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4920] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(522), 1, - sym_expression, - STATE(534), 1, - sym_conditional, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5009] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(415), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5098] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(424), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5187] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(613), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5276] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, STATE(12), 1, sym_tuple_start, + STATE(345), 1, + sym_expression, STATE(346), 1, - sym_expression, - STATE(347), 1, sym_conditional, - STATE(658), 1, + STATE(668), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(244), 2, + ACTIONS(208), 2, anon_sym_true, anon_sym_false, - ACTIONS(248), 2, + ACTIONS(212), 2, anon_sym_DASH, anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, sym_for_tuple_expr, sym_for_object_expr, STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, + sym_tuple, + sym_object, + STATE(166), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(31), 8, + STATE(33), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16601,1298 +15332,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [5365] = 24, - ACTIONS(13), 1, + [3662] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(586), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5454] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(587), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5543] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(618), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5632] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(620), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5721] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(505), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5810] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(534), 1, - sym_conditional, - STATE(556), 1, - sym_expression, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5899] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(413), 1, - sym_expression, - STATE(430), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5988] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(595), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6077] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(347), 1, - sym_conditional, - STATE(348), 1, - sym_expression, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(31), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6166] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(628), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6255] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(534), 1, - sym_conditional, - STATE(540), 1, - sym_expression, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6344] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(568), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6433] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(565), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6522] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(562), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6611] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(566), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6700] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(514), 1, - sym_expression, - STATE(534), 1, - sym_conditional, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6789] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(434), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6878] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(602), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6967] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(430), 1, - sym_conditional, - STATE(433), 1, - sym_expression, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7056] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, + STATE(400), 1, sym_conditional, STATE(592), 1, sym_expression, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17901,871 +15397,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [7145] = 24, - ACTIONS(13), 1, + [3751] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(216), 1, sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(506), 1, - sym_expression, - STATE(534), 1, - sym_conditional, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7234] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, + anon_sym_LPAREN, ACTIONS(220), 1, - sym_identifier, + aux_sym_numeric_lit_token1, ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, + aux_sym_numeric_lit_token2, ACTIONS(226), 1, - aux_sym_numeric_lit_token2, + sym_null_lit, ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(425), 1, + STATE(410), 1, sym_expression, - STATE(430), 1, + STATE(422), 1, sym_conditional, - STATE(667), 1, + STATE(654), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, + STATE(247), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7323] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(593), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, + STATE(248), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(279), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, + STATE(280), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7412] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(9), 1, - sym_tuple_start, - STATE(504), 1, - sym_expression, - STATE(534), 1, - sym_conditional, - STATE(672), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(212), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(216), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(344), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7501] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(464), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7590] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(627), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7679] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(623), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7768] = 24, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(603), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(136), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7857] = 7, - ACTIONS(170), 1, - anon_sym_LBRACK, - ACTIONS(172), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(90), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(254), 10, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(252), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [7911] = 7, - ACTIONS(170), 1, - anon_sym_LBRACK, - ACTIONS(172), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(258), 10, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(256), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [7965] = 7, - ACTIONS(170), 1, - anon_sym_LBRACK, - ACTIONS(172), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(92), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(262), 10, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(260), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [8019] = 7, - ACTIONS(170), 1, - anon_sym_LBRACK, - ACTIONS(172), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(266), 10, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(264), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [8073] = 7, - ACTIONS(272), 1, - anon_sym_LBRACK, - ACTIONS(275), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(144), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(270), 10, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(268), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [8127] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(229), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8210] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, + STATE(278), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -18778,59 +15462,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8293] = 22, - ACTIONS(13), 1, + [3840] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(208), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(210), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(214), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(218), 1, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(8), 1, sym_tuple_start, - STATE(672), 1, + STATE(400), 1, + sym_conditional, + STATE(598), 1, + sym_expression, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(344), 3, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(230), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18839,59 +15527,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8376] = 22, - ACTIONS(13), 1, + [3929] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(208), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(210), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(214), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(218), 1, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(8), 1, sym_tuple_start, - STATE(672), 1, + STATE(400), 1, + sym_conditional, + STATE(401), 1, + sym_expression, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(344), 3, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(233), 8, + STATE(133), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18900,59 +15592,63 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8459] = 22, - ACTIONS(13), 1, + [4018] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(216), 1, sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(3), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(672), 1, + STATE(422), 1, + sym_conditional, + STATE(430), 1, + sym_expression, + STATE(654), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(224), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(228), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(247), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(344), 3, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(216), 8, + STATE(176), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18961,58 +15657,3080 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8542] = 22, - ACTIONS(13), 1, + [4107] = 24, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(208), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(210), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(214), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(218), 1, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(8), 1, sym_tuple_start, - STATE(672), 1, + STATE(400), 1, + sym_conditional, + STATE(559), 1, + sym_expression, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4196] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(405), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4285] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(419), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4374] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(546), 1, + sym_conditional, + STATE(548), 1, + sym_expression, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4463] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(413), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4552] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(422), 1, + sym_conditional, + STATE(425), 1, + sym_expression, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4641] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(497), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4730] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(603), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4819] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(604), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4908] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(414), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4997] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(502), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, + STATE(217), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5086] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(545), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5175] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(569), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5264] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(577), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5353] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(494), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5442] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(587), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5531] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(575), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5620] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(527), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5709] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(557), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5798] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(562), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5887] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(595), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5976] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(597), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6065] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(422), 1, + sym_conditional, + STATE(426), 1, + sym_expression, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6154] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(411), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6243] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(618), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6332] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(422), 1, + sym_conditional, + STATE(428), 1, + sym_expression, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6421] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(493), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6510] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(622), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6599] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(505), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6688] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(623), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6777] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(566), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6866] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(614), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6955] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(609), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7044] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(423), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7133] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(553), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7222] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(607), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7311] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(442), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7400] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(13), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + aux_sym_numeric_lit_token1, + ACTIONS(19), 1, + aux_sym_numeric_lit_token2, + ACTIONS(23), 1, + sym_null_lit, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(8), 1, + sym_tuple_start, + STATE(400), 1, + sym_conditional, + STATE(580), 1, + sym_expression, + STATE(638), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(21), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(29), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(204), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7489] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(417), 1, + sym_expression, + STATE(422), 1, + sym_conditional, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7578] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(509), 1, + sym_expression, + STATE(546), 1, + sym_conditional, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7667] = 24, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(346), 1, + sym_conditional, + STATE(347), 1, + sym_expression, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(33), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7756] = 7, + ACTIONS(252), 1, + anon_sym_LBRACK, + ACTIONS(255), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(88), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(250), 10, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(248), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [7810] = 7, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(88), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(260), 10, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(258), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [7864] = 7, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(88), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(264), 10, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(262), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [7918] = 7, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(89), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(268), 10, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(266), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [7972] = 7, + ACTIONS(184), 1, + anon_sym_LBRACK, + ACTIONS(186), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(156), 2, + sym_new_index, + sym_legacy_index, + STATE(90), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(272), 10, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(270), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [8026] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(181), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8109] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(180), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8192] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, STATE(218), 8, sym__expr_term, sym_literal_value, @@ -19022,54 +18740,725 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8625] = 22, - ACTIONS(13), 1, + [8275] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(232), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(234), 1, anon_sym_LPAREN, - ACTIONS(208), 1, + ACTIONS(236), 1, aux_sym_numeric_lit_token1, - ACTIONS(210), 1, + ACTIONS(238), 1, aux_sym_numeric_lit_token2, - ACTIONS(214), 1, + ACTIONS(242), 1, sym_null_lit, - ACTIONS(218), 1, + ACTIONS(246), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(9), 1, + STATE(14), 1, sym_tuple_start, - STATE(672), 1, + STATE(663), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(240), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(244), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(308), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(310), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(312), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8358] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(228), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8441] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(221), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8524] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(223), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8607] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(29), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8690] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(232), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(663), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(240), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(244), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(308), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(220), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8773] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(234), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8856] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(178), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8939] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(182), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9022] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(225), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9105] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(175), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9188] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, STATE(344), 3, sym_numeric_lit, sym_bool_lit, @@ -19083,54 +19472,237 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8708] = 22, - ACTIONS(13), 1, + [9271] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(206), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(208), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(210), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(214), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(218), 1, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(35), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(8), 1, sym_tuple_start, - STATE(672), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(208), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(128), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9354] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(230), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9437] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, + STATE(344), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(227), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9520] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(7), 1, + sym_tuple_start, + STATE(645), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(303), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(319), 2, + sym_unary_operation, + sym_binary_operation, + STATE(323), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, STATE(344), 3, sym_numeric_lit, sym_bool_lit, @@ -19144,425 +19716,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8791] = 22, - ACTIONS(13), 1, + [9603] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, ACTIONS(118), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(120), 1, - anon_sym_LPAREN, + aux_sym_numeric_lit_token1, ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(128), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(227), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8874] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(225), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8957] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(232), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9040] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(221), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9123] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(228), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9206] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(38), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9289] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(204), 1, - sym_identifier, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - aux_sym_numeric_lit_token1, - ACTIONS(210), 1, - aux_sym_numeric_lit_token2, - ACTIONS(214), 1, - sym_null_lit, - ACTIONS(218), 1, + ACTIONS(132), 1, sym_quoted_template_start, STATE(6), 1, sym_object_start, - STATE(9), 1, + STATE(7), 1, sym_tuple_start, - STATE(672), 1, + STATE(645), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(212), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(216), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(282), 2, + STATE(303), 2, sym_quoted_template, sym_heredoc_template, - STATE(300), 2, - sym_tuple, - sym_object, - STATE(321), 2, + STATE(319), 2, sym_unary_operation, sym_binary_operation, - STATE(333), 2, + STATE(323), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(341), 2, + sym_tuple, + sym_object, STATE(344), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(236), 8, + STATE(224), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19571,604 +19777,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9372] = 22, - ACTIONS(13), 1, + [9686] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(236), 1, + ACTIONS(216), 1, sym_identifier, - ACTIONS(238), 1, + ACTIONS(218), 1, anon_sym_LPAREN, - ACTIONS(240), 1, + ACTIONS(220), 1, aux_sym_numeric_lit_token1, - ACTIONS(242), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token2, - ACTIONS(246), 1, + ACTIONS(226), 1, sym_null_lit, - ACTIONS(250), 1, + ACTIONS(230), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(658), 1, + STATE(654), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(244), 2, + ACTIONS(224), 2, anon_sym_true, anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(37), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9455] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(36), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9538] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(35), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9621] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(34), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9704] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, + STATE(247), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9787] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(154), 2, + STATE(248), 2, sym_tuple, sym_object, - STATE(158), 2, + STATE(279), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, + STATE(280), 2, sym_quoted_template, sym_heredoc_template, - STATE(153), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(29), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9870] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(183), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9953] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(177), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10036] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(181), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10119] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(220), 1, - sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, - ACTIONS(234), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(228), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, + STATE(278), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20181,181 +19838,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10202] = 22, - ACTIONS(13), 1, + [9769] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(220), 1, + ACTIONS(232), 1, sym_identifier, - ACTIONS(222), 1, - anon_sym_LPAREN, - ACTIONS(224), 1, - aux_sym_numeric_lit_token1, - ACTIONS(226), 1, - aux_sym_numeric_lit_token2, - ACTIONS(230), 1, - sym_null_lit, ACTIONS(234), 1, + anon_sym_LPAREN, + ACTIONS(236), 1, + aux_sym_numeric_lit_token1, + ACTIONS(238), 1, + aux_sym_numeric_lit_token2, + ACTIONS(242), 1, + sym_null_lit, + ACTIONS(246), 1, sym_quoted_template_start, STATE(4), 1, sym_object_start, - STATE(13), 1, + STATE(14), 1, sym_tuple_start, - STATE(667), 1, + STATE(663), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(228), 2, + ACTIONS(240), 2, anon_sym_true, anon_sym_false, - ACTIONS(232), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(254), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(253), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(178), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10285] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(118), 1, - sym_identifier, - ACTIONS(120), 1, - anon_sym_LPAREN, - ACTIONS(122), 1, - aux_sym_numeric_lit_token1, - ACTIONS(124), 1, - aux_sym_numeric_lit_token2, - ACTIONS(128), 1, - sym_null_lit, - ACTIONS(134), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(649), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(126), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(130), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(336), 2, - sym_tuple, - sym_object, - STATE(341), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(343), 2, - sym_unary_operation, - sym_binary_operation, - STATE(345), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(337), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(231), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10368] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(236), 1, - sym_identifier, - ACTIONS(238), 1, - anon_sym_LPAREN, - ACTIONS(240), 1, - aux_sym_numeric_lit_token1, - ACTIONS(242), 1, - aux_sym_numeric_lit_token2, - ACTIONS(246), 1, - sym_null_lit, - ACTIONS(250), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(658), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, ACTIONS(244), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(248), 2, anon_sym_DASH, anon_sym_BANG, - STATE(154), 2, - sym_tuple, - sym_object, - STATE(158), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(160), 2, - sym_unary_operation, - sym_binary_operation, - STATE(162), 2, + STATE(308), 2, sym_quoted_template, sym_heredoc_template, - STATE(153), 3, + STATE(310), 2, + sym_unary_operation, + sym_binary_operation, + STATE(312), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(314), 2, + sym_tuple, + sym_object, + STATE(317), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(33), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20364,116 +19899,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10451] = 22, - ACTIONS(13), 1, + [9852] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(132), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10534] = 22, - ACTIONS(13), 1, - anon_sym_LBRACE, - ACTIONS(17), 1, - sym_identifier, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(21), 1, - aux_sym_numeric_lit_token1, - ACTIONS(23), 1, - aux_sym_numeric_lit_token2, - ACTIONS(27), 1, - sym_null_lit, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LT_LT, - ACTIONS(37), 1, - anon_sym_LT_LT_DASH, - ACTIONS(39), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(10), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(25), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(33), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, + STATE(205), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(192), 3, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20486,55 +19960,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10617] = 22, - ACTIONS(13), 1, + [9935] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20547,55 +20021,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10700] = 22, - ACTIONS(13), 1, + [10018] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20608,59 +20082,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10783] = 22, - ACTIONS(13), 1, + [10101] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(133), 8, + STATE(132), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20669,55 +20143,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10866] = 22, - ACTIONS(13), 1, + [10184] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20730,55 +20204,55 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10949] = 22, - ACTIONS(13), 1, + [10267] = 22, + ACTIONS(9), 1, anon_sym_LBRACE, - ACTIONS(17), 1, + ACTIONS(13), 1, sym_identifier, - ACTIONS(19), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(21), 1, + ACTIONS(17), 1, aux_sym_numeric_lit_token1, - ACTIONS(23), 1, + ACTIONS(19), 1, aux_sym_numeric_lit_token2, - ACTIONS(27), 1, + ACTIONS(23), 1, sym_null_lit, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(31), 1, anon_sym_LT_LT, - ACTIONS(37), 1, + ACTIONS(33), 1, anon_sym_LT_LT_DASH, - ACTIONS(39), 1, + ACTIONS(35), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(8), 1, sym_tuple_start, - STATE(647), 1, + STATE(638), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(25), 2, + ACTIONS(21), 2, anon_sym_true, anon_sym_false, - ACTIONS(33), 2, + ACTIONS(29), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(201), 2, - sym_unary_operation, - sym_binary_operation, STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(205), 2, + sym_unary_operation, + sym_binary_operation, + STATE(208), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(210), 2, + sym_tuple, + sym_object, + STATE(212), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20791,383 +20265,720 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [11032] = 13, - ACTIONS(282), 1, + [10350] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(216), 1, + sym_identifier, + ACTIONS(218), 1, + anon_sym_LPAREN, + ACTIONS(220), 1, + aux_sym_numeric_lit_token1, + ACTIONS(222), 1, + aux_sym_numeric_lit_token2, + ACTIONS(226), 1, + sym_null_lit, + ACTIONS(230), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(654), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(224), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(228), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(247), 2, + sym_unary_operation, + sym_binary_operation, + STATE(248), 2, + sym_tuple, + sym_object, + STATE(279), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(280), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(278), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(177), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10433] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(31), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10516] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(30), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10599] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(40), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10682] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(28), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10765] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(35), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10848] = 22, + ACTIONS(9), 1, + anon_sym_LBRACE, + ACTIONS(25), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, + anon_sym_LT_LT, + ACTIONS(33), 1, + anon_sym_LT_LT_DASH, + ACTIONS(200), 1, + sym_identifier, + ACTIONS(202), 1, + anon_sym_LPAREN, + ACTIONS(204), 1, + aux_sym_numeric_lit_token1, + ACTIONS(206), 1, + aux_sym_numeric_lit_token2, + ACTIONS(210), 1, + sym_null_lit, + ACTIONS(214), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(668), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(208), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(155), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(159), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(160), 2, + sym_tuple, + sym_object, + STATE(166), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(38), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10931] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [10981] = 13, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(286), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(284), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(158), 3, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 13, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [11045] = 12, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(284), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(158), 3, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 14, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11107] = 11, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(158), 3, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 16, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11167] = 9, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(274), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 18, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11223] = 18, + ACTIONS(182), 1, + anon_sym_EQ, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(286), 1, + anon_sym_AMP_AMP, + ACTIONS(288), 1, + anon_sym_LBRACK, ACTIONS(290), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(280), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(288), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(198), 3, - anon_sym_EQ, - anon_sym_LBRACK, anon_sym_DOT, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 13, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [11096] = 12, - ACTIONS(282), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(280), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(288), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(198), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 14, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11158] = 11, - ACTIONS(282), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(280), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(284), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(286), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(198), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 16, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11218] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(162), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(160), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11268] = 9, - ACTIONS(282), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(278), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(280), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 18, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11324] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11374] = 8, - ACTIONS(282), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(280), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(199), 2, - sym_new_index, - sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 20, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11428] = 18, - ACTIONS(168), 1, - anon_sym_EQ, - ACTIONS(282), 1, - anon_sym_SLASH, - ACTIONS(290), 1, - anon_sym_AMP_AMP, ACTIONS(292), 1, - anon_sym_LBRACK, + anon_sym_DOT_STAR, ACTIONS(294), 1, - anon_sym_DOT, + anon_sym_LBRACK_STAR_RBRACK, ACTIONS(296), 1, - anon_sym_DOT_STAR, - ACTIONS(298), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(300), 1, anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(278), 2, + ACTIONS(274), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(280), 2, + ACTIONS(276), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(284), 2, + ACTIONS(280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(286), 2, + ACTIONS(282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(288), 2, + ACTIONS(284), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(215), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 3, + STATE(200), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 10, + ACTIONS(180), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21178,27 +20989,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [11502] = 7, - ACTIONS(292), 1, - anon_sym_LBRACK, - ACTIONS(294), 1, - anon_sym_DOT, + [11297] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(139), 3, + STATE(200), 3, sym_index, sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(254), 4, + sym_splat, + ACTIONS(158), 6, anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(252), 22, + ACTIONS(156), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21221,10 +21033,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11552] = 7, - ACTIONS(292), 1, + [11347] = 8, + ACTIONS(278), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(276), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(196), 2, + sym_attr_splat, + sym_full_splat, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + STATE(200), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 5, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(294), 1, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 20, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11401] = 7, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, @@ -21232,16 +21090,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(140), 3, + STATE(141), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(262), 4, + ACTIONS(264), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(260), 22, + ACTIONS(262), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21264,10 +21122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11602] = 7, - ACTIONS(292), 1, + [11451] = 7, + ACTIONS(288), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, @@ -21275,16 +21133,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(142), 3, + STATE(141), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(258), 4, + ACTIONS(260), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(256), 22, + ACTIONS(258), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21307,10 +21165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11652] = 7, - ACTIONS(292), 1, + [11501] = 7, + ACTIONS(288), 1, anon_sym_LBRACK, - ACTIONS(294), 1, + ACTIONS(290), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, @@ -21318,16 +21176,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(142), 3, + STATE(136), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 4, + ACTIONS(272), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 22, + ACTIONS(270), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21350,15 +21208,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11702] = 5, - ACTIONS(306), 1, + [11551] = 7, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(199), 2, + sym_new_index, + sym_legacy_index, + STATE(137), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(268), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11601] = 5, + ACTIONS(302), 1, anon_sym_LPAREN, STATE(17), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(304), 12, + ACTIONS(300), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21371,7 +21272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(302), 19, + ACTIONS(298), 19, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21391,10 +21292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11748] = 7, - ACTIONS(308), 1, + [11647] = 7, + ACTIONS(304), 1, anon_sym_LBRACK, - ACTIONS(311), 1, + ACTIONS(307), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, @@ -21402,16 +21303,16 @@ static const uint16_t ts_small_parse_table[] = { STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(142), 3, + STATE(141), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(270), 4, + ACTIONS(250), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(268), 22, + ACTIONS(248), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21434,7 +21335,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11798] = 3, + [11697] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(312), 12, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(310), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [11738] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21472,7 +21411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11839] = 3, + [11779] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21510,7 +21449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11880] = 3, + [11820] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21548,7 +21487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11921] = 3, + [11861] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21586,7 +21525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11962] = 3, + [11902] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21624,7 +21563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12003] = 3, + [11943] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21662,7 +21601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12044] = 3, + [11984] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21700,7 +21639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12085] = 3, + [12025] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21738,7 +21677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12126] = 3, + [12066] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21776,7 +21715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12167] = 3, + [12107] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21814,7 +21753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12208] = 3, + [12148] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21852,7 +21791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12249] = 3, + [12189] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21890,7 +21829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12290] = 3, + [12230] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21928,7 +21867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12331] = 3, + [12271] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21966,7 +21905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12372] = 3, + [12312] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22004,7 +21943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12413] = 3, + [12353] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22042,7 +21981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12454] = 3, + [12394] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22080,7 +22019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12495] = 3, + [12435] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22118,7 +22057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12536] = 3, + [12476] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22156,7 +22095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12577] = 3, + [12517] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22194,7 +22133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12618] = 3, + [12558] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22232,7 +22171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12659] = 3, + [12599] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22270,7 +22209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12700] = 3, + [12640] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22308,7 +22247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12741] = 3, + [12681] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22346,7 +22285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12782] = 3, + [12722] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22384,7 +22323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12823] = 3, + [12763] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22422,7 +22361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12864] = 3, + [12804] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22460,7 +22399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12905] = 3, + [12845] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22498,7 +22437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12946] = 3, + [12886] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22536,7 +22475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12987] = 3, + [12927] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22574,7 +22513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [13028] = 3, + [12968] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22612,60 +22551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [13069] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(440), 12, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(438), 20, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [13110] = 5, - ACTIONS(442), 1, + [13009] = 5, + ACTIONS(438), 1, anon_sym_LPAREN, STATE(16), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(304), 6, + ACTIONS(300), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(302), 22, + ACTIONS(298), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22688,43 +22589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13153] = 13, - ACTIONS(448), 1, + [13052] = 9, + ACTIONS(444), 1, anon_sym_SLASH, - ACTIONS(456), 1, - anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(444), 2, + ACTIONS(440), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(446), 2, + ACTIONS(442), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(450), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(452), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, + STATE(272), 2, sym_attr_splat, sym_full_splat, - STATE(261), 3, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 8, + ACTIONS(158), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 13, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22732,243 +22624,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, sym_ellipsis, anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [13211] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, - sym_attr_splat, - sym_full_splat, - STATE(261), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13255] = 12, - ACTIONS(448), 1, + [13102] = 17, + ACTIONS(444), 1, anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, + ACTIONS(446), 1, anon_sym_LBRACK, + ACTIONS(448), 1, anon_sym_DOT, - ACTIONS(444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(446), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(450), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(452), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, - sym_attr_splat, - sym_full_splat, - STATE(261), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 9, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(450), 1, anon_sym_DOT_STAR, + ACTIONS(452), 1, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13311] = 11, - ACTIONS(448), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(446), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(450), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(452), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, - sym_attr_splat, - sym_full_splat, - STATE(261), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 11, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13365] = 17, - ACTIONS(448), 1, - anon_sym_SLASH, - ACTIONS(456), 1, - anon_sym_AMP_AMP, - ACTIONS(458), 1, - anon_sym_LBRACK, ACTIONS(460), 1, - anon_sym_DOT, + anon_sym_AMP_AMP, ACTIONS(462), 1, - anon_sym_DOT_STAR, - ACTIONS(464), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(466), 1, anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(444), 2, + ACTIONS(440), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(446), 2, + ACTIONS(442), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(450), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(452), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(454), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, - sym_attr_splat, - sym_full_splat, - STATE(261), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [13431] = 9, - ACTIONS(448), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(446), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, - sym_attr_splat, - sym_full_splat, - STATE(261), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 4, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 13, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, + ACTIONS(456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13481] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, + STATE(272), 2, sym_attr_splat, sym_full_splat, - STATE(261), 3, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(162), 5, + ACTIONS(180), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [13168] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(272), 2, + sym_attr_splat, + sym_full_splat, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(160), 17, + ACTIONS(166), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22986,31 +22717,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13525] = 8, - ACTIONS(448), 1, + [13212] = 13, + ACTIONS(444), 1, + anon_sym_SLASH, + ACTIONS(460), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(440), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(442), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(454), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(456), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(272), 2, + sym_attr_splat, + sym_full_splat, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 8, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [13270] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(272), 2, + sym_attr_splat, + sym_full_splat, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13314] = 8, + ACTIONS(444), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(446), 2, + ACTIONS(442), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - STATE(264), 2, + STATE(272), 2, sym_attr_splat, sym_full_splat, - STATE(261), 3, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(198), 4, + ACTIONS(158), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 15, + ACTIONS(156), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -23026,41 +22840,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13573] = 3, + [13362] = 12, + ACTIONS(444), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(396), 6, - anon_sym_EQ, + ACTIONS(158), 2, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(394), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, + ACTIONS(440), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(442), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PLUS, + ACTIONS(454), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(272), 2, + sym_attr_splat, + sym_full_splat, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 9, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13418] = 11, + ACTIONS(444), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(440), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(442), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(454), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(456), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(272), 2, + sym_attr_splat, + sym_full_splat, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + STATE(274), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 11, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13610] = 3, + [13472] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23094,585 +22961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13647] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(368), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(366), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13684] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(324), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(322), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13721] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(332), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(330), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13758] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(336), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(334), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13795] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(440), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13832] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(420), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(418), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13869] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(356), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(354), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13906] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(360), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(358), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13943] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(316), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(314), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13980] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(372), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(370), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14017] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(364), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14054] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(376), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(374), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14091] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(348), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14128] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(320), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(318), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14165] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(436), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14202] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(384), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(382), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14239] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(344), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14276] = 3, + [13509] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23706,18 +22995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14313] = 3, + [13546] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(392), 6, + ACTIONS(436), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 22, + ACTIONS(434), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23740,18 +23029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14350] = 3, + [13583] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(412), 6, + ACTIONS(336), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(410), 22, + ACTIONS(334), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23774,18 +23063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14387] = 3, + [13620] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(380), 6, + ACTIONS(316), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(378), 22, + ACTIONS(314), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23808,245 +23097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14424] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(388), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(386), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14461] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(432), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14498] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(328), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(326), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14535] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(424), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(422), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14572] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(408), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14609] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(404), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(402), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14646] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(416), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(414), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14683] = 3, + [13657] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -24080,7 +23131,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14720] = 3, + [13694] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(412), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(410), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13731] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(344), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(342), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13768] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -24114,65 +23233,808 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14757] = 9, - ACTIONS(472), 1, - anon_sym_SLASH, + [13805] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 4, + ACTIONS(328), 6, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 11, - sym_template_directive_end, + ACTIONS(326), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [14805] = 7, - ACTIONS(458), 1, + [13842] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(320), 6, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(460), 1, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13879] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(332), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(330), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13916] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(432), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13953] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(360), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(358), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13990] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(404), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(402), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14027] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(324), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14064] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(368), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(366), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14101] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(388), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(386), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14138] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(424), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14175] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(312), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14212] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(356), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(354), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14249] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(364), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(362), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14286] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(376), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(374), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14323] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(392), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(390), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14360] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(372), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(370), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14397] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(380), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(378), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14434] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(348), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(346), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14471] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(384), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(382), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14508] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(396), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(394), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14545] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(408), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14582] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(416), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(414), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14619] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(420), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14656] = 7, + ACTIONS(446), 1, + anon_sym_LBRACK, + ACTIONS(448), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(262), 2, + STATE(273), 2, sym_new_index, sym_legacy_index, - ACTIONS(258), 3, + ACTIONS(272), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(219), 3, + STATE(232), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(256), 17, + ACTIONS(270), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24190,30 +24052,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14849] = 6, + [14700] = 7, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(467), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(291), 2, + STATE(273), 2, sym_new_index, sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 5, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(250), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 15, - sym_template_directive_end, + STATE(216), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(248), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -24225,112 +24089,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [14891] = 7, + [14744] = 17, + ACTIONS(470), 1, + anon_sym_LBRACK, + ACTIONS(472), 1, + anon_sym_DOT, ACTIONS(474), 1, - anon_sym_LBRACK, - ACTIONS(477), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(219), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(268), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_DOT_STAR, + ACTIONS(476), 1, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14935] = 17, - ACTIONS(480), 1, - anon_sym_LBRACK, ACTIONS(482), 1, - anon_sym_DOT, - ACTIONS(484), 1, - anon_sym_DOT_STAR, - ACTIONS(486), 1, - anon_sym_LBRACK_STAR_RBRACK, + anon_sym_SLASH, + ACTIONS(490), 1, + anon_sym_AMP_AMP, ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(500), 1, - anon_sym_AMP_AMP, - ACTIONS(502), 1, anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(488), 2, + ACTIONS(478), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(490), 2, + ACTIONS(480), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(494), 2, + ACTIONS(484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(496), 2, + ACTIONS(486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(498), 2, + ACTIONS(488), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(283), 2, + STATE(333), 2, sym_new_index, sym_legacy_index, - STATE(316), 2, + STATE(338), 2, sym_attr_splat, sym_full_splat, - ACTIONS(166), 3, + ACTIONS(180), 3, sym_template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - STATE(318), 3, + STATE(329), 3, sym_index, sym_get_attr, sym_splat, - [14999] = 6, + [14808] = 13, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(506), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(494), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(496), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(504), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(298), 2, sym_attr_splat, sym_full_splat, - STATE(318), 3, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(162), 5, + ACTIONS(156), 6, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14864] = 12, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(494), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(496), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(504), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 7, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14918] = 11, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(494), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(496), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(500), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(502), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 9, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14970] = 9, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(494), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(496), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 11, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15018] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(160), 15, + ACTIONS(156), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15060] = 8, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(496), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 13, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15106] = 13, + ACTIONS(482), 1, + anon_sym_SLASH, + ACTIONS(490), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(478), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(484), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(486), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 6, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15162] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24346,623 +24454,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15041] = 17, - ACTIONS(472), 1, + [15204] = 12, + ACTIONS(482), 1, anon_sym_SLASH, - ACTIONS(504), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, anon_sym_LBRACK, - ACTIONS(506), 1, anon_sym_DOT, + ACTIONS(478), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(484), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(486), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(488), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 7, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15258] = 11, + ACTIONS(482), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(158), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(478), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(484), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(486), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(156), 9, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15310] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(298), 2, + sym_attr_splat, + sym_full_splat, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + STATE(302), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15352] = 17, + ACTIONS(498), 1, + anon_sym_SLASH, + ACTIONS(506), 1, + anon_sym_AMP_AMP, ACTIONS(508), 1, - anon_sym_DOT_STAR, + anon_sym_LBRACK, ACTIONS(510), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(518), 1, - anon_sym_AMP_AMP, - ACTIONS(520), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(512), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(514), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(516), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(166), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - [15105] = 7, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(262), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(234), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(260), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(512), 1, anon_sym_DOT_STAR, + ACTIONS(514), 1, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, + ACTIONS(516), 1, anon_sym_PIPE_PIPE, - [15149] = 7, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(254), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(217), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(252), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [15193] = 13, - ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(500), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(490), 2, - anon_sym_STAR, - anon_sym_PERCENT, ACTIONS(494), 2, - anon_sym_GT, - anon_sym_LT, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(496), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 6, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15249] = 13, - ACTIONS(472), 1, - anon_sym_SLASH, - ACTIONS(518), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(512), 2, + ACTIONS(500), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(514), 2, + ACTIONS(502), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(516), 2, + ACTIONS(504), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, + STATE(298), 2, sym_attr_splat, sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 6, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(180), 3, sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, - anon_sym_PIPE_PIPE, sym_strip_marker, - [15305] = 12, - ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(490), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(494), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(496), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(498), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, + STATE(302), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 7, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15359] = 11, - ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(490), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(494), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(496), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 9, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15411] = 9, - ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(488), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(490), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 11, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15459] = 12, - ACTIONS(472), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(512), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(514), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(516), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 7, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15513] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15555] = 8, - ACTIONS(492), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(490), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - STATE(316), 2, - sym_attr_splat, - sym_full_splat, - STATE(318), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 13, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15601] = 11, - ACTIONS(472), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(198), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(512), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(514), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 9, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15653] = 7, - ACTIONS(458), 1, - anon_sym_LBRACK, - ACTIONS(460), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(262), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(266), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(219), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(264), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [15697] = 8, - ACTIONS(472), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(198), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 13, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15743] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - STATE(292), 2, - sym_attr_splat, - sym_full_splat, - STATE(285), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(162), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(160), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15785] = 7, - ACTIONS(480), 1, - anon_sym_LBRACK, + [15416] = 9, ACTIONS(482), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(478), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(480), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 11, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15464] = 7, + ACTIONS(446), 1, + anon_sym_LBRACK, + ACTIONS(448), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(283), 2, + STATE(273), 2, sym_new_index, sym_legacy_index, - ACTIONS(266), 3, + ACTIONS(260), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(241), 3, + STATE(216), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(264), 15, + ACTIONS(258), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15508] = 7, + ACTIONS(446), 1, + anon_sym_LBRACK, + ACTIONS(448), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(216), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15552] = 7, + ACTIONS(446), 1, + anon_sym_LBRACK, + ACTIONS(448), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(273), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(231), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(266), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15596] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24978,26 +24806,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15827] = 7, - ACTIONS(522), 1, + [15638] = 8, + ACTIONS(482), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(480), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(329), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(158), 4, anon_sym_LBRACK, - ACTIONS(525), 1, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(156), 13, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15684] = 7, + ACTIONS(470), 1, + anon_sym_LBRACK, + ACTIONS(472), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(291), 2, + STATE(333), 2, sym_new_index, sym_legacy_index, - ACTIONS(270), 3, + ACTIONS(260), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(238), 3, + STATE(244), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(268), 15, + ACTIONS(258), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15726] = 7, + ACTIONS(470), 1, + anon_sym_LBRACK, + ACTIONS(472), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(333), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(244), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15768] = 7, + ACTIONS(508), 1, + anon_sym_LBRACK, + ACTIONS(510), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(272), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(240), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(270), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25013,27 +24949,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15869] = 7, - ACTIONS(480), 1, + [15810] = 7, + ACTIONS(508), 1, anon_sym_LBRACK, - ACTIONS(482), 1, + ACTIONS(510), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(283), 2, + STATE(301), 2, sym_new_index, sym_legacy_index, - ACTIONS(258), 3, + ACTIONS(268), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(241), 3, + STATE(243), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(256), 15, - sym_template_interpolation_end, + ACTIONS(266), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25048,18 +24984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15911] = 7, - ACTIONS(504), 1, + [15852] = 7, + ACTIONS(508), 1, anon_sym_LBRACK, - ACTIONS(506), 1, + ACTIONS(510), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(291), 2, + STATE(301), 2, sym_new_index, sym_legacy_index, - ACTIONS(254), 3, + ACTIONS(264), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25067,7 +25003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(252), 15, + ACTIONS(262), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25083,88 +25019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15953] = 7, - ACTIONS(528), 1, + [15894] = 7, + ACTIONS(470), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(472), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(283), 2, + STATE(333), 2, sym_new_index, sym_legacy_index, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(241), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(268), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15995] = 7, - ACTIONS(480), 1, - anon_sym_LBRACK, - ACTIONS(482), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(254), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(239), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(252), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16037] = 7, - ACTIONS(480), 1, - anon_sym_LBRACK, - ACTIONS(482), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(283), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(262), 3, + ACTIONS(272), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25172,7 +25038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(260), 15, + ACTIONS(270), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25188,26 +25054,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16079] = 7, - ACTIONS(504), 1, + [15936] = 7, + ACTIONS(470), 1, anon_sym_LBRACK, - ACTIONS(506), 1, + ACTIONS(472), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(291), 2, + STATE(333), 2, sym_new_index, sym_legacy_index, - ACTIONS(262), 3, + ACTIONS(268), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(246), 3, + STATE(236), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(260), 15, + ACTIONS(266), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15978] = 7, + ACTIONS(508), 1, + anon_sym_LBRACK, + ACTIONS(510), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(260), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(245), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(258), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25223,26 +25124,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16121] = 7, - ACTIONS(504), 1, + [16020] = 7, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(506), 1, + ACTIONS(521), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(291), 2, + STATE(333), 2, sym_new_index, sym_legacy_index, - ACTIONS(258), 3, + ACTIONS(250), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(238), 3, + STATE(244), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(256), 15, + ACTIONS(248), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16062] = 7, + ACTIONS(524), 1, + anon_sym_LBRACK, + ACTIONS(527), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(301), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(250), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(245), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(248), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25258,56 +25194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16163] = 7, - ACTIONS(504), 1, - anon_sym_LBRACK, - ACTIONS(506), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(291), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(266), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(238), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(264), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16205] = 5, - ACTIONS(534), 1, + [16104] = 5, + ACTIONS(530), 1, anon_sym_LPAREN, - STATE(19), 1, + STATE(18), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(304), 5, + ACTIONS(300), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(302), 17, + ACTIONS(298), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25325,231 +25226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16242] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(412), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(410), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16273] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(380), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(378), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16304] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(328), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(326), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16335] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(332), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(330), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16366] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(336), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(334), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16397] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(356), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(354), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16428] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(360), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(358), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16459] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(364), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16490] = 3, + [16141] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25577,7 +25254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16521] = 3, + [16172] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25605,627 +25282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16552] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(392), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(390), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16583] = 5, - ACTIONS(536), 1, - anon_sym_LPAREN, - STATE(20), 1, - sym__function_call_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(304), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(302), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16618] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(396), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(394), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16649] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(408), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16680] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(320), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(318), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16711] = 5, - ACTIONS(538), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym__function_call_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(304), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(302), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16746] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(400), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(398), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16777] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(404), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(402), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16808] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(428), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(426), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16839] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(316), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(314), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16870] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(420), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(418), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16901] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(440), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16932] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(324), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(322), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16963] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(368), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(366), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16994] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(436), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17025] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(432), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17056] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(424), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(422), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17087] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(416), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(414), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17118] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(388), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(386), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17149] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(344), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17180] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(372), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(370), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17211] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(352), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(350), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17242] = 3, + [16203] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26253,7 +25310,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17273] = 3, + [16234] = 5, + ACTIONS(532), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym__function_call_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(300), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(298), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16269] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(372), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(370), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16300] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(392), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(390), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16331] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(396), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(394), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16362] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(400), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(398), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16393] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(316), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16424] = 5, + ACTIONS(534), 1, + anon_sym_LPAREN, + STATE(15), 1, + sym__function_call_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(300), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(298), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16459] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(412), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(410), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16490] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(424), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16521] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(312), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16552] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(428), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(426), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16583] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(436), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(434), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16614] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(432), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16645] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(336), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(334), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16676] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(344), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(342), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16707] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(404), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(402), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16738] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(320), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16769] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(324), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16800] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(328), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(326), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16831] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(332), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(330), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16862] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26281,20 +25902,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17304] = 3, + [16893] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(392), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(390), 15, - sym_template_directive_end, + ACTIONS(350), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26306,450 +25930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [17333] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(320), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(318), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17362] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(316), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(314), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17391] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(408), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17420] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(420), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(418), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17449] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(372), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(370), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17478] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(440), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17507] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(324), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(322), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17536] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(368), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(366), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17565] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(320), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(318), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17594] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(400), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(398), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17623] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(404), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(402), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17652] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(412), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(410), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17681] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(428), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(426), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17710] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(436), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(434), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17739] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(432), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17768] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(316), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(314), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17797] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(364), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17826] = 3, + [16924] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26759,10 +25940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(358), 15, - sym_template_directive_end, + ACTIONS(358), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26774,21 +25958,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [17855] = 3, + [16955] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(424), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(422), 15, - sym_template_interpolation_end, + ACTIONS(366), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26800,86 +25986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [17884] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(420), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(418), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17913] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(416), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(414), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17942] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(440), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(438), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17971] = 3, + [16986] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26889,10 +25996,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(386), 15, - sym_template_interpolation_end, + ACTIONS(386), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26904,8 +26014,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [18000] = 3, + [17017] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(356), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(354), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17048] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(420), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17079] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(416), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(414), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17110] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(408), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17141] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26915,10 +26136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(378), 15, - sym_template_directive_end, + ACTIONS(378), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26930,21 +26154,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [18029] = 3, + [17172] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(380), 5, + ACTIONS(364), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(378), 15, - sym_template_interpolation_end, + ACTIONS(362), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26956,8 +26182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [18058] = 3, + [17203] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26983,345 +26208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18087] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(364), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(362), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18116] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(324), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(322), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18145] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(368), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(366), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18174] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(412), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(410), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18203] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(372), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(370), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18232] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(352), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(350), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18261] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(404), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(402), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18290] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(400), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(398), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18319] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(396), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(394), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18348] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(408), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(406), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18377] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(348), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18406] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(352), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(350), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18435] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(384), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(382), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18464] = 3, + [17232] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27347,17 +26234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18493] = 3, + [17261] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(328), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(326), 15, + ACTIONS(402), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27373,137 +26260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18522] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(344), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18551] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(432), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(430), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18580] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(340), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(338), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18609] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(344), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(342), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18638] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(328), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(326), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18667] = 3, + [17290] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27529,17 +26286,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18696] = 3, + [17319] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(424), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(422), 15, + ACTIONS(326), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17348] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(320), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27555,17 +26338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18725] = 3, + [17377] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(416), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(414), 15, + ACTIONS(322), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27581,7 +26364,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18754] = 3, + [17406] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(324), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(322), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17435] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(328), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(326), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17464] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(332), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(330), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17493] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(340), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(338), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17522] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(320), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(318), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17551] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(412), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(410), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17580] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(404), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(402), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17609] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(344), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(342), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17638] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(336), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(334), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17667] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(432), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17696] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(360), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(358), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17725] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(436), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(434), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17754] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(344), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(342), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17783] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(368), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(366), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17812] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27607,7 +26754,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18783] = 3, + [17841] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(364), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(362), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17870] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(312), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17899] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(356), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(354), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17928] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(424), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(422), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17957] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(412), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(410), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17986] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(364), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(362), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18015] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(316), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18044] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27633,33 +26962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18812] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(348), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(346), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18841] = 3, + [18073] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27670,7 +26973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, ACTIONS(334), 15, - sym_template_interpolation_end, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27685,17 +26988,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18870] = 3, + [18102] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(360), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(358), 15, + ACTIONS(378), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18131] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(340), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(338), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27711,7 +27040,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18899] = 3, + [18160] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(384), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(382), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18189] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(400), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(398), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18218] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(432), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(430), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18247] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(408), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18276] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(416), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(414), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18305] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(376), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(374), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18334] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(420), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18363] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27737,33 +27248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18928] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(332), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(330), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18957] = 3, + [18392] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27789,17 +27274,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18986] = 3, + [18421] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(336), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(334), 15, + ACTIONS(378), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18450] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(428), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(426), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27815,7 +27326,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19015] = 3, + [18479] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(312), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(310), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18508] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27841,17 +27378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19044] = 3, + [18537] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(340), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(338), 15, + ACTIONS(422), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27867,7 +27404,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19073] = 3, + [18566] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(372), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(370), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18595] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(388), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(386), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18624] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(352), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(350), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18653] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(316), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(314), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18682] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(400), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(398), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18711] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(368), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(366), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18740] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(348), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(346), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18769] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(396), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(394), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18798] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(392), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(390), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18827] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(372), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(370), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18856] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(360), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(358), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18885] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(420), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(418), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18914] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(352), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(350), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18943] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27893,43 +27768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19102] = 3, + [18972] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(356), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(354), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [19131] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(376), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(374), 15, + ACTIONS(414), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27945,20 +27794,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19160] = 4, - ACTIONS(544), 1, + [19001] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(348), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(346), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19030] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(408), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(406), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19059] = 4, + ACTIONS(540), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(542), 6, + ACTIONS(538), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(540), 10, + ACTIONS(536), 10, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27969,18 +27870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19188] = 3, + [19087] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 6, + ACTIONS(182), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(166), 11, + ACTIONS(180), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27992,18 +27893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19214] = 3, + [19113] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(548), 6, + ACTIONS(544), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(546), 11, + ACTIONS(542), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28015,11 +27916,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19240] = 3, + [19139] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(552), 7, + ACTIONS(546), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(64), 10, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LT_LT_DASH, + [19164] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(550), 7, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -28027,7 +27950,29 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, anon_sym_for, anon_sym_LT_LT, - ACTIONS(550), 9, + ACTIONS(548), 9, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LT_LT_DASH, + [19189] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(554), 7, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_for, + anon_sym_LT_LT, + ACTIONS(552), 9, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_LPAREN, @@ -28037,120 +27982,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19265] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(556), 7, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_for, - anon_sym_LT_LT, - ACTIONS(554), 9, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19290] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(558), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(70), 10, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19315] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(556), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(554), 9, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19339] = 11, - ACTIONS(560), 1, + [19214] = 11, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(558), 1, sym_template_interpolation_start, - ACTIONS(564), 1, + ACTIONS(560), 1, sym_template_directive_start, - STATE(355), 1, + STATE(351), 1, sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, STATE(387), 1, + sym_template_for_start, + STATE(397), 1, sym_template_else_intro, - STATE(458), 1, - sym_template_if_end, - STATE(494), 1, + STATE(452), 1, aux_sym_template_literal_repeat1, + STATE(512), 1, + sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(401), 4, + STATE(352), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19378] = 11, - ACTIONS(560), 1, + [19253] = 11, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(558), 1, sym_template_interpolation_start, - ACTIONS(566), 1, + ACTIONS(560), 1, sym_template_directive_start, - STATE(355), 1, + STATE(351), 1, sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(396), 1, + STATE(382), 1, sym_template_else_intro, - STATE(474), 1, - sym_template_if_end, - STATE(494), 1, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, aux_sym_template_literal_repeat1, + STATE(524), 1, + sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19292] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(564), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(562), 8, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LT_LT_DASH, + [19315] = 11, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(566), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(362), 1, + sym_template_else_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(490), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(358), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19354] = 11, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(568), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(391), 1, + sym_template_else_intro, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(476), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, sym_template_for, sym_template_if, STATE(356), 4, @@ -28158,91 +28114,35 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [19417] = 11, - ACTIONS(560), 1, + [19393] = 11, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(558), 1, sym_template_interpolation_start, ACTIONS(568), 1, sym_template_directive_start, - STATE(355), 1, + STATE(351), 1, sym_template_if_intro, - STATE(363), 1, + STATE(384), 1, sym_template_else_intro, - STATE(381), 1, + STATE(387), 1, sym_template_for_start, - STATE(494), 1, + STATE(452), 1, aux_sym_template_literal_repeat1, - STATE(547), 1, + STATE(487), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(357), 4, + STATE(399), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19456] = 11, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(566), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(382), 1, - sym_template_else_intro, - STATE(454), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19495] = 11, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(568), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(383), 1, - sym_template_else_intro, - STATE(494), 1, - aux_sym_template_literal_repeat1, - STATE(535), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19534] = 3, + [19432] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -28262,596 +28162,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19557] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(576), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(574), 8, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19580] = 11, - ACTIONS(560), 1, + [19455] = 11, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(558), 1, sym_template_interpolation_start, - ACTIONS(564), 1, + ACTIONS(566), 1, sym_template_directive_start, - STATE(355), 1, + STATE(351), 1, sym_template_if_intro, - STATE(367), 1, + STATE(371), 1, sym_template_else_intro, - STATE(381), 1, + STATE(387), 1, sym_template_for_start, - STATE(489), 1, - sym_template_if_end, - STATE(494), 1, + STATE(452), 1, aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(353), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19619] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(584), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19655] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(586), 1, - sym_quoted_template_end, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19691] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(592), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(494), 1, - aux_sym_template_literal_repeat1, - STATE(535), 1, + STATE(463), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(390), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19727] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(594), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(473), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19763] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(596), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - STATE(457), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(388), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [19801] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(598), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19837] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(594), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(458), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(364), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19873] = 10, - ACTIONS(600), 1, - sym__template_literal_chunk, - ACTIONS(603), 1, - sym_template_interpolation_start, - ACTIONS(606), 1, - sym_template_directive_start, - ACTIONS(609), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19909] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(592), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(494), 1, - aux_sym_template_literal_repeat1, - STATE(515), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19945] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(611), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19981] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(594), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(490), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20017] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(613), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20053] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(615), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(476), 1, - sym_template_for_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(400), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20089] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - STATE(471), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(372), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20127] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(619), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - STATE(482), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(362), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20165] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(621), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(440), 1, - sym_template_for_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20201] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(623), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20237] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(625), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(377), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20273] = 10, - ACTIONS(606), 1, - sym_template_directive_start, - ACTIONS(609), 1, - sym_quoted_template_end, - ACTIONS(627), 1, - sym__template_literal_chunk, - ACTIONS(630), 1, - sym_template_interpolation_start, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20309] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(633), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(361), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20345] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(635), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(494), 1, - aux_sym_template_literal_repeat1, - STATE(548), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, STATE(399), 4, @@ -28859,103 +28190,209 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20381] = 10, - ACTIONS(560), 1, + [19494] = 10, + ACTIONS(574), 1, + sym_quoted_template_end, + ACTIONS(576), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(579), 1, sym_template_interpolation_start, - ACTIONS(637), 1, + ACTIONS(582), 1, sym_template_directive_start, - STATE(355), 1, + STATE(354), 1, sym_template_if_intro, - STATE(381), 1, + STATE(394), 1, sym_template_for_start, - STATE(446), 1, - sym_template_if_end, - STATE(494), 1, + STATE(416), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(449), 2, sym_template_for, sym_template_if, - STATE(392), 4, + STATE(359), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20417] = 10, - ACTIONS(560), 1, + [19530] = 10, + ACTIONS(585), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(587), 1, sym_template_interpolation_start, - ACTIONS(592), 1, + ACTIONS(589), 1, sym_template_directive_start, + ACTIONS(591), 1, + sym_heredoc_identifier, STATE(355), 1, sym_template_if_intro, - STATE(381), 1, + STATE(393), 1, sym_template_for_start, - STATE(494), 1, + STATE(418), 1, aux_sym_template_literal_repeat1, - STATE(527), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(390), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19566] = 11, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(593), 1, + sym_quoted_template_end, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, + aux_sym_template_literal_repeat1, + STATE(443), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(365), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [19604] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(599), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(463), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(369), 4, + STATE(372), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20453] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, + [19640] = 10, + ACTIONS(589), 1, sym_template_directive_start, - ACTIONS(639), 1, - sym_heredoc_identifier, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(601), 1, + sym_quoted_template_end, STATE(354), 1, sym_template_if_intro, - STATE(373), 1, + STATE(394), 1, sym_template_for_start, - STATE(428), 1, + STATE(416), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(491), 2, + STATE(449), 2, sym_template_for, sym_template_if, - STATE(394), 4, + STATE(359), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20489] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, + [19676] = 11, + ACTIONS(589), 1, sym_template_directive_start, - ACTIONS(641), 1, - sym_heredoc_identifier, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(603), 1, + sym_quoted_template_end, STATE(354), 1, sym_template_if_intro, - STATE(373), 1, + STATE(394), 1, sym_template_for_start, - STATE(428), 1, + STATE(416), 1, + aux_sym_template_literal_repeat1, + STATE(451), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(363), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [19714] = 10, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(605), 1, + sym_quoted_template_end, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(491), 2, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(359), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19750] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(607), 1, + sym_heredoc_identifier, + STATE(355), 1, + sym_template_if_intro, + STATE(393), 1, + sym_template_for_start, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, sym_template_for, sym_template_if, STATE(395), 4, @@ -28963,339 +28400,495 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20525] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, + [19786] = 10, + ACTIONS(585), 1, sym__template_literal_chunk, - ACTIONS(590), 1, + ACTIONS(587), 1, sym_template_interpolation_start, - ACTIONS(643), 1, - sym_quoted_template_end, - STATE(360), 1, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(609), 1, + sym_heredoc_identifier, + STATE(355), 1, sym_template_if_intro, - STATE(389), 1, + STATE(393), 1, sym_template_for_start, - STATE(421), 1, + STATE(418), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(472), 2, + STATE(459), 2, sym_template_for, sym_template_if, - STATE(379), 4, + STATE(366), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20561] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(594), 1, + [19822] = 10, + ACTIONS(589), 1, sym_template_directive_start, - STATE(355), 1, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(611), 1, + sym_quoted_template_end, + STATE(354), 1, sym_template_if_intro, - STATE(381), 1, + STATE(394), 1, sym_template_for_start, - STATE(473), 1, + STATE(416), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(359), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19858] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(613), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(538), 1, sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(371), 4, + STATE(399), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20597] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, + [19894] = 10, + ACTIONS(585), 1, sym__template_literal_chunk, - ACTIONS(590), 1, + ACTIONS(587), 1, sym_template_interpolation_start, - ACTIONS(645), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20633] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(621), 1, + ACTIONS(589), 1, sym_template_directive_start, + ACTIONS(615), 1, + sym_heredoc_identifier, STATE(355), 1, sym_template_if_intro, - STATE(381), 1, + STATE(393), 1, sym_template_for_start, - STATE(484), 1, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19930] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(599), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(465), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(373), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19966] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(599), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(465), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20002] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(599), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(488), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20038] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(617), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(475), 1, sym_template_for_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(376), 4, + STATE(399), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20669] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(592), 1, + [20074] = 11, + ACTIONS(589), 1, sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(494), 1, - aux_sym_template_literal_repeat1, - STATE(527), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20705] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, + ACTIONS(595), 1, sym__template_literal_chunk, - ACTIONS(590), 1, + ACTIONS(597), 1, sym_template_interpolation_start, - ACTIONS(647), 1, + ACTIONS(619), 1, sym_quoted_template_end, - STATE(360), 1, + STATE(354), 1, sym_template_if_intro, - STATE(389), 1, + STATE(394), 1, sym_template_for_start, - STATE(421), 1, + STATE(416), 1, aux_sym_template_literal_repeat1, STATE(444), 1, sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(472), 2, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(368), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [20112] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(613), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(532), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20148] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(621), 1, + sym_heredoc_identifier, + STATE(355), 1, + sym_template_if_intro, + STATE(393), 1, + sym_template_for_start, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20184] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(623), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(464), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20220] = 10, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(625), 1, + sym_quoted_template_end, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(359), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20256] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(623), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(471), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20292] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(627), 1, + sym_heredoc_identifier, + STATE(355), 1, + sym_template_if_intro, + STATE(393), 1, + sym_template_for_start, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(377), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20328] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(613), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(532), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(369), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20364] = 11, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(629), 1, + sym_quoted_template_end, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, + aux_sym_template_literal_repeat1, + STATE(486), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, sym_template_for, sym_template_if, STATE(386), 3, aux_sym__template, sym_template_interpolation, sym_template_directive, - [20743] = 10, - ACTIONS(560), 1, + [20402] = 10, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(558), 1, sym_template_interpolation_start, - ACTIONS(637), 1, + ACTIONS(623), 1, sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(471), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(378), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20438] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(631), 1, + sym_heredoc_identifier, STATE(355), 1, sym_template_if_intro, - STATE(381), 1, + STATE(393), 1, sym_template_for_start, - STATE(467), 1, - sym_template_if_end, - STATE(494), 1, + STATE(418), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20779] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(446), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(401), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20815] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(649), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20851] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(651), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, - sym_template_for, - sym_template_if, - STATE(368), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20887] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_template_directive_start, - STATE(355), 1, - sym_template_if_intro, - STATE(381), 1, - sym_template_for_start, - STATE(454), 1, - sym_template_if_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(555), 2, - sym_template_for, - sym_template_if, - STATE(393), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20923] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(653), 1, - sym_quoted_template_end, - STATE(360), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(421), 1, - aux_sym_template_literal_repeat1, - STATE(470), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(472), 2, - sym_template_for, - sym_template_if, - STATE(366), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20961] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(655), 1, - sym_heredoc_identifier, - STATE(354), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(428), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(491), 2, + STATE(459), 2, sym_template_for, sym_template_if, STATE(370), 4, @@ -29303,792 +28896,1170 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20997] = 10, - ACTIONS(560), 1, + [20474] = 10, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(595), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(633), 1, + sym_quoted_template_end, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(359), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20510] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, sym_template_interpolation_start, ACTIONS(635), 1, sym_template_directive_start, - STATE(355), 1, + STATE(351), 1, sym_template_if_intro, - STATE(381), 1, + STATE(387), 1, sym_template_for_start, - STATE(494), 1, + STATE(452), 1, aux_sym_template_literal_repeat1, - STATE(536), 1, + STATE(511), 1, sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(401), 4, + STATE(396), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [21033] = 10, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(615), 1, + [20546] = 11, + ACTIONS(589), 1, sym_template_directive_start, + ACTIONS(595), 1, + sym__template_literal_chunk, + ACTIONS(597), 1, + sym_template_interpolation_start, + ACTIONS(637), 1, + sym_quoted_template_end, + STATE(354), 1, + sym_template_if_intro, + STATE(394), 1, + sym_template_for_start, + STATE(416), 1, + aux_sym_template_literal_repeat1, + STATE(448), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(449), 2, + sym_template_for, + sym_template_if, + STATE(379), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [20584] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(639), 1, + sym_heredoc_identifier, STATE(355), 1, sym_template_if_intro, - STATE(381), 1, + STATE(393), 1, sym_template_for_start, - STATE(455), 1, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(398), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20620] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(641), 1, + sym_heredoc_identifier, + STATE(355), 1, + sym_template_if_intro, + STATE(393), 1, + sym_template_for_start, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20656] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(623), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(487), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(380), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20692] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(643), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(489), 1, sym_template_for_end, - STATE(494), 1, - aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(503), 2, sym_template_for, sym_template_if, - STATE(401), 4, + STATE(399), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [21069] = 9, - ACTIONS(606), 1, - sym_template_directive_start, - ACTIONS(657), 1, + [20728] = 10, + ACTIONS(556), 1, sym__template_literal_chunk, - ACTIONS(660), 1, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(643), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(479), 1, + sym_template_for_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(392), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20764] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(617), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(477), 1, + sym_template_for_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(374), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20800] = 10, + ACTIONS(574), 1, + sym_heredoc_identifier, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(645), 1, + sym__template_literal_chunk, + ACTIONS(648), 1, sym_template_interpolation_start, STATE(355), 1, sym_template_if_intro, - STATE(381), 1, + STATE(393), 1, sym_template_for_start, - STATE(494), 1, + STATE(418), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(555), 2, + STATE(459), 2, sym_template_for, sym_template_if, - STATE(401), 4, + STATE(395), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [21102] = 3, - ACTIONS(548), 1, - anon_sym_EQ, + [20836] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(635), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + STATE(518), 1, + sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(546), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - [21122] = 3, - ACTIONS(168), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(166), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - [21142] = 7, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(11), 1, - sym__shim, - ACTIONS(663), 1, - anon_sym_RBRACE, - STATE(501), 1, - sym_block_end, - STATE(622), 1, - sym_body, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(416), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21167] = 7, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(11), 1, - sym__shim, - ACTIONS(663), 1, - anon_sym_RBRACE, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20872] = 10, + ACTIONS(556), 1, + sym__template_literal_chunk, + ACTIONS(558), 1, + sym_template_interpolation_start, + ACTIONS(613), 1, + sym_template_directive_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, STATE(524), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(376), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20908] = 10, + ACTIONS(585), 1, + sym__template_literal_chunk, + ACTIONS(587), 1, + sym_template_interpolation_start, + ACTIONS(589), 1, + sym_template_directive_start, + ACTIONS(651), 1, + sym_heredoc_identifier, + STATE(355), 1, + sym_template_if_intro, + STATE(393), 1, + sym_template_for_start, + STATE(418), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(459), 2, + sym_template_for, + sym_template_if, + STATE(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20944] = 9, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(653), 1, + sym__template_literal_chunk, + ACTIONS(656), 1, + sym_template_interpolation_start, + STATE(351), 1, + sym_template_if_intro, + STATE(387), 1, + sym_template_for_start, + STATE(452), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(503), 2, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20977] = 3, + ACTIONS(182), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(180), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + [20997] = 3, + ACTIONS(544), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(542), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + [21017] = 7, + ACTIONS(659), 1, + anon_sym_EQ, + ACTIONS(661), 1, + anon_sym_LBRACE, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + sym_quoted_template_start, + STATE(403), 1, + sym_block_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(408), 2, + sym_string_lit, + aux_sym_block_repeat1, + [21041] = 6, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(667), 1, + anon_sym_RBRACE, + STATE(510), 1, sym_block_end, - STATE(572), 1, + STATE(628), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(416), 3, + STATE(406), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21192] = 7, - ACTIONS(665), 1, - anon_sym_EQ, - ACTIONS(667), 1, - anon_sym_LBRACE, - ACTIONS(669), 1, + [21063] = 6, + ACTIONS(7), 1, sym_identifier, + ACTIONS(667), 1, + anon_sym_RBRACE, + STATE(544), 1, + sym_block_end, + STATE(578), 1, + sym_body, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(406), 3, + sym_attribute, + sym_block, + aux_sym_body_repeat1, + [21085] = 7, + ACTIONS(39), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_if, ACTIONS(671), 1, + sym_ellipsis, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(335), 1, + sym_object_end, + STATE(568), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21108] = 4, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(675), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + STATE(412), 3, + sym_attribute, + sym_block, + aux_sym_body_repeat1, + [21125] = 7, + ACTIONS(677), 1, + anon_sym_RPAREN, + ACTIONS(679), 1, + anon_sym_COMMA, + ACTIONS(681), 1, + sym_ellipsis, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(39), 1, + sym__comma, + STATE(424), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21148] = 6, + ACTIONS(661), 1, + anon_sym_LBRACE, + ACTIONS(665), 1, sym_quoted_template_start, + ACTIONS(685), 1, + sym_identifier, STATE(404), 1, sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(409), 2, + STATE(427), 2, sym_string_lit, aux_sym_block_repeat1, - [21216] = 7, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - ACTIONS(675), 1, - sym_ellipsis, - ACTIONS(677), 1, - anon_sym_QMARK, - STATE(152), 1, - sym_object_end, - STATE(612), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21239] = 7, - ACTIONS(47), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, - anon_sym_QMARK, - ACTIONS(679), 1, - sym_ellipsis, - STATE(314), 1, - sym_object_end, - STATE(564), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21262] = 6, - ACTIONS(667), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym_quoted_template_start, - ACTIONS(681), 1, - sym_identifier, - STATE(405), 1, - sym_block_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(435), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21283] = 5, - ACTIONS(685), 1, + [21169] = 5, + ACTIONS(689), 1, anon_sym_COMMA, - STATE(77), 1, + STATE(80), 1, sym__comma, - STATE(410), 1, + STATE(409), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(683), 3, + ACTIONS(687), 3, anon_sym_RPAREN, anon_sym_RBRACK, sym_ellipsis, - [21302] = 4, - ACTIONS(690), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(688), 2, - ts_builtin_sym_end, + [21188] = 7, + ACTIONS(41), 1, anon_sym_RBRACE, - STATE(411), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21319] = 7, - ACTIONS(693), 1, - anon_sym_RPAREN, - ACTIONS(695), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - sym_ellipsis, - ACTIONS(699), 1, - anon_sym_QMARK, - STATE(30), 1, - sym__comma, - STATE(422), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21342] = 7, - ACTIONS(15), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, + ACTIONS(669), 1, anon_sym_if, - ACTIONS(677), 1, - anon_sym_QMARK, - ACTIONS(701), 1, - sym_ellipsis, - STATE(214), 1, - sym_object_end, - STATE(605), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21365] = 4, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(703), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(411), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21382] = 7, - ACTIONS(45), 1, - anon_sym_RBRACE, ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, anon_sym_QMARK, - ACTIONS(705), 1, + ACTIONS(692), 1, sym_ellipsis, - STATE(320), 1, + STATE(163), 1, sym_object_end, STATE(584), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21405] = 4, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(707), 2, - ts_builtin_sym_end, + [21211] = 7, + ACTIONS(11), 1, anon_sym_RBRACE, - STATE(411), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21422] = 7, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, + ACTIONS(669), 1, anon_sym_if, - ACTIONS(677), 1, + ACTIONS(673), 1, anon_sym_QMARK, - ACTIONS(709), 1, + ACTIONS(694), 1, sym_ellipsis, - STATE(279), 1, + STATE(211), 1, sym_object_end, - STATE(589), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21445] = 4, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(707), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(414), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21462] = 6, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(715), 1, - sym_strip_marker, - ACTIONS(717), 1, - anon_sym_else, - ACTIONS(719), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21482] = 6, - ACTIONS(63), 1, - anon_sym_RBRACK, - ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, - anon_sym_QMARK, - STATE(161), 1, - sym_tuple_end, - STATE(619), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21502] = 4, - ACTIONS(723), 1, - sym__template_literal_chunk, - STATE(423), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(721), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21518] = 6, - ACTIONS(164), 1, - anon_sym_RPAREN, - ACTIONS(725), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - sym_ellipsis, - STATE(32), 1, - sym__comma, - STATE(410), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21538] = 4, - ACTIONS(731), 1, - sym__template_literal_chunk, - STATE(423), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21554] = 6, - ACTIONS(61), 1, - anon_sym_RBRACK, - ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, - anon_sym_QMARK, - STATE(305), 1, - sym_tuple_end, STATE(583), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21574] = 2, + [21234] = 4, + ACTIONS(698), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(546), 5, + ACTIONS(696), 2, + ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_RBRACK, + STATE(412), 3, + sym_attribute, + sym_block, + aux_sym_body_repeat1, + [21251] = 7, + ACTIONS(37), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [21586] = 6, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(734), 1, - anon_sym_COMMA, - ACTIONS(736), 1, - anon_sym_RBRACK, - STATE(39), 1, - sym__comma, - STATE(466), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21606] = 6, - ACTIONS(57), 1, - anon_sym_RBRACK, ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, anon_sym_QMARK, - STATE(332), 1, - sym_tuple_end, - STATE(567), 1, + ACTIONS(701), 1, + sym_ellipsis, + STATE(253), 1, + sym_object_end, + STATE(626), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21626] = 4, - ACTIONS(738), 1, + [21274] = 7, + ACTIONS(43), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_if, + ACTIONS(673), 1, + anon_sym_QMARK, + ACTIONS(703), 1, + sym_ellipsis, + STATE(322), 1, + sym_object_end, + STATE(582), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21297] = 6, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(707), 1, + anon_sym_RBRACK, + STATE(37), 1, + sym__comma, + STATE(478), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21317] = 4, + ACTIONS(711), 1, sym__template_literal_chunk, - STATE(436), 1, + STATE(431), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(721), 3, + ACTIONS(709), 3, + sym_quoted_template_end, sym_template_interpolation_start, sym_template_directive_start, - sym_heredoc_identifier, - [21642] = 6, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(717), 1, - anon_sym_else, - ACTIONS(740), 1, - sym_strip_marker, - ACTIONS(742), 1, - anon_sym_endif, + [21333] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21662] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(166), 5, + ACTIONS(542), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [21674] = 6, - ACTIONS(711), 1, - anon_sym_for, + [21345] = 4, ACTIONS(713), 1, + sym__template_literal_chunk, + STATE(420), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(709), 3, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21361] = 6, + ACTIONS(102), 1, + anon_sym_RBRACK, + ACTIONS(669), 1, anon_sym_if, - ACTIONS(717), 1, - anon_sym_else, - ACTIONS(744), 1, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(293), 1, + sym_tuple_end, + STATE(561), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21381] = 4, + ACTIONS(715), 1, + sym__template_literal_chunk, + STATE(420), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(718), 3, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21397] = 6, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(724), 1, sym_strip_marker, - ACTIONS(746), 1, + ACTIONS(726), 1, + anon_sym_else, + ACTIONS(728), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21694] = 6, - ACTIONS(65), 1, + [21417] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(180), 5, + anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(673), 1, anon_sym_if, - ACTIONS(677), 1, + sym_ellipsis, anon_sym_QMARK, - STATE(276), 1, + [21429] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(687), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_ellipsis, + [21443] = 6, + ACTIONS(198), 1, + anon_sym_RPAREN, + ACTIONS(730), 1, + anon_sym_COMMA, + ACTIONS(732), 1, + sym_ellipsis, + STATE(32), 1, + sym__comma, + STATE(409), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21463] = 6, + ACTIONS(53), 1, + anon_sym_RBRACK, + ACTIONS(669), 1, + anon_sym_if, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(257), 1, sym_tuple_end, + STATE(585), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21483] = 6, + ACTIONS(45), 1, + anon_sym_RBRACK, + ACTIONS(669), 1, + anon_sym_if, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(307), 1, + sym_tuple_end, + STATE(606), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21503] = 5, + ACTIONS(734), 1, + anon_sym_LBRACE, + ACTIONS(736), 1, + sym_identifier, + ACTIONS(739), 1, + sym_quoted_template_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(427), 2, + sym_string_lit, + aux_sym_block_repeat1, + [21521] = 6, + ACTIONS(47), 1, + anon_sym_RBRACK, + ACTIONS(669), 1, + anon_sym_if, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(189), 1, + sym_tuple_end, + STATE(596), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21541] = 6, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(726), 1, + anon_sym_else, + ACTIONS(742), 1, + sym_strip_marker, + ACTIONS(744), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21561] = 6, + ACTIONS(59), 1, + anon_sym_RBRACK, + ACTIONS(669), 1, + anon_sym_if, + ACTIONS(673), 1, + anon_sym_QMARK, + STATE(167), 1, + sym_tuple_end, + STATE(593), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21581] = 4, + ACTIONS(746), 1, + sym__template_literal_chunk, + STATE(431), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(718), 3, + sym_quoted_template_end, + sym_template_interpolation_start, + sym_template_directive_start, + [21597] = 6, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(726), 1, + anon_sym_else, + ACTIONS(749), 1, + sym_strip_marker, + ACTIONS(751), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21617] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(753), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21628] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(755), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21639] = 5, + ACTIONS(757), 1, + sym_quoted_template_end, + ACTIONS(759), 1, + sym__template_literal_chunk, + STATE(501), 1, + aux_sym_template_literal_repeat1, + STATE(662), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21656] = 5, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(765), 1, + anon_sym_else, + ACTIONS(767), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21673] = 5, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(769), 1, + sym_strip_marker, + ACTIONS(771), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21690] = 5, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(765), 1, + anon_sym_else, + ACTIONS(773), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21707] = 5, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(775), 1, + sym_strip_marker, + ACTIONS(777), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21724] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(779), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21735] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21746] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(783), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [21759] = 3, + ACTIONS(785), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21772] = 3, + ACTIONS(789), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21785] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(755), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21796] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(791), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21807] = 5, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(744), 1, + anon_sym_endif, + ACTIONS(793), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21824] = 3, + ACTIONS(795), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21837] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(797), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21848] = 5, + ACTIONS(43), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_if, + STATE(326), 1, + sym_object_end, + STATE(574), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21865] = 3, + ACTIONS(799), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21878] = 4, + ACTIONS(801), 1, + sym__template_literal_chunk, + STATE(457), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(709), 2, + sym_template_interpolation_start, + sym_template_directive_start, + [21893] = 5, + ACTIONS(11), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_if, + STATE(206), 1, + sym_object_end, STATE(590), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21714] = 6, - ACTIONS(59), 1, - anon_sym_RBRACK, - ACTIONS(673), 1, - anon_sym_if, - ACTIONS(677), 1, - anon_sym_QMARK, - STATE(207), 1, - sym_tuple_end, - STATE(621), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21734] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(683), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_ellipsis, - [21748] = 5, - ACTIONS(748), 1, - anon_sym_LBRACE, - ACTIONS(750), 1, - sym_identifier, - ACTIONS(753), 1, - sym_quoted_template_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(435), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21766] = 4, - ACTIONS(756), 1, - sym__template_literal_chunk, - STATE(436), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 3, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21782] = 5, - ACTIONS(711), 1, + [21910] = 5, + ACTIONS(720), 1, anon_sym_for, - ACTIONS(713), 1, + ACTIONS(722), 1, anon_sym_if, - ACTIONS(759), 1, - sym_strip_marker, - ACTIONS(761), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21799] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(763), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21810] = 5, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(769), 1, - anon_sym_else, - ACTIONS(771), 1, + ACTIONS(728), 1, anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21827] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(773), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21838] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(763), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21849] = 5, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(719), 1, - anon_sym_endif, - ACTIONS(775), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21866] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(777), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21877] = 3, - ACTIONS(779), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(781), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21890] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(783), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21901] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(785), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21912] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(787), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21923] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(789), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21934] = 5, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(742), 1, - anon_sym_endif, - ACTIONS(791), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21951] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(793), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21962] = 5, - ACTIONS(795), 1, - sym_quoted_template_end, - ACTIONS(797), 1, - sym__template_literal_chunk, - STATE(495), 1, - aux_sym_template_literal_repeat1, - STATE(636), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21979] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(793), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21990] = 5, - ACTIONS(47), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - STATE(327), 1, - sym_object_end, - STATE(563), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22007] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(799), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22018] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(773), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22029] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(801), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22040] = 3, ACTIONS(803), 1, - sym_quoted_template_end, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(781), 3, + [21927] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(805), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, + [21938] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21949] = 4, + ACTIONS(809), 1, + sym__template_literal_chunk, + STATE(457), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(718), 2, + sym_template_interpolation_start, + sym_template_directive_start, + [21964] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(753), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21975] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(797), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21986] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(791), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21997] = 5, + ACTIONS(720), 1, + anon_sym_for, + ACTIONS(722), 1, + anon_sym_if, + ACTIONS(751), 1, + anon_sym_endif, + ACTIONS(812), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22014] = 5, + ACTIONS(37), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, + anon_sym_if, + STATE(252), 1, + sym_object_end, + STATE(565), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22031] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(814), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22042] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(816), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, [22053] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(799), 4, + ACTIONS(818), 4, sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, @@ -30097,29 +30068,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(801), 4, - sym_quoted_template_end, + ACTIONS(781), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, + sym_heredoc_identifier, [22075] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, ACTIONS(805), 4, - sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, + sym_heredoc_identifier, [22086] = 5, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, + ACTIONS(39), 1, + anon_sym_RBRACE, + ACTIONS(669), 1, anon_sym_if, - ACTIONS(769), 1, - anon_sym_else, - ACTIONS(807), 1, - anon_sym_endif, + STATE(336), 1, + sym_object_end, + STATE(571), 1, + sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30127,185 +30098,141 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(809), 4, + ACTIONS(820), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22114] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(820), 4, sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22114] = 5, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(746), 1, - anon_sym_endif, - ACTIONS(811), 1, - sym_strip_marker, + [22125] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22131] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(813), 3, - ts_builtin_sym_end, + ACTIONS(818), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22136] = 5, + ACTIONS(41), 1, anon_sym_RBRACE, - sym_identifier, - [22144] = 2, + ACTIONS(669), 1, + anon_sym_if, + STATE(162), 1, + sym_object_end, + STATE(581), 1, + sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(789), 4, + [22153] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22164] = 5, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(765), 1, + anon_sym_else, + ACTIONS(822), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22181] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 4, sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22155] = 5, - ACTIONS(200), 1, + [22192] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22203] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(828), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22214] = 5, + ACTIONS(196), 1, anon_sym_RBRACK, - ACTIONS(815), 1, + ACTIONS(830), 1, anon_sym_COMMA, - STATE(41), 1, + STATE(36), 1, sym__comma, - STATE(410), 1, + STATE(409), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22172] = 2, + [22231] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(817), 4, + ACTIONS(828), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [22183] = 5, - ACTIONS(45), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - STATE(324), 1, - sym_object_end, - STATE(558), 1, - sym_for_cond, + [22242] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22200] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(787), 4, + ACTIONS(832), 4, sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22211] = 3, - ACTIONS(819), 1, - sym_quoted_template_end, + [22253] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(781), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22224] = 3, - ACTIONS(821), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(781), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22237] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(823), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22248] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(785), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22259] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(825), 4, + ACTIONS(779), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [22270] = 5, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - STATE(277), 1, - sym_object_end, - STATE(588), 1, - sym_for_cond, + [22264] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22287] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(827), 4, + ACTIONS(832), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [22298] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(829), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22309] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(809), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22320] = 4, - ACTIONS(831), 1, - sym__template_literal_chunk, - STATE(479), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [22335] = 5, - ACTIONS(711), 1, + [22275] = 5, + ACTIONS(720), 1, anon_sym_for, - ACTIONS(713), 1, + ACTIONS(722), 1, anon_sym_if, ACTIONS(834), 1, sym_strip_marker, @@ -30314,166 +30241,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22352] = 5, - ACTIONS(711), 1, - anon_sym_for, - ACTIONS(713), 1, - anon_sym_if, - ACTIONS(838), 1, - sym_strip_marker, + [22292] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(838), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22303] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(838), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22314] = 3, ACTIONS(840), 1, - anon_sym_endfor, + sym_quoted_template_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22369] = 3, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22327] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(814), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22338] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(816), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22349] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22360] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22371] = 4, + ACTIONS(140), 1, + sym_strip_marker, + ACTIONS(142), 1, + sym_template_interpolation_end, ACTIONS(842), 1, - sym_quoted_template_end, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(781), 3, + [22385] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(838), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22382] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(783), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22393] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(827), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22404] = 5, - ACTIONS(15), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - STATE(202), 1, - sym_object_end, - STATE(580), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22421] = 5, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(769), 1, - anon_sym_else, + [22395] = 4, ACTIONS(844), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22438] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(777), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22449] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(829), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22460] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(825), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22471] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(817), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22482] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(823), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22493] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(805), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22504] = 5, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(673), 1, - anon_sym_if, - STATE(150), 1, - sym_object_end, - STATE(611), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22521] = 4, + anon_sym_QMARK, ACTIONS(846), 1, - sym__template_literal_chunk, - STATE(479), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(721), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [22536] = 4, - ACTIONS(721), 1, - sym_quoted_template_end, + sym_strip_marker, ACTIONS(848), 1, - sym__template_literal_chunk, - STATE(525), 1, - aux_sym_template_literal_repeat1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22550] = 2, + [22409] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 3, - sym_quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [22560] = 2, + ACTIONS(542), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + [22419] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30481,44 +30349,43 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22570] = 4, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(852), 1, - anon_sym_endfor, + [22429] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22584] = 4, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(854), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22598] = 3, - ACTIONS(699), 1, + ACTIONS(354), 3, + sym_quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [22439] = 4, + ACTIONS(844), 1, anon_sym_QMARK, + ACTIONS(852), 1, + sym_strip_marker, + ACTIONS(854), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(856), 2, - anon_sym_EQ, - anon_sym_COLON, - [22610] = 2, + [22453] = 4, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(856), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22467] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, ACTIONS(858), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22620] = 2, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22477] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30526,16 +30393,44 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22630] = 2, + [22487] = 4, + ACTIONS(709), 1, + sym_quoted_template_end, + ACTIONS(862), 1, + sym__template_literal_chunk, + STATE(520), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(862), 3, + [22501] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(180), 3, + sym_template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + [22511] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(797), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22640] = 4, + [22521] = 4, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, ACTIONS(864), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22535] = 4, + ACTIONS(844), 1, anon_sym_QMARK, ACTIONS(866), 1, sym_strip_marker, @@ -30544,291 +30439,209 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22654] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, + [22549] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(870), 2, + ACTIONS(870), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22559] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(872), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22569] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(874), 3, + ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_RBRACK, - [22666] = 4, - ACTIONS(864), 1, + sym_identifier, + [22579] = 4, + ACTIONS(844), 1, anon_sym_QMARK, - ACTIONS(872), 1, + ACTIONS(876), 1, sym_strip_marker, - ACTIONS(874), 1, + ACTIONS(878), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22680] = 2, + [22593] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(876), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22690] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 3, - sym_quoted_template_start, - anon_sym_LBRACE, + ACTIONS(880), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, sym_identifier, - [22700] = 2, + [22603] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(878), 3, + ACTIONS(828), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22710] = 4, - ACTIONS(765), 1, + [22613] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22623] = 4, + ACTIONS(761), 1, anon_sym_for, - ACTIONS(767), 1, + ACTIONS(763), 1, anon_sym_if, - ACTIONS(771), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22724] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(805), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22734] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(829), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22744] = 4, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(880), 1, + ACTIONS(882), 1, anon_sym_endfor, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22758] = 2, + [22637] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(546), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [22768] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(817), 3, + ACTIONS(755), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22778] = 2, + [22647] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(882), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22788] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(763), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22798] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(777), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22808] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(783), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22818] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(546), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - [22828] = 4, - ACTIONS(138), 1, - sym_strip_marker, - ACTIONS(140), 1, - sym_template_interpolation_end, - ACTIONS(884), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22842] = 4, - ACTIONS(864), 1, - anon_sym_QMARK, - ACTIONS(886), 1, - sym_strip_marker, - ACTIONS(888), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22856] = 4, - ACTIONS(884), 1, - anon_sym_QMARK, - ACTIONS(890), 1, - sym_strip_marker, - ACTIONS(892), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22870] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(894), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, + ACTIONS(346), 3, + sym_quoted_template_start, + anon_sym_LBRACE, sym_identifier, - [22880] = 4, - ACTIONS(729), 1, - sym_quoted_template_end, - ACTIONS(896), 1, + [22657] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(884), 2, + anon_sym_EQ, + anon_sym_COLON, + [22669] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(886), 3, sym__template_literal_chunk, - STATE(525), 1, + sym_template_interpolation_start, + sym_template_directive_start, + [22679] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22689] = 4, + ACTIONS(842), 1, + anon_sym_QMARK, + ACTIONS(888), 1, + sym_strip_marker, + ACTIONS(890), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22703] = 4, + ACTIONS(718), 1, + sym_quoted_template_end, + ACTIONS(892), 1, + sym__template_literal_chunk, + STATE(520), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22894] = 4, - ACTIONS(765), 1, + [22717] = 4, + ACTIONS(720), 1, anon_sym_for, - ACTIONS(767), 1, + ACTIONS(722), 1, anon_sym_if, - ACTIONS(844), 1, + ACTIONS(895), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22731] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(897), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22741] = 4, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(822), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22908] = 2, + [22755] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(785), 3, + ACTIONS(814), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22918] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(787), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22928] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(899), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22938] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(789), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22948] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(793), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22958] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(166), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - [22968] = 4, - ACTIONS(711), 1, + [22765] = 4, + ACTIONS(761), 1, anon_sym_for, - ACTIONS(713), 1, + ACTIONS(763), 1, anon_sym_if, - ACTIONS(901), 1, - sym_strip_marker, + ACTIONS(767), 1, + anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22982] = 2, + [22779] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(166), 3, - sym_template_directive_end, + ACTIONS(832), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22789] = 4, + ACTIONS(844), 1, anon_sym_QMARK, + ACTIONS(899), 1, sym_strip_marker, - [22992] = 2, + ACTIONS(901), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(799), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23002] = 2, + [22803] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(773), 3, + ACTIONS(779), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23012] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(801), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23022] = 4, - ACTIONS(884), 1, + [22813] = 4, + ACTIONS(842), 1, anon_sym_QMARK, ACTIONS(903), 1, sym_strip_marker, @@ -30837,69 +30650,186 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23036] = 2, + [22827] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22837] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, ACTIONS(907), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22847] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(818), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22857] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(542), 3, + sym_template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + [22867] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(820), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22877] = 4, + ACTIONS(148), 1, + sym_strip_marker, + ACTIONS(150), 1, + sym_template_interpolation_end, + ACTIONS(842), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22891] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(805), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22901] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22911] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(816), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22921] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(909), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22931] = 4, + ACTIONS(130), 1, + sym_strip_marker, + ACTIONS(134), 1, + sym_template_interpolation_end, + ACTIONS(842), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22945] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(791), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22955] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(753), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22965] = 4, + ACTIONS(761), 1, + anon_sym_for, + ACTIONS(763), 1, + anon_sym_if, + ACTIONS(773), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22979] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(911), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [23046] = 4, - ACTIONS(864), 1, + [22989] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(913), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [23001] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(180), 3, + sym_template_directive_end, anon_sym_QMARK, - ACTIONS(909), 1, sym_strip_marker, - ACTIONS(911), 1, + [23011] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(915), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23021] = 4, + ACTIONS(844), 1, + anon_sym_QMARK, + ACTIONS(917), 1, + sym_strip_marker, + ACTIONS(919), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23060] = 4, - ACTIONS(884), 1, + [23035] = 4, + ACTIONS(842), 1, anon_sym_QMARK, - ACTIONS(913), 1, + ACTIONS(921), 1, sym_strip_marker, - ACTIONS(915), 1, + ACTIONS(923), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23074] = 2, + [23049] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(917), 3, + ACTIONS(925), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23084] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(919), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23094] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(921), 3, - sym__shim, - anon_sym_RBRACE, - sym_identifier, - [23104] = 4, - ACTIONS(864), 1, - anon_sym_QMARK, - ACTIONS(923), 1, - sym_strip_marker, - ACTIONS(925), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23118] = 2, + [23059] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30907,199 +30837,102 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23128] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(825), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23138] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(827), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23148] = 4, - ACTIONS(156), 1, - sym_strip_marker, - ACTIONS(158), 1, - sym_template_interpolation_end, - ACTIONS(884), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23162] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(809), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23172] = 4, - ACTIONS(765), 1, + [23069] = 3, + ACTIONS(761), 1, anon_sym_for, - ACTIONS(767), 1, + ACTIONS(763), 1, anon_sym_if, - ACTIONS(807), 1, - anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23186] = 4, - ACTIONS(132), 1, - sym_strip_marker, - ACTIONS(136), 1, - sym_template_interpolation_end, - ACTIONS(884), 1, + [23080] = 3, + ACTIONS(683), 1, anon_sym_QMARK, + ACTIONS(929), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23200] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(929), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23210] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(931), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23220] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(823), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23230] = 4, - ACTIONS(864), 1, - anon_sym_QMARK, + [23091] = 3, + ACTIONS(931), 1, + sym_identifier, ACTIONS(933), 1, - sym_strip_marker, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23102] = 3, ACTIONS(935), 1, + sym_strip_marker, + ACTIONS(937), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23244] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(937), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23255] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(326), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23266] = 3, + [23113] = 3, ACTIONS(939), 1, - sym_identifier, + sym_strip_marker, ACTIONS(941), 1, - aux_sym_legacy_index_token1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23277] = 3, - ACTIONS(765), 1, - anon_sym_for, - ACTIONS(767), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23288] = 3, + [23124] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, ACTIONS(943), 1, - sym_identifier, - ACTIONS(945), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23299] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(947), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23310] = 3, - ACTIONS(47), 1, - anon_sym_RBRACE, - STATE(342), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23321] = 3, - ACTIONS(47), 1, - anon_sym_RBRACE, - STATE(327), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23332] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(949), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23343] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(951), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23354] = 3, - ACTIONS(57), 1, - anon_sym_RBRACK, - STATE(287), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23365] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(953), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23376] = 3, - ACTIONS(59), 1, + [23135] = 3, + ACTIONS(37), 1, + anon_sym_RBRACE, + STATE(261), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23146] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(945), 1, anon_sym_RBRACK, - STATE(200), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23157] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(947), 2, + anon_sym_RBRACE, + sym_identifier, + [23166] = 3, + ACTIONS(102), 1, + anon_sym_RBRACK, + STATE(332), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23387] = 3, + [23177] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(949), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23188] = 3, + ACTIONS(951), 1, + sym_strip_marker, + ACTIONS(953), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23199] = 3, ACTIONS(955), 1, sym_strip_marker, ACTIONS(957), 1, @@ -31107,55 +30940,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23398] = 3, + [23210] = 3, + ACTIONS(37), 1, + anon_sym_RBRACE, + STATE(251), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23221] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, ACTIONS(959), 1, - sym_strip_marker, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23232] = 3, + ACTIONS(11), 1, + anon_sym_RBRACE, + STATE(185), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23243] = 3, + ACTIONS(39), 1, + anon_sym_RBRACE, + STATE(336), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23254] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23265] = 3, + ACTIONS(963), 1, + sym_strip_marker, + ACTIONS(965), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23409] = 3, - ACTIONS(663), 1, + [23276] = 3, + ACTIONS(39), 1, anon_sym_RBRACE, - STATE(539), 1, - sym_block_end, + STATE(337), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23420] = 3, - ACTIONS(61), 1, - anon_sym_RBRACK, - STATE(296), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23431] = 3, - ACTIONS(963), 1, - anon_sym_RPAREN, - STATE(330), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23442] = 3, - ACTIONS(57), 1, - anon_sym_RBRACK, - STATE(322), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23453] = 3, - ACTIONS(965), 1, - anon_sym_RPAREN, - STATE(301), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23464] = 3, + [23287] = 3, ACTIONS(967), 1, sym_strip_marker, ACTIONS(969), 1, @@ -31163,191 +31004,231 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23475] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, + [23298] = 3, ACTIONS(971), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23486] = 3, + sym_strip_marker, ACTIONS(973), 1, - sym_strip_marker, - ACTIONS(975), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23497] = 3, - ACTIONS(15), 1, + [23309] = 3, + ACTIONS(43), 1, anon_sym_RBRACE, - STATE(185), 1, + STATE(328), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23508] = 3, - ACTIONS(977), 1, - sym_strip_marker, - ACTIONS(979), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23519] = 3, - ACTIONS(47), 1, - anon_sym_RBRACE, - STATE(295), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23530] = 3, - ACTIONS(61), 1, - anon_sym_RBRACK, - STATE(313), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23541] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(324), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23552] = 3, - ACTIONS(981), 1, - anon_sym_RPAREN, - STATE(210), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23563] = 3, - ACTIONS(699), 1, + [23320] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(983), 1, + ACTIONS(975), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23574] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(985), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23585] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(281), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23596] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(277), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23607] = 3, - ACTIONS(65), 1, - anon_sym_RBRACK, - STATE(278), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23618] = 3, - ACTIONS(987), 1, + [23331] = 3, + ACTIONS(977), 1, anon_sym_COMMA, - ACTIONS(989), 1, + ACTIONS(979), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23629] = 3, - ACTIONS(699), 1, + [23342] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(991), 1, + ACTIONS(981), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23640] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(993), 1, - anon_sym_RPAREN, + [23353] = 3, + ACTIONS(667), 1, + anon_sym_RBRACE, + STATE(522), 1, + sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23651] = 3, - ACTIONS(995), 1, + [23364] = 3, + ACTIONS(983), 1, sym_identifier, - ACTIONS(997), 1, + ACTIONS(985), 1, aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23662] = 3, - ACTIONS(699), 1, + [23375] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(999), 1, + ACTIONS(987), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23673] = 3, - ACTIONS(63), 1, + [23386] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(157), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23397] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(326), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23408] = 3, + ACTIONS(11), 1, + anon_sym_RBRACE, + STATE(206), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23419] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(162), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23430] = 3, + ACTIONS(53), 1, anon_sym_RBRACK, - STATE(173), 1, + STATE(254), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23684] = 3, - ACTIONS(1001), 1, + [23441] = 3, + ACTIONS(53), 1, + anon_sym_RBRACK, + STATE(262), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23452] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(989), 1, anon_sym_RPAREN, - STATE(274), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23463] = 3, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23474] = 3, + ACTIONS(39), 1, + anon_sym_RBRACE, + STATE(282), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23485] = 3, + ACTIONS(11), 1, + anon_sym_RBRACE, + STATE(207), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23496] = 3, + ACTIONS(102), 1, + anon_sym_RBRACK, + STATE(316), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23507] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(995), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23518] = 3, + ACTIONS(59), 1, + anon_sym_RBRACK, + STATE(164), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23529] = 3, + ACTIONS(997), 1, + anon_sym_RPAREN, + STATE(259), 1, sym__function_call_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23695] = 3, - ACTIONS(1003), 1, - anon_sym_COMMA, - ACTIONS(1005), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23706] = 3, - ACTIONS(65), 1, - anon_sym_RBRACK, - STATE(272), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23717] = 3, - ACTIONS(699), 1, + [23540] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(1007), 1, + ACTIONS(999), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23728] = 3, + [23551] = 3, + ACTIONS(47), 1, + anon_sym_RBRACK, + STATE(191), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23562] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1001), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23573] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1003), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23584] = 3, + ACTIONS(1005), 1, + anon_sym_RPAREN, + STATE(325), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23595] = 3, + ACTIONS(1007), 1, + anon_sym_RPAREN, + STATE(202), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23606] = 3, ACTIONS(1009), 1, sym_strip_marker, ACTIONS(1011), 1, @@ -31355,183 +31236,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23739] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, + [23617] = 3, ACTIONS(1013), 1, + sym_strip_marker, + ACTIONS(1015), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23628] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1017), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23750] = 3, - ACTIONS(699), 1, + [23639] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(1015), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23761] = 3, - ACTIONS(1017), 1, - sym_strip_marker, ACTIONS(1019), 1, - sym_template_directive_end, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23772] = 3, - ACTIONS(15), 1, - anon_sym_RBRACE, - STATE(202), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23783] = 3, + [23650] = 3, ACTIONS(1021), 1, - sym_strip_marker, + anon_sym_COMMA, ACTIONS(1023), 1, - sym_template_directive_end, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23794] = 3, - ACTIONS(1025), 1, - sym_strip_marker, - ACTIONS(1027), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23805] = 3, - ACTIONS(1029), 1, - sym_strip_marker, - ACTIONS(1031), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23816] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(266), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23827] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(171), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23838] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(149), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23849] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(150), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23860] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(1033), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23871] = 3, - ACTIONS(1035), 1, - sym_strip_marker, - ACTIONS(1037), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23882] = 3, - ACTIONS(15), 1, - anon_sym_RBRACE, - STATE(203), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23893] = 3, - ACTIONS(1039), 1, - sym_strip_marker, - ACTIONS(1041), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23904] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(1043), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23915] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(1045), 1, + [23661] = 3, + ACTIONS(45), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23926] = 3, - ACTIONS(63), 1, - anon_sym_RBRACK, - STATE(157), 1, + STATE(315), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23937] = 3, - ACTIONS(699), 1, + [23672] = 3, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(1047), 1, + ACTIONS(1025), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23683] = 3, + ACTIONS(1027), 1, + sym_strip_marker, + ACTIONS(1029), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23694] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1031), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23948] = 3, - ACTIONS(59), 1, + [23705] = 3, + ACTIONS(1033), 1, + sym_strip_marker, + ACTIONS(1035), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23716] = 3, + ACTIONS(45), 1, + anon_sym_RBRACK, + STATE(297), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23727] = 3, + ACTIONS(1037), 1, + sym_identifier, + ACTIONS(1039), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23738] = 3, + ACTIONS(47), 1, anon_sym_RBRACK, STATE(195), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23959] = 3, - ACTIONS(663), 1, - anon_sym_RBRACE, - STATE(524), 1, - sym_block_end, + [23749] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1041), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23970] = 3, - ACTIONS(699), 1, + [23760] = 3, + ACTIONS(1043), 1, + anon_sym_RPAREN, + STATE(142), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23771] = 3, + ACTIONS(1045), 1, + anon_sym_COMMA, + ACTIONS(1047), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23782] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(173), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23793] = 3, + ACTIONS(683), 1, anon_sym_QMARK, ACTIONS(1049), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23981] = 3, + [23804] = 3, ACTIONS(1051), 1, sym_identifier, ACTIONS(1053), 1, @@ -31539,354 +31380,362 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23992] = 3, - ACTIONS(1055), 1, - anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24003] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(308), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24014] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(1059), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24025] = 3, - ACTIONS(699), 1, - anon_sym_QMARK, - ACTIONS(1061), 1, + [23815] = 3, + ACTIONS(59), 1, anon_sym_RBRACK, + STATE(172), 1, + sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24036] = 3, - ACTIONS(1063), 1, - sym_strip_marker, - ACTIONS(1065), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24047] = 3, - ACTIONS(1067), 1, - sym_strip_marker, - ACTIONS(1069), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24058] = 3, - ACTIONS(1071), 1, + [23826] = 3, + ACTIONS(1055), 1, anon_sym_RPAREN, - STATE(170), 1, + STATE(304), 1, sym__function_call_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24069] = 3, - ACTIONS(699), 1, + [23837] = 3, + ACTIONS(683), 1, anon_sym_QMARK, + ACTIONS(1057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23848] = 3, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(1059), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23859] = 3, + ACTIONS(1061), 1, + sym_strip_marker, + ACTIONS(1063), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23870] = 3, + ACTIONS(1065), 1, + sym_strip_marker, + ACTIONS(1067), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23881] = 3, + ACTIONS(37), 1, + anon_sym_RBRACE, + STATE(252), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23892] = 3, + ACTIONS(1069), 1, + sym_strip_marker, + ACTIONS(1071), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23903] = 3, + ACTIONS(667), 1, + anon_sym_RBRACE, + STATE(544), 1, + sym_block_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23914] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(299), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23925] = 2, ACTIONS(1073), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23933] = 2, + ACTIONS(178), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24080] = 3, - ACTIONS(1075), 1, - sym_identifier, - ACTIONS(1077), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24091] = 2, - ACTIONS(1041), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24099] = 2, - ACTIONS(888), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24107] = 2, - ACTIONS(1079), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24115] = 2, - ACTIONS(1065), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24123] = 2, - ACTIONS(1069), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24131] = 2, - ACTIONS(1081), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24139] = 2, - ACTIONS(1083), 1, + [23941] = 2, + ACTIONS(890), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24147] = 2, - ACTIONS(979), 1, - sym_template_directive_end, + [23949] = 2, + ACTIONS(1075), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24155] = 2, - ACTIONS(194), 1, + [23957] = 2, + ACTIONS(1077), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23965] = 2, + ACTIONS(198), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24163] = 2, + [23973] = 2, + ACTIONS(1079), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23981] = 2, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23989] = 2, + ACTIONS(1083), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23997] = 2, + ACTIONS(973), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24005] = 2, + ACTIONS(1035), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24013] = 2, + ACTIONS(1029), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24021] = 2, ACTIONS(1085), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24171] = 2, + [24029] = 2, ACTIONS(1087), 1, - sym_identifier, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24179] = 2, + [24037] = 2, + ACTIONS(937), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24045] = 2, ACTIONS(1089), 1, - sym_template_directive_end, + sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24187] = 2, + [24053] = 2, ACTIONS(1091), 1, - anon_sym_in, + sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24195] = 2, + [24061] = 2, ACTIONS(1093), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24203] = 2, - ACTIONS(1095), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24211] = 2, - ACTIONS(1097), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24219] = 2, - ACTIONS(1099), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24227] = 2, - ACTIONS(1101), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24235] = 2, - ACTIONS(1103), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24243] = 2, - ACTIONS(1105), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24251] = 2, - ACTIONS(1037), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24259] = 2, - ACTIONS(1107), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24267] = 2, - ACTIONS(1109), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24275] = 2, - ACTIONS(1111), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24283] = 2, - ACTIONS(1113), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24291] = 2, - ACTIONS(1115), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24299] = 2, - ACTIONS(164), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24307] = 2, - ACTIONS(874), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24315] = 2, - ACTIONS(1117), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24323] = 2, + [24069] = 2, ACTIONS(905), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24331] = 2, - ACTIONS(1119), 1, - sym_identifier, + [24077] = 2, + ACTIONS(1095), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24339] = 2, - ACTIONS(915), 1, + [24085] = 2, + ACTIONS(1097), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24093] = 2, + ACTIONS(868), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24101] = 2, + ACTIONS(1099), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24109] = 2, + ACTIONS(901), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24117] = 2, + ACTIONS(1101), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24125] = 2, + ACTIONS(1103), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24347] = 2, - ACTIONS(1121), 1, + [24133] = 2, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24141] = 2, + ACTIONS(941), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24355] = 2, - ACTIONS(1123), 1, + [24149] = 2, + ACTIONS(854), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24157] = 2, + ACTIONS(1107), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24165] = 2, + ACTIONS(1109), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24173] = 2, + ACTIONS(1111), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24181] = 2, + ACTIONS(1113), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24189] = 2, + ACTIONS(1115), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24363] = 2, - ACTIONS(1125), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24371] = 2, - ACTIONS(911), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24379] = 2, - ACTIONS(975), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24387] = 2, - ACTIONS(925), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24395] = 2, - ACTIONS(1127), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24403] = 2, + [24197] = 2, ACTIONS(969), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24411] = 2, - ACTIONS(1129), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24419] = 2, - ACTIONS(1131), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24427] = 2, - ACTIONS(1133), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24435] = 2, - ACTIONS(1135), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24443] = 2, - ACTIONS(1137), 1, + [24205] = 2, + ACTIONS(1117), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24451] = 2, - ACTIONS(892), 1, + [24213] = 2, + ACTIONS(965), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24221] = 2, + ACTIONS(1119), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, + [24229] = 2, + ACTIONS(1121), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24237] = 2, + ACTIONS(1123), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24245] = 2, + ACTIONS(923), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24253] = 2, + ACTIONS(1125), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24261] = 2, + ACTIONS(1127), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24269] = 2, + ACTIONS(848), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24277] = 2, + ACTIONS(1129), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24285] = 2, + ACTIONS(1131), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, }; static const uint32_t ts_small_parse_table_map[] = { @@ -31896,678 +31745,674 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 321, [SMALL_STATE(6)] = 428, [SMALL_STATE(7)] = 535, - [SMALL_STATE(8)] = 637, - [SMALL_STATE(9)] = 739, - [SMALL_STATE(10)] = 843, - [SMALL_STATE(11)] = 947, + [SMALL_STATE(8)] = 639, + [SMALL_STATE(9)] = 743, + [SMALL_STATE(10)] = 845, + [SMALL_STATE(11)] = 949, [SMALL_STATE(12)] = 1051, [SMALL_STATE(13)] = 1155, - [SMALL_STATE(14)] = 1259, + [SMALL_STATE(14)] = 1257, [SMALL_STATE(15)] = 1361, - [SMALL_STATE(16)] = 1462, - [SMALL_STATE(17)] = 1560, - [SMALL_STATE(18)] = 1658, - [SMALL_STATE(19)] = 1756, - [SMALL_STATE(20)] = 1854, - [SMALL_STATE(21)] = 1952, - [SMALL_STATE(22)] = 2047, - [SMALL_STATE(23)] = 2142, - [SMALL_STATE(24)] = 2237, - [SMALL_STATE(25)] = 2332, - [SMALL_STATE(26)] = 2427, - [SMALL_STATE(27)] = 2522, - [SMALL_STATE(28)] = 2617, - [SMALL_STATE(29)] = 2712, - [SMALL_STATE(30)] = 2766, - [SMALL_STATE(31)] = 2858, - [SMALL_STATE(32)] = 2936, - [SMALL_STATE(33)] = 3028, - [SMALL_STATE(34)] = 3086, - [SMALL_STATE(35)] = 3140, - [SMALL_STATE(36)] = 3200, - [SMALL_STATE(37)] = 3264, - [SMALL_STATE(38)] = 3330, - [SMALL_STATE(39)] = 3398, - [SMALL_STATE(40)] = 3490, - [SMALL_STATE(41)] = 3582, - [SMALL_STATE(42)] = 3674, - [SMALL_STATE(43)] = 3763, - [SMALL_STATE(44)] = 3852, - [SMALL_STATE(45)] = 3941, - [SMALL_STATE(46)] = 4030, - [SMALL_STATE(47)] = 4119, - [SMALL_STATE(48)] = 4208, - [SMALL_STATE(49)] = 4297, - [SMALL_STATE(50)] = 4386, - [SMALL_STATE(51)] = 4475, - [SMALL_STATE(52)] = 4564, - [SMALL_STATE(53)] = 4653, - [SMALL_STATE(54)] = 4742, - [SMALL_STATE(55)] = 4831, - [SMALL_STATE(56)] = 4920, - [SMALL_STATE(57)] = 5009, - [SMALL_STATE(58)] = 5098, - [SMALL_STATE(59)] = 5187, - [SMALL_STATE(60)] = 5276, - [SMALL_STATE(61)] = 5365, - [SMALL_STATE(62)] = 5454, - [SMALL_STATE(63)] = 5543, - [SMALL_STATE(64)] = 5632, - [SMALL_STATE(65)] = 5721, - [SMALL_STATE(66)] = 5810, - [SMALL_STATE(67)] = 5899, - [SMALL_STATE(68)] = 5988, - [SMALL_STATE(69)] = 6077, - [SMALL_STATE(70)] = 6166, - [SMALL_STATE(71)] = 6255, - [SMALL_STATE(72)] = 6344, - [SMALL_STATE(73)] = 6433, - [SMALL_STATE(74)] = 6522, - [SMALL_STATE(75)] = 6611, - [SMALL_STATE(76)] = 6700, - [SMALL_STATE(77)] = 6789, - [SMALL_STATE(78)] = 6878, - [SMALL_STATE(79)] = 6967, - [SMALL_STATE(80)] = 7056, - [SMALL_STATE(81)] = 7145, - [SMALL_STATE(82)] = 7234, - [SMALL_STATE(83)] = 7323, - [SMALL_STATE(84)] = 7412, - [SMALL_STATE(85)] = 7501, - [SMALL_STATE(86)] = 7590, - [SMALL_STATE(87)] = 7679, - [SMALL_STATE(88)] = 7768, - [SMALL_STATE(89)] = 7857, - [SMALL_STATE(90)] = 7911, - [SMALL_STATE(91)] = 7965, - [SMALL_STATE(92)] = 8019, - [SMALL_STATE(93)] = 8073, - [SMALL_STATE(94)] = 8127, - [SMALL_STATE(95)] = 8210, - [SMALL_STATE(96)] = 8293, - [SMALL_STATE(97)] = 8376, - [SMALL_STATE(98)] = 8459, - [SMALL_STATE(99)] = 8542, - [SMALL_STATE(100)] = 8625, - [SMALL_STATE(101)] = 8708, - [SMALL_STATE(102)] = 8791, - [SMALL_STATE(103)] = 8874, - [SMALL_STATE(104)] = 8957, - [SMALL_STATE(105)] = 9040, - [SMALL_STATE(106)] = 9123, - [SMALL_STATE(107)] = 9206, - [SMALL_STATE(108)] = 9289, - [SMALL_STATE(109)] = 9372, - [SMALL_STATE(110)] = 9455, - [SMALL_STATE(111)] = 9538, - [SMALL_STATE(112)] = 9621, - [SMALL_STATE(113)] = 9704, - [SMALL_STATE(114)] = 9787, - [SMALL_STATE(115)] = 9870, - [SMALL_STATE(116)] = 9953, - [SMALL_STATE(117)] = 10036, - [SMALL_STATE(118)] = 10119, - [SMALL_STATE(119)] = 10202, - [SMALL_STATE(120)] = 10285, - [SMALL_STATE(121)] = 10368, - [SMALL_STATE(122)] = 10451, - [SMALL_STATE(123)] = 10534, - [SMALL_STATE(124)] = 10617, - [SMALL_STATE(125)] = 10700, - [SMALL_STATE(126)] = 10783, - [SMALL_STATE(127)] = 10866, - [SMALL_STATE(128)] = 10949, - [SMALL_STATE(129)] = 11032, - [SMALL_STATE(130)] = 11096, - [SMALL_STATE(131)] = 11158, - [SMALL_STATE(132)] = 11218, - [SMALL_STATE(133)] = 11268, - [SMALL_STATE(134)] = 11324, - [SMALL_STATE(135)] = 11374, - [SMALL_STATE(136)] = 11428, - [SMALL_STATE(137)] = 11502, - [SMALL_STATE(138)] = 11552, - [SMALL_STATE(139)] = 11602, - [SMALL_STATE(140)] = 11652, - [SMALL_STATE(141)] = 11702, - [SMALL_STATE(142)] = 11748, - [SMALL_STATE(143)] = 11798, - [SMALL_STATE(144)] = 11839, - [SMALL_STATE(145)] = 11880, - [SMALL_STATE(146)] = 11921, - [SMALL_STATE(147)] = 11962, - [SMALL_STATE(148)] = 12003, - [SMALL_STATE(149)] = 12044, - [SMALL_STATE(150)] = 12085, - [SMALL_STATE(151)] = 12126, - [SMALL_STATE(152)] = 12167, - [SMALL_STATE(153)] = 12208, - [SMALL_STATE(154)] = 12249, - [SMALL_STATE(155)] = 12290, - [SMALL_STATE(156)] = 12331, - [SMALL_STATE(157)] = 12372, - [SMALL_STATE(158)] = 12413, - [SMALL_STATE(159)] = 12454, - [SMALL_STATE(160)] = 12495, - [SMALL_STATE(161)] = 12536, - [SMALL_STATE(162)] = 12577, - [SMALL_STATE(163)] = 12618, - [SMALL_STATE(164)] = 12659, - [SMALL_STATE(165)] = 12700, - [SMALL_STATE(166)] = 12741, - [SMALL_STATE(167)] = 12782, - [SMALL_STATE(168)] = 12823, - [SMALL_STATE(169)] = 12864, - [SMALL_STATE(170)] = 12905, - [SMALL_STATE(171)] = 12946, - [SMALL_STATE(172)] = 12987, - [SMALL_STATE(173)] = 13028, - [SMALL_STATE(174)] = 13069, - [SMALL_STATE(175)] = 13110, - [SMALL_STATE(176)] = 13153, - [SMALL_STATE(177)] = 13211, - [SMALL_STATE(178)] = 13255, - [SMALL_STATE(179)] = 13311, - [SMALL_STATE(180)] = 13365, - [SMALL_STATE(181)] = 13431, - [SMALL_STATE(182)] = 13481, - [SMALL_STATE(183)] = 13525, - [SMALL_STATE(184)] = 13573, - [SMALL_STATE(185)] = 13610, - [SMALL_STATE(186)] = 13647, - [SMALL_STATE(187)] = 13684, - [SMALL_STATE(188)] = 13721, - [SMALL_STATE(189)] = 13758, - [SMALL_STATE(190)] = 13795, - [SMALL_STATE(191)] = 13832, - [SMALL_STATE(192)] = 13869, - [SMALL_STATE(193)] = 13906, - [SMALL_STATE(194)] = 13943, - [SMALL_STATE(195)] = 13980, - [SMALL_STATE(196)] = 14017, - [SMALL_STATE(197)] = 14054, - [SMALL_STATE(198)] = 14091, - [SMALL_STATE(199)] = 14128, - [SMALL_STATE(200)] = 14165, - [SMALL_STATE(201)] = 14202, - [SMALL_STATE(202)] = 14239, - [SMALL_STATE(203)] = 14276, - [SMALL_STATE(204)] = 14313, - [SMALL_STATE(205)] = 14350, - [SMALL_STATE(206)] = 14387, - [SMALL_STATE(207)] = 14424, - [SMALL_STATE(208)] = 14461, - [SMALL_STATE(209)] = 14498, - [SMALL_STATE(210)] = 14535, - [SMALL_STATE(211)] = 14572, - [SMALL_STATE(212)] = 14609, - [SMALL_STATE(213)] = 14646, - [SMALL_STATE(214)] = 14683, - [SMALL_STATE(215)] = 14720, - [SMALL_STATE(216)] = 14757, - [SMALL_STATE(217)] = 14805, - [SMALL_STATE(218)] = 14849, - [SMALL_STATE(219)] = 14891, - [SMALL_STATE(220)] = 14935, - [SMALL_STATE(221)] = 14999, - [SMALL_STATE(222)] = 15041, - [SMALL_STATE(223)] = 15105, - [SMALL_STATE(224)] = 15149, - [SMALL_STATE(225)] = 15193, - [SMALL_STATE(226)] = 15249, - [SMALL_STATE(227)] = 15305, - [SMALL_STATE(228)] = 15359, - [SMALL_STATE(229)] = 15411, - [SMALL_STATE(230)] = 15459, - [SMALL_STATE(231)] = 15513, - [SMALL_STATE(232)] = 15555, - [SMALL_STATE(233)] = 15601, - [SMALL_STATE(234)] = 15653, - [SMALL_STATE(235)] = 15697, - [SMALL_STATE(236)] = 15743, - [SMALL_STATE(237)] = 15785, - [SMALL_STATE(238)] = 15827, - [SMALL_STATE(239)] = 15869, - [SMALL_STATE(240)] = 15911, - [SMALL_STATE(241)] = 15953, - [SMALL_STATE(242)] = 15995, - [SMALL_STATE(243)] = 16037, - [SMALL_STATE(244)] = 16079, - [SMALL_STATE(245)] = 16121, - [SMALL_STATE(246)] = 16163, - [SMALL_STATE(247)] = 16205, - [SMALL_STATE(248)] = 16242, - [SMALL_STATE(249)] = 16273, - [SMALL_STATE(250)] = 16304, - [SMALL_STATE(251)] = 16335, - [SMALL_STATE(252)] = 16366, - [SMALL_STATE(253)] = 16397, - [SMALL_STATE(254)] = 16428, - [SMALL_STATE(255)] = 16459, - [SMALL_STATE(256)] = 16490, - [SMALL_STATE(257)] = 16521, - [SMALL_STATE(258)] = 16552, - [SMALL_STATE(259)] = 16583, - [SMALL_STATE(260)] = 16618, - [SMALL_STATE(261)] = 16649, - [SMALL_STATE(262)] = 16680, - [SMALL_STATE(263)] = 16711, - [SMALL_STATE(264)] = 16746, - [SMALL_STATE(265)] = 16777, - [SMALL_STATE(266)] = 16808, - [SMALL_STATE(267)] = 16839, - [SMALL_STATE(268)] = 16870, - [SMALL_STATE(269)] = 16901, - [SMALL_STATE(270)] = 16932, - [SMALL_STATE(271)] = 16963, - [SMALL_STATE(272)] = 16994, - [SMALL_STATE(273)] = 17025, - [SMALL_STATE(274)] = 17056, - [SMALL_STATE(275)] = 17087, - [SMALL_STATE(276)] = 17118, - [SMALL_STATE(277)] = 17149, - [SMALL_STATE(278)] = 17180, - [SMALL_STATE(279)] = 17211, - [SMALL_STATE(280)] = 17242, - [SMALL_STATE(281)] = 17273, - [SMALL_STATE(282)] = 17304, - [SMALL_STATE(283)] = 17333, - [SMALL_STATE(284)] = 17362, - [SMALL_STATE(285)] = 17391, - [SMALL_STATE(286)] = 17420, - [SMALL_STATE(287)] = 17449, - [SMALL_STATE(288)] = 17478, - [SMALL_STATE(289)] = 17507, - [SMALL_STATE(290)] = 17536, - [SMALL_STATE(291)] = 17565, - [SMALL_STATE(292)] = 17594, - [SMALL_STATE(293)] = 17623, - [SMALL_STATE(294)] = 17652, - [SMALL_STATE(295)] = 17681, - [SMALL_STATE(296)] = 17710, - [SMALL_STATE(297)] = 17739, - [SMALL_STATE(298)] = 17768, - [SMALL_STATE(299)] = 17797, - [SMALL_STATE(300)] = 17826, - [SMALL_STATE(301)] = 17855, - [SMALL_STATE(302)] = 17884, - [SMALL_STATE(303)] = 17913, - [SMALL_STATE(304)] = 17942, - [SMALL_STATE(305)] = 17971, - [SMALL_STATE(306)] = 18000, - [SMALL_STATE(307)] = 18029, - [SMALL_STATE(308)] = 18058, - [SMALL_STATE(309)] = 18087, - [SMALL_STATE(310)] = 18116, - [SMALL_STATE(311)] = 18145, - [SMALL_STATE(312)] = 18174, - [SMALL_STATE(313)] = 18203, - [SMALL_STATE(314)] = 18232, - [SMALL_STATE(315)] = 18261, - [SMALL_STATE(316)] = 18290, - [SMALL_STATE(317)] = 18319, - [SMALL_STATE(318)] = 18348, - [SMALL_STATE(319)] = 18377, - [SMALL_STATE(320)] = 18406, - [SMALL_STATE(321)] = 18435, - [SMALL_STATE(322)] = 18464, - [SMALL_STATE(323)] = 18493, - [SMALL_STATE(324)] = 18522, - [SMALL_STATE(325)] = 18551, - [SMALL_STATE(326)] = 18580, - [SMALL_STATE(327)] = 18609, - [SMALL_STATE(328)] = 18638, - [SMALL_STATE(329)] = 18667, - [SMALL_STATE(330)] = 18696, - [SMALL_STATE(331)] = 18725, - [SMALL_STATE(332)] = 18754, - [SMALL_STATE(333)] = 18783, - [SMALL_STATE(334)] = 18812, - [SMALL_STATE(335)] = 18841, - [SMALL_STATE(336)] = 18870, - [SMALL_STATE(337)] = 18899, - [SMALL_STATE(338)] = 18928, - [SMALL_STATE(339)] = 18957, - [SMALL_STATE(340)] = 18986, - [SMALL_STATE(341)] = 19015, - [SMALL_STATE(342)] = 19044, - [SMALL_STATE(343)] = 19073, - [SMALL_STATE(344)] = 19102, - [SMALL_STATE(345)] = 19131, - [SMALL_STATE(346)] = 19160, - [SMALL_STATE(347)] = 19188, - [SMALL_STATE(348)] = 19214, - [SMALL_STATE(349)] = 19240, - [SMALL_STATE(350)] = 19265, - [SMALL_STATE(351)] = 19290, - [SMALL_STATE(352)] = 19315, - [SMALL_STATE(353)] = 19339, - [SMALL_STATE(354)] = 19378, - [SMALL_STATE(355)] = 19417, - [SMALL_STATE(356)] = 19456, - [SMALL_STATE(357)] = 19495, - [SMALL_STATE(358)] = 19534, - [SMALL_STATE(359)] = 19557, - [SMALL_STATE(360)] = 19580, - [SMALL_STATE(361)] = 19619, - [SMALL_STATE(362)] = 19655, - [SMALL_STATE(363)] = 19691, - [SMALL_STATE(364)] = 19727, - [SMALL_STATE(365)] = 19763, - [SMALL_STATE(366)] = 19801, - [SMALL_STATE(367)] = 19837, - [SMALL_STATE(368)] = 19873, - [SMALL_STATE(369)] = 19909, - [SMALL_STATE(370)] = 19945, - [SMALL_STATE(371)] = 19981, - [SMALL_STATE(372)] = 20017, - [SMALL_STATE(373)] = 20053, - [SMALL_STATE(374)] = 20089, - [SMALL_STATE(375)] = 20127, - [SMALL_STATE(376)] = 20165, - [SMALL_STATE(377)] = 20201, - [SMALL_STATE(378)] = 20237, - [SMALL_STATE(379)] = 20273, - [SMALL_STATE(380)] = 20309, - [SMALL_STATE(381)] = 20345, - [SMALL_STATE(382)] = 20381, - [SMALL_STATE(383)] = 20417, - [SMALL_STATE(384)] = 20453, - [SMALL_STATE(385)] = 20489, - [SMALL_STATE(386)] = 20525, - [SMALL_STATE(387)] = 20561, - [SMALL_STATE(388)] = 20597, - [SMALL_STATE(389)] = 20633, - [SMALL_STATE(390)] = 20669, - [SMALL_STATE(391)] = 20705, - [SMALL_STATE(392)] = 20743, - [SMALL_STATE(393)] = 20779, - [SMALL_STATE(394)] = 20815, - [SMALL_STATE(395)] = 20851, - [SMALL_STATE(396)] = 20887, - [SMALL_STATE(397)] = 20923, - [SMALL_STATE(398)] = 20961, - [SMALL_STATE(399)] = 20997, - [SMALL_STATE(400)] = 21033, - [SMALL_STATE(401)] = 21069, - [SMALL_STATE(402)] = 21102, - [SMALL_STATE(403)] = 21122, - [SMALL_STATE(404)] = 21142, - [SMALL_STATE(405)] = 21167, - [SMALL_STATE(406)] = 21192, - [SMALL_STATE(407)] = 21216, - [SMALL_STATE(408)] = 21239, - [SMALL_STATE(409)] = 21262, - [SMALL_STATE(410)] = 21283, - [SMALL_STATE(411)] = 21302, - [SMALL_STATE(412)] = 21319, - [SMALL_STATE(413)] = 21342, - [SMALL_STATE(414)] = 21365, - [SMALL_STATE(415)] = 21382, - [SMALL_STATE(416)] = 21405, - [SMALL_STATE(417)] = 21422, - [SMALL_STATE(418)] = 21445, - [SMALL_STATE(419)] = 21462, - [SMALL_STATE(420)] = 21482, - [SMALL_STATE(421)] = 21502, - [SMALL_STATE(422)] = 21518, - [SMALL_STATE(423)] = 21538, - [SMALL_STATE(424)] = 21554, - [SMALL_STATE(425)] = 21574, - [SMALL_STATE(426)] = 21586, - [SMALL_STATE(427)] = 21606, - [SMALL_STATE(428)] = 21626, - [SMALL_STATE(429)] = 21642, - [SMALL_STATE(430)] = 21662, - [SMALL_STATE(431)] = 21674, - [SMALL_STATE(432)] = 21694, - [SMALL_STATE(433)] = 21714, - [SMALL_STATE(434)] = 21734, - [SMALL_STATE(435)] = 21748, - [SMALL_STATE(436)] = 21766, - [SMALL_STATE(437)] = 21782, - [SMALL_STATE(438)] = 21799, - [SMALL_STATE(439)] = 21810, - [SMALL_STATE(440)] = 21827, - [SMALL_STATE(441)] = 21838, - [SMALL_STATE(442)] = 21849, - [SMALL_STATE(443)] = 21866, - [SMALL_STATE(444)] = 21877, - [SMALL_STATE(445)] = 21890, - [SMALL_STATE(446)] = 21901, - [SMALL_STATE(447)] = 21912, - [SMALL_STATE(448)] = 21923, - [SMALL_STATE(449)] = 21934, - [SMALL_STATE(450)] = 21951, - [SMALL_STATE(451)] = 21962, - [SMALL_STATE(452)] = 21979, - [SMALL_STATE(453)] = 21990, - [SMALL_STATE(454)] = 22007, - [SMALL_STATE(455)] = 22018, - [SMALL_STATE(456)] = 22029, - [SMALL_STATE(457)] = 22040, - [SMALL_STATE(458)] = 22053, - [SMALL_STATE(459)] = 22064, - [SMALL_STATE(460)] = 22075, - [SMALL_STATE(461)] = 22086, - [SMALL_STATE(462)] = 22103, - [SMALL_STATE(463)] = 22114, - [SMALL_STATE(464)] = 22131, - [SMALL_STATE(465)] = 22144, - [SMALL_STATE(466)] = 22155, - [SMALL_STATE(467)] = 22172, - [SMALL_STATE(468)] = 22183, - [SMALL_STATE(469)] = 22200, - [SMALL_STATE(470)] = 22211, - [SMALL_STATE(471)] = 22224, - [SMALL_STATE(472)] = 22237, - [SMALL_STATE(473)] = 22248, - [SMALL_STATE(474)] = 22259, - [SMALL_STATE(475)] = 22270, - [SMALL_STATE(476)] = 22287, - [SMALL_STATE(477)] = 22298, - [SMALL_STATE(478)] = 22309, - [SMALL_STATE(479)] = 22320, - [SMALL_STATE(480)] = 22335, - [SMALL_STATE(481)] = 22352, - [SMALL_STATE(482)] = 22369, - [SMALL_STATE(483)] = 22382, - [SMALL_STATE(484)] = 22393, - [SMALL_STATE(485)] = 22404, - [SMALL_STATE(486)] = 22421, - [SMALL_STATE(487)] = 22438, - [SMALL_STATE(488)] = 22449, - [SMALL_STATE(489)] = 22460, - [SMALL_STATE(490)] = 22471, - [SMALL_STATE(491)] = 22482, - [SMALL_STATE(492)] = 22493, - [SMALL_STATE(493)] = 22504, - [SMALL_STATE(494)] = 22521, - [SMALL_STATE(495)] = 22536, - [SMALL_STATE(496)] = 22550, - [SMALL_STATE(497)] = 22560, - [SMALL_STATE(498)] = 22570, - [SMALL_STATE(499)] = 22584, - [SMALL_STATE(500)] = 22598, - [SMALL_STATE(501)] = 22610, - [SMALL_STATE(502)] = 22620, - [SMALL_STATE(503)] = 22630, - [SMALL_STATE(504)] = 22640, - [SMALL_STATE(505)] = 22654, - [SMALL_STATE(506)] = 22666, - [SMALL_STATE(507)] = 22680, - [SMALL_STATE(508)] = 22690, - [SMALL_STATE(509)] = 22700, - [SMALL_STATE(510)] = 22710, - [SMALL_STATE(511)] = 22724, - [SMALL_STATE(512)] = 22734, - [SMALL_STATE(513)] = 22744, - [SMALL_STATE(514)] = 22758, - [SMALL_STATE(515)] = 22768, - [SMALL_STATE(516)] = 22778, - [SMALL_STATE(517)] = 22788, - [SMALL_STATE(518)] = 22798, - [SMALL_STATE(519)] = 22808, - [SMALL_STATE(520)] = 22818, - [SMALL_STATE(521)] = 22828, - [SMALL_STATE(522)] = 22842, - [SMALL_STATE(523)] = 22856, - [SMALL_STATE(524)] = 22870, - [SMALL_STATE(525)] = 22880, - [SMALL_STATE(526)] = 22894, - [SMALL_STATE(527)] = 22908, - [SMALL_STATE(528)] = 22918, - [SMALL_STATE(529)] = 22928, - [SMALL_STATE(530)] = 22938, - [SMALL_STATE(531)] = 22948, - [SMALL_STATE(532)] = 22958, - [SMALL_STATE(533)] = 22968, - [SMALL_STATE(534)] = 22982, - [SMALL_STATE(535)] = 22992, - [SMALL_STATE(536)] = 23002, - [SMALL_STATE(537)] = 23012, - [SMALL_STATE(538)] = 23022, - [SMALL_STATE(539)] = 23036, - [SMALL_STATE(540)] = 23046, - [SMALL_STATE(541)] = 23060, - [SMALL_STATE(542)] = 23074, - [SMALL_STATE(543)] = 23084, - [SMALL_STATE(544)] = 23094, - [SMALL_STATE(545)] = 23104, - [SMALL_STATE(546)] = 23118, - [SMALL_STATE(547)] = 23128, - [SMALL_STATE(548)] = 23138, - [SMALL_STATE(549)] = 23148, - [SMALL_STATE(550)] = 23162, - [SMALL_STATE(551)] = 23172, - [SMALL_STATE(552)] = 23186, - [SMALL_STATE(553)] = 23200, - [SMALL_STATE(554)] = 23210, - [SMALL_STATE(555)] = 23220, - [SMALL_STATE(556)] = 23230, - [SMALL_STATE(557)] = 23244, - [SMALL_STATE(558)] = 23255, - [SMALL_STATE(559)] = 23266, - [SMALL_STATE(560)] = 23277, - [SMALL_STATE(561)] = 23288, - [SMALL_STATE(562)] = 23299, - [SMALL_STATE(563)] = 23310, - [SMALL_STATE(564)] = 23321, - [SMALL_STATE(565)] = 23332, - [SMALL_STATE(566)] = 23343, - [SMALL_STATE(567)] = 23354, - [SMALL_STATE(568)] = 23365, - [SMALL_STATE(569)] = 23376, - [SMALL_STATE(570)] = 23387, - [SMALL_STATE(571)] = 23398, - [SMALL_STATE(572)] = 23409, - [SMALL_STATE(573)] = 23420, - [SMALL_STATE(574)] = 23431, - [SMALL_STATE(575)] = 23442, - [SMALL_STATE(576)] = 23453, - [SMALL_STATE(577)] = 23464, - [SMALL_STATE(578)] = 23475, - [SMALL_STATE(579)] = 23486, - [SMALL_STATE(580)] = 23497, - [SMALL_STATE(581)] = 23508, - [SMALL_STATE(582)] = 23519, - [SMALL_STATE(583)] = 23530, - [SMALL_STATE(584)] = 23541, - [SMALL_STATE(585)] = 23552, - [SMALL_STATE(586)] = 23563, - [SMALL_STATE(587)] = 23574, - [SMALL_STATE(588)] = 23585, - [SMALL_STATE(589)] = 23596, - [SMALL_STATE(590)] = 23607, - [SMALL_STATE(591)] = 23618, - [SMALL_STATE(592)] = 23629, - [SMALL_STATE(593)] = 23640, - [SMALL_STATE(594)] = 23651, - [SMALL_STATE(595)] = 23662, - [SMALL_STATE(596)] = 23673, - [SMALL_STATE(597)] = 23684, - [SMALL_STATE(598)] = 23695, - [SMALL_STATE(599)] = 23706, - [SMALL_STATE(600)] = 23717, - [SMALL_STATE(601)] = 23728, - [SMALL_STATE(602)] = 23739, - [SMALL_STATE(603)] = 23750, - [SMALL_STATE(604)] = 23761, - [SMALL_STATE(605)] = 23772, - [SMALL_STATE(606)] = 23783, - [SMALL_STATE(607)] = 23794, - [SMALL_STATE(608)] = 23805, - [SMALL_STATE(609)] = 23816, - [SMALL_STATE(610)] = 23827, - [SMALL_STATE(611)] = 23838, - [SMALL_STATE(612)] = 23849, - [SMALL_STATE(613)] = 23860, - [SMALL_STATE(614)] = 23871, - [SMALL_STATE(615)] = 23882, - [SMALL_STATE(616)] = 23893, - [SMALL_STATE(617)] = 23904, - [SMALL_STATE(618)] = 23915, - [SMALL_STATE(619)] = 23926, - [SMALL_STATE(620)] = 23937, - [SMALL_STATE(621)] = 23948, - [SMALL_STATE(622)] = 23959, - [SMALL_STATE(623)] = 23970, - [SMALL_STATE(624)] = 23981, - [SMALL_STATE(625)] = 23992, - [SMALL_STATE(626)] = 24003, - [SMALL_STATE(627)] = 24014, - [SMALL_STATE(628)] = 24025, - [SMALL_STATE(629)] = 24036, - [SMALL_STATE(630)] = 24047, - [SMALL_STATE(631)] = 24058, - [SMALL_STATE(632)] = 24069, - [SMALL_STATE(633)] = 24080, - [SMALL_STATE(634)] = 24091, - [SMALL_STATE(635)] = 24099, - [SMALL_STATE(636)] = 24107, - [SMALL_STATE(637)] = 24115, - [SMALL_STATE(638)] = 24123, - [SMALL_STATE(639)] = 24131, - [SMALL_STATE(640)] = 24139, - [SMALL_STATE(641)] = 24147, - [SMALL_STATE(642)] = 24155, - [SMALL_STATE(643)] = 24163, - [SMALL_STATE(644)] = 24171, - [SMALL_STATE(645)] = 24179, - [SMALL_STATE(646)] = 24187, - [SMALL_STATE(647)] = 24195, - [SMALL_STATE(648)] = 24203, - [SMALL_STATE(649)] = 24211, - [SMALL_STATE(650)] = 24219, - [SMALL_STATE(651)] = 24227, - [SMALL_STATE(652)] = 24235, - [SMALL_STATE(653)] = 24243, - [SMALL_STATE(654)] = 24251, - [SMALL_STATE(655)] = 24259, - [SMALL_STATE(656)] = 24267, - [SMALL_STATE(657)] = 24275, - [SMALL_STATE(658)] = 24283, - [SMALL_STATE(659)] = 24291, - [SMALL_STATE(660)] = 24299, - [SMALL_STATE(661)] = 24307, - [SMALL_STATE(662)] = 24315, - [SMALL_STATE(663)] = 24323, - [SMALL_STATE(664)] = 24331, - [SMALL_STATE(665)] = 24339, - [SMALL_STATE(666)] = 24347, - [SMALL_STATE(667)] = 24355, - [SMALL_STATE(668)] = 24363, - [SMALL_STATE(669)] = 24371, - [SMALL_STATE(670)] = 24379, - [SMALL_STATE(671)] = 24387, - [SMALL_STATE(672)] = 24395, - [SMALL_STATE(673)] = 24403, - [SMALL_STATE(674)] = 24411, - [SMALL_STATE(675)] = 24419, - [SMALL_STATE(676)] = 24427, - [SMALL_STATE(677)] = 24435, - [SMALL_STATE(678)] = 24443, - [SMALL_STATE(679)] = 24451, + [SMALL_STATE(16)] = 1459, + [SMALL_STATE(17)] = 1557, + [SMALL_STATE(18)] = 1655, + [SMALL_STATE(19)] = 1753, + [SMALL_STATE(20)] = 1851, + [SMALL_STATE(21)] = 1946, + [SMALL_STATE(22)] = 2041, + [SMALL_STATE(23)] = 2136, + [SMALL_STATE(24)] = 2231, + [SMALL_STATE(25)] = 2326, + [SMALL_STATE(26)] = 2421, + [SMALL_STATE(27)] = 2516, + [SMALL_STATE(28)] = 2611, + [SMALL_STATE(29)] = 2671, + [SMALL_STATE(30)] = 2725, + [SMALL_STATE(31)] = 2791, + [SMALL_STATE(32)] = 2859, + [SMALL_STATE(33)] = 2951, + [SMALL_STATE(34)] = 3029, + [SMALL_STATE(35)] = 3121, + [SMALL_STATE(36)] = 3175, + [SMALL_STATE(37)] = 3267, + [SMALL_STATE(38)] = 3359, + [SMALL_STATE(39)] = 3417, + [SMALL_STATE(40)] = 3509, + [SMALL_STATE(41)] = 3573, + [SMALL_STATE(42)] = 3662, + [SMALL_STATE(43)] = 3751, + [SMALL_STATE(44)] = 3840, + [SMALL_STATE(45)] = 3929, + [SMALL_STATE(46)] = 4018, + [SMALL_STATE(47)] = 4107, + [SMALL_STATE(48)] = 4196, + [SMALL_STATE(49)] = 4285, + [SMALL_STATE(50)] = 4374, + [SMALL_STATE(51)] = 4463, + [SMALL_STATE(52)] = 4552, + [SMALL_STATE(53)] = 4641, + [SMALL_STATE(54)] = 4730, + [SMALL_STATE(55)] = 4819, + [SMALL_STATE(56)] = 4908, + [SMALL_STATE(57)] = 4997, + [SMALL_STATE(58)] = 5086, + [SMALL_STATE(59)] = 5175, + [SMALL_STATE(60)] = 5264, + [SMALL_STATE(61)] = 5353, + [SMALL_STATE(62)] = 5442, + [SMALL_STATE(63)] = 5531, + [SMALL_STATE(64)] = 5620, + [SMALL_STATE(65)] = 5709, + [SMALL_STATE(66)] = 5798, + [SMALL_STATE(67)] = 5887, + [SMALL_STATE(68)] = 5976, + [SMALL_STATE(69)] = 6065, + [SMALL_STATE(70)] = 6154, + [SMALL_STATE(71)] = 6243, + [SMALL_STATE(72)] = 6332, + [SMALL_STATE(73)] = 6421, + [SMALL_STATE(74)] = 6510, + [SMALL_STATE(75)] = 6599, + [SMALL_STATE(76)] = 6688, + [SMALL_STATE(77)] = 6777, + [SMALL_STATE(78)] = 6866, + [SMALL_STATE(79)] = 6955, + [SMALL_STATE(80)] = 7044, + [SMALL_STATE(81)] = 7133, + [SMALL_STATE(82)] = 7222, + [SMALL_STATE(83)] = 7311, + [SMALL_STATE(84)] = 7400, + [SMALL_STATE(85)] = 7489, + [SMALL_STATE(86)] = 7578, + [SMALL_STATE(87)] = 7667, + [SMALL_STATE(88)] = 7756, + [SMALL_STATE(89)] = 7810, + [SMALL_STATE(90)] = 7864, + [SMALL_STATE(91)] = 7918, + [SMALL_STATE(92)] = 7972, + [SMALL_STATE(93)] = 8026, + [SMALL_STATE(94)] = 8109, + [SMALL_STATE(95)] = 8192, + [SMALL_STATE(96)] = 8275, + [SMALL_STATE(97)] = 8358, + [SMALL_STATE(98)] = 8441, + [SMALL_STATE(99)] = 8524, + [SMALL_STATE(100)] = 8607, + [SMALL_STATE(101)] = 8690, + [SMALL_STATE(102)] = 8773, + [SMALL_STATE(103)] = 8856, + [SMALL_STATE(104)] = 8939, + [SMALL_STATE(105)] = 9022, + [SMALL_STATE(106)] = 9105, + [SMALL_STATE(107)] = 9188, + [SMALL_STATE(108)] = 9271, + [SMALL_STATE(109)] = 9354, + [SMALL_STATE(110)] = 9437, + [SMALL_STATE(111)] = 9520, + [SMALL_STATE(112)] = 9603, + [SMALL_STATE(113)] = 9686, + [SMALL_STATE(114)] = 9769, + [SMALL_STATE(115)] = 9852, + [SMALL_STATE(116)] = 9935, + [SMALL_STATE(117)] = 10018, + [SMALL_STATE(118)] = 10101, + [SMALL_STATE(119)] = 10184, + [SMALL_STATE(120)] = 10267, + [SMALL_STATE(121)] = 10350, + [SMALL_STATE(122)] = 10433, + [SMALL_STATE(123)] = 10516, + [SMALL_STATE(124)] = 10599, + [SMALL_STATE(125)] = 10682, + [SMALL_STATE(126)] = 10765, + [SMALL_STATE(127)] = 10848, + [SMALL_STATE(128)] = 10931, + [SMALL_STATE(129)] = 10981, + [SMALL_STATE(130)] = 11045, + [SMALL_STATE(131)] = 11107, + [SMALL_STATE(132)] = 11167, + [SMALL_STATE(133)] = 11223, + [SMALL_STATE(134)] = 11297, + [SMALL_STATE(135)] = 11347, + [SMALL_STATE(136)] = 11401, + [SMALL_STATE(137)] = 11451, + [SMALL_STATE(138)] = 11501, + [SMALL_STATE(139)] = 11551, + [SMALL_STATE(140)] = 11601, + [SMALL_STATE(141)] = 11647, + [SMALL_STATE(142)] = 11697, + [SMALL_STATE(143)] = 11738, + [SMALL_STATE(144)] = 11779, + [SMALL_STATE(145)] = 11820, + [SMALL_STATE(146)] = 11861, + [SMALL_STATE(147)] = 11902, + [SMALL_STATE(148)] = 11943, + [SMALL_STATE(149)] = 11984, + [SMALL_STATE(150)] = 12025, + [SMALL_STATE(151)] = 12066, + [SMALL_STATE(152)] = 12107, + [SMALL_STATE(153)] = 12148, + [SMALL_STATE(154)] = 12189, + [SMALL_STATE(155)] = 12230, + [SMALL_STATE(156)] = 12271, + [SMALL_STATE(157)] = 12312, + [SMALL_STATE(158)] = 12353, + [SMALL_STATE(159)] = 12394, + [SMALL_STATE(160)] = 12435, + [SMALL_STATE(161)] = 12476, + [SMALL_STATE(162)] = 12517, + [SMALL_STATE(163)] = 12558, + [SMALL_STATE(164)] = 12599, + [SMALL_STATE(165)] = 12640, + [SMALL_STATE(166)] = 12681, + [SMALL_STATE(167)] = 12722, + [SMALL_STATE(168)] = 12763, + [SMALL_STATE(169)] = 12804, + [SMALL_STATE(170)] = 12845, + [SMALL_STATE(171)] = 12886, + [SMALL_STATE(172)] = 12927, + [SMALL_STATE(173)] = 12968, + [SMALL_STATE(174)] = 13009, + [SMALL_STATE(175)] = 13052, + [SMALL_STATE(176)] = 13102, + [SMALL_STATE(177)] = 13168, + [SMALL_STATE(178)] = 13212, + [SMALL_STATE(179)] = 13270, + [SMALL_STATE(180)] = 13314, + [SMALL_STATE(181)] = 13362, + [SMALL_STATE(182)] = 13418, + [SMALL_STATE(183)] = 13472, + [SMALL_STATE(184)] = 13509, + [SMALL_STATE(185)] = 13546, + [SMALL_STATE(186)] = 13583, + [SMALL_STATE(187)] = 13620, + [SMALL_STATE(188)] = 13657, + [SMALL_STATE(189)] = 13694, + [SMALL_STATE(190)] = 13731, + [SMALL_STATE(191)] = 13768, + [SMALL_STATE(192)] = 13805, + [SMALL_STATE(193)] = 13842, + [SMALL_STATE(194)] = 13879, + [SMALL_STATE(195)] = 13916, + [SMALL_STATE(196)] = 13953, + [SMALL_STATE(197)] = 13990, + [SMALL_STATE(198)] = 14027, + [SMALL_STATE(199)] = 14064, + [SMALL_STATE(200)] = 14101, + [SMALL_STATE(201)] = 14138, + [SMALL_STATE(202)] = 14175, + [SMALL_STATE(203)] = 14212, + [SMALL_STATE(204)] = 14249, + [SMALL_STATE(205)] = 14286, + [SMALL_STATE(206)] = 14323, + [SMALL_STATE(207)] = 14360, + [SMALL_STATE(208)] = 14397, + [SMALL_STATE(209)] = 14434, + [SMALL_STATE(210)] = 14471, + [SMALL_STATE(211)] = 14508, + [SMALL_STATE(212)] = 14545, + [SMALL_STATE(213)] = 14582, + [SMALL_STATE(214)] = 14619, + [SMALL_STATE(215)] = 14656, + [SMALL_STATE(216)] = 14700, + [SMALL_STATE(217)] = 14744, + [SMALL_STATE(218)] = 14808, + [SMALL_STATE(219)] = 14864, + [SMALL_STATE(220)] = 14918, + [SMALL_STATE(221)] = 14970, + [SMALL_STATE(222)] = 15018, + [SMALL_STATE(223)] = 15060, + [SMALL_STATE(224)] = 15106, + [SMALL_STATE(225)] = 15162, + [SMALL_STATE(226)] = 15204, + [SMALL_STATE(227)] = 15258, + [SMALL_STATE(228)] = 15310, + [SMALL_STATE(229)] = 15352, + [SMALL_STATE(230)] = 15416, + [SMALL_STATE(231)] = 15464, + [SMALL_STATE(232)] = 15508, + [SMALL_STATE(233)] = 15552, + [SMALL_STATE(234)] = 15596, + [SMALL_STATE(235)] = 15638, + [SMALL_STATE(236)] = 15684, + [SMALL_STATE(237)] = 15726, + [SMALL_STATE(238)] = 15768, + [SMALL_STATE(239)] = 15810, + [SMALL_STATE(240)] = 15852, + [SMALL_STATE(241)] = 15894, + [SMALL_STATE(242)] = 15936, + [SMALL_STATE(243)] = 15978, + [SMALL_STATE(244)] = 16020, + [SMALL_STATE(245)] = 16062, + [SMALL_STATE(246)] = 16104, + [SMALL_STATE(247)] = 16141, + [SMALL_STATE(248)] = 16172, + [SMALL_STATE(249)] = 16203, + [SMALL_STATE(250)] = 16234, + [SMALL_STATE(251)] = 16269, + [SMALL_STATE(252)] = 16300, + [SMALL_STATE(253)] = 16331, + [SMALL_STATE(254)] = 16362, + [SMALL_STATE(255)] = 16393, + [SMALL_STATE(256)] = 16424, + [SMALL_STATE(257)] = 16459, + [SMALL_STATE(258)] = 16490, + [SMALL_STATE(259)] = 16521, + [SMALL_STATE(260)] = 16552, + [SMALL_STATE(261)] = 16583, + [SMALL_STATE(262)] = 16614, + [SMALL_STATE(263)] = 16645, + [SMALL_STATE(264)] = 16676, + [SMALL_STATE(265)] = 16707, + [SMALL_STATE(266)] = 16738, + [SMALL_STATE(267)] = 16769, + [SMALL_STATE(268)] = 16800, + [SMALL_STATE(269)] = 16831, + [SMALL_STATE(270)] = 16862, + [SMALL_STATE(271)] = 16893, + [SMALL_STATE(272)] = 16924, + [SMALL_STATE(273)] = 16955, + [SMALL_STATE(274)] = 16986, + [SMALL_STATE(275)] = 17017, + [SMALL_STATE(276)] = 17048, + [SMALL_STATE(277)] = 17079, + [SMALL_STATE(278)] = 17110, + [SMALL_STATE(279)] = 17141, + [SMALL_STATE(280)] = 17172, + [SMALL_STATE(281)] = 17203, + [SMALL_STATE(282)] = 17232, + [SMALL_STATE(283)] = 17261, + [SMALL_STATE(284)] = 17290, + [SMALL_STATE(285)] = 17319, + [SMALL_STATE(286)] = 17348, + [SMALL_STATE(287)] = 17377, + [SMALL_STATE(288)] = 17406, + [SMALL_STATE(289)] = 17435, + [SMALL_STATE(290)] = 17464, + [SMALL_STATE(291)] = 17493, + [SMALL_STATE(292)] = 17522, + [SMALL_STATE(293)] = 17551, + [SMALL_STATE(294)] = 17580, + [SMALL_STATE(295)] = 17609, + [SMALL_STATE(296)] = 17638, + [SMALL_STATE(297)] = 17667, + [SMALL_STATE(298)] = 17696, + [SMALL_STATE(299)] = 17725, + [SMALL_STATE(300)] = 17754, + [SMALL_STATE(301)] = 17783, + [SMALL_STATE(302)] = 17812, + [SMALL_STATE(303)] = 17841, + [SMALL_STATE(304)] = 17870, + [SMALL_STATE(305)] = 17899, + [SMALL_STATE(306)] = 17928, + [SMALL_STATE(307)] = 17957, + [SMALL_STATE(308)] = 17986, + [SMALL_STATE(309)] = 18015, + [SMALL_STATE(310)] = 18044, + [SMALL_STATE(311)] = 18073, + [SMALL_STATE(312)] = 18102, + [SMALL_STATE(313)] = 18131, + [SMALL_STATE(314)] = 18160, + [SMALL_STATE(315)] = 18189, + [SMALL_STATE(316)] = 18218, + [SMALL_STATE(317)] = 18247, + [SMALL_STATE(318)] = 18276, + [SMALL_STATE(319)] = 18305, + [SMALL_STATE(320)] = 18334, + [SMALL_STATE(321)] = 18363, + [SMALL_STATE(322)] = 18392, + [SMALL_STATE(323)] = 18421, + [SMALL_STATE(324)] = 18450, + [SMALL_STATE(325)] = 18479, + [SMALL_STATE(326)] = 18508, + [SMALL_STATE(327)] = 18537, + [SMALL_STATE(328)] = 18566, + [SMALL_STATE(329)] = 18595, + [SMALL_STATE(330)] = 18624, + [SMALL_STATE(331)] = 18653, + [SMALL_STATE(332)] = 18682, + [SMALL_STATE(333)] = 18711, + [SMALL_STATE(334)] = 18740, + [SMALL_STATE(335)] = 18769, + [SMALL_STATE(336)] = 18798, + [SMALL_STATE(337)] = 18827, + [SMALL_STATE(338)] = 18856, + [SMALL_STATE(339)] = 18885, + [SMALL_STATE(340)] = 18914, + [SMALL_STATE(341)] = 18943, + [SMALL_STATE(342)] = 18972, + [SMALL_STATE(343)] = 19001, + [SMALL_STATE(344)] = 19030, + [SMALL_STATE(345)] = 19059, + [SMALL_STATE(346)] = 19087, + [SMALL_STATE(347)] = 19113, + [SMALL_STATE(348)] = 19139, + [SMALL_STATE(349)] = 19164, + [SMALL_STATE(350)] = 19189, + [SMALL_STATE(351)] = 19214, + [SMALL_STATE(352)] = 19253, + [SMALL_STATE(353)] = 19292, + [SMALL_STATE(354)] = 19315, + [SMALL_STATE(355)] = 19354, + [SMALL_STATE(356)] = 19393, + [SMALL_STATE(357)] = 19432, + [SMALL_STATE(358)] = 19455, + [SMALL_STATE(359)] = 19494, + [SMALL_STATE(360)] = 19530, + [SMALL_STATE(361)] = 19566, + [SMALL_STATE(362)] = 19604, + [SMALL_STATE(363)] = 19640, + [SMALL_STATE(364)] = 19676, + [SMALL_STATE(365)] = 19714, + [SMALL_STATE(366)] = 19750, + [SMALL_STATE(367)] = 19786, + [SMALL_STATE(368)] = 19822, + [SMALL_STATE(369)] = 19858, + [SMALL_STATE(370)] = 19894, + [SMALL_STATE(371)] = 19930, + [SMALL_STATE(372)] = 19966, + [SMALL_STATE(373)] = 20002, + [SMALL_STATE(374)] = 20038, + [SMALL_STATE(375)] = 20074, + [SMALL_STATE(376)] = 20112, + [SMALL_STATE(377)] = 20148, + [SMALL_STATE(378)] = 20184, + [SMALL_STATE(379)] = 20220, + [SMALL_STATE(380)] = 20256, + [SMALL_STATE(381)] = 20292, + [SMALL_STATE(382)] = 20328, + [SMALL_STATE(383)] = 20364, + [SMALL_STATE(384)] = 20402, + [SMALL_STATE(385)] = 20438, + [SMALL_STATE(386)] = 20474, + [SMALL_STATE(387)] = 20510, + [SMALL_STATE(388)] = 20546, + [SMALL_STATE(389)] = 20584, + [SMALL_STATE(390)] = 20620, + [SMALL_STATE(391)] = 20656, + [SMALL_STATE(392)] = 20692, + [SMALL_STATE(393)] = 20728, + [SMALL_STATE(394)] = 20764, + [SMALL_STATE(395)] = 20800, + [SMALL_STATE(396)] = 20836, + [SMALL_STATE(397)] = 20872, + [SMALL_STATE(398)] = 20908, + [SMALL_STATE(399)] = 20944, + [SMALL_STATE(400)] = 20977, + [SMALL_STATE(401)] = 20997, + [SMALL_STATE(402)] = 21017, + [SMALL_STATE(403)] = 21041, + [SMALL_STATE(404)] = 21063, + [SMALL_STATE(405)] = 21085, + [SMALL_STATE(406)] = 21108, + [SMALL_STATE(407)] = 21125, + [SMALL_STATE(408)] = 21148, + [SMALL_STATE(409)] = 21169, + [SMALL_STATE(410)] = 21188, + [SMALL_STATE(411)] = 21211, + [SMALL_STATE(412)] = 21234, + [SMALL_STATE(413)] = 21251, + [SMALL_STATE(414)] = 21274, + [SMALL_STATE(415)] = 21297, + [SMALL_STATE(416)] = 21317, + [SMALL_STATE(417)] = 21333, + [SMALL_STATE(418)] = 21345, + [SMALL_STATE(419)] = 21361, + [SMALL_STATE(420)] = 21381, + [SMALL_STATE(421)] = 21397, + [SMALL_STATE(422)] = 21417, + [SMALL_STATE(423)] = 21429, + [SMALL_STATE(424)] = 21443, + [SMALL_STATE(425)] = 21463, + [SMALL_STATE(426)] = 21483, + [SMALL_STATE(427)] = 21503, + [SMALL_STATE(428)] = 21521, + [SMALL_STATE(429)] = 21541, + [SMALL_STATE(430)] = 21561, + [SMALL_STATE(431)] = 21581, + [SMALL_STATE(432)] = 21597, + [SMALL_STATE(433)] = 21617, + [SMALL_STATE(434)] = 21628, + [SMALL_STATE(435)] = 21639, + [SMALL_STATE(436)] = 21656, + [SMALL_STATE(437)] = 21673, + [SMALL_STATE(438)] = 21690, + [SMALL_STATE(439)] = 21707, + [SMALL_STATE(440)] = 21724, + [SMALL_STATE(441)] = 21735, + [SMALL_STATE(442)] = 21746, + [SMALL_STATE(443)] = 21759, + [SMALL_STATE(444)] = 21772, + [SMALL_STATE(445)] = 21785, + [SMALL_STATE(446)] = 21796, + [SMALL_STATE(447)] = 21807, + [SMALL_STATE(448)] = 21824, + [SMALL_STATE(449)] = 21837, + [SMALL_STATE(450)] = 21848, + [SMALL_STATE(451)] = 21865, + [SMALL_STATE(452)] = 21878, + [SMALL_STATE(453)] = 21893, + [SMALL_STATE(454)] = 21910, + [SMALL_STATE(455)] = 21927, + [SMALL_STATE(456)] = 21938, + [SMALL_STATE(457)] = 21949, + [SMALL_STATE(458)] = 21964, + [SMALL_STATE(459)] = 21975, + [SMALL_STATE(460)] = 21986, + [SMALL_STATE(461)] = 21997, + [SMALL_STATE(462)] = 22014, + [SMALL_STATE(463)] = 22031, + [SMALL_STATE(464)] = 22042, + [SMALL_STATE(465)] = 22053, + [SMALL_STATE(466)] = 22064, + [SMALL_STATE(467)] = 22075, + [SMALL_STATE(468)] = 22086, + [SMALL_STATE(469)] = 22103, + [SMALL_STATE(470)] = 22114, + [SMALL_STATE(471)] = 22125, + [SMALL_STATE(472)] = 22136, + [SMALL_STATE(473)] = 22153, + [SMALL_STATE(474)] = 22164, + [SMALL_STATE(475)] = 22181, + [SMALL_STATE(476)] = 22192, + [SMALL_STATE(477)] = 22203, + [SMALL_STATE(478)] = 22214, + [SMALL_STATE(479)] = 22231, + [SMALL_STATE(480)] = 22242, + [SMALL_STATE(481)] = 22253, + [SMALL_STATE(482)] = 22264, + [SMALL_STATE(483)] = 22275, + [SMALL_STATE(484)] = 22292, + [SMALL_STATE(485)] = 22303, + [SMALL_STATE(486)] = 22314, + [SMALL_STATE(487)] = 22327, + [SMALL_STATE(488)] = 22338, + [SMALL_STATE(489)] = 22349, + [SMALL_STATE(490)] = 22360, + [SMALL_STATE(491)] = 22371, + [SMALL_STATE(492)] = 22385, + [SMALL_STATE(493)] = 22395, + [SMALL_STATE(494)] = 22409, + [SMALL_STATE(495)] = 22419, + [SMALL_STATE(496)] = 22429, + [SMALL_STATE(497)] = 22439, + [SMALL_STATE(498)] = 22453, + [SMALL_STATE(499)] = 22467, + [SMALL_STATE(500)] = 22477, + [SMALL_STATE(501)] = 22487, + [SMALL_STATE(502)] = 22501, + [SMALL_STATE(503)] = 22511, + [SMALL_STATE(504)] = 22521, + [SMALL_STATE(505)] = 22535, + [SMALL_STATE(506)] = 22549, + [SMALL_STATE(507)] = 22559, + [SMALL_STATE(508)] = 22569, + [SMALL_STATE(509)] = 22579, + [SMALL_STATE(510)] = 22593, + [SMALL_STATE(511)] = 22603, + [SMALL_STATE(512)] = 22613, + [SMALL_STATE(513)] = 22623, + [SMALL_STATE(514)] = 22637, + [SMALL_STATE(515)] = 22647, + [SMALL_STATE(516)] = 22657, + [SMALL_STATE(517)] = 22669, + [SMALL_STATE(518)] = 22679, + [SMALL_STATE(519)] = 22689, + [SMALL_STATE(520)] = 22703, + [SMALL_STATE(521)] = 22717, + [SMALL_STATE(522)] = 22731, + [SMALL_STATE(523)] = 22741, + [SMALL_STATE(524)] = 22755, + [SMALL_STATE(525)] = 22765, + [SMALL_STATE(526)] = 22779, + [SMALL_STATE(527)] = 22789, + [SMALL_STATE(528)] = 22803, + [SMALL_STATE(529)] = 22813, + [SMALL_STATE(530)] = 22827, + [SMALL_STATE(531)] = 22837, + [SMALL_STATE(532)] = 22847, + [SMALL_STATE(533)] = 22857, + [SMALL_STATE(534)] = 22867, + [SMALL_STATE(535)] = 22877, + [SMALL_STATE(536)] = 22891, + [SMALL_STATE(537)] = 22901, + [SMALL_STATE(538)] = 22911, + [SMALL_STATE(539)] = 22921, + [SMALL_STATE(540)] = 22931, + [SMALL_STATE(541)] = 22945, + [SMALL_STATE(542)] = 22955, + [SMALL_STATE(543)] = 22965, + [SMALL_STATE(544)] = 22979, + [SMALL_STATE(545)] = 22989, + [SMALL_STATE(546)] = 23001, + [SMALL_STATE(547)] = 23011, + [SMALL_STATE(548)] = 23021, + [SMALL_STATE(549)] = 23035, + [SMALL_STATE(550)] = 23049, + [SMALL_STATE(551)] = 23059, + [SMALL_STATE(552)] = 23069, + [SMALL_STATE(553)] = 23080, + [SMALL_STATE(554)] = 23091, + [SMALL_STATE(555)] = 23102, + [SMALL_STATE(556)] = 23113, + [SMALL_STATE(557)] = 23124, + [SMALL_STATE(558)] = 23135, + [SMALL_STATE(559)] = 23146, + [SMALL_STATE(560)] = 23157, + [SMALL_STATE(561)] = 23166, + [SMALL_STATE(562)] = 23177, + [SMALL_STATE(563)] = 23188, + [SMALL_STATE(564)] = 23199, + [SMALL_STATE(565)] = 23210, + [SMALL_STATE(566)] = 23221, + [SMALL_STATE(567)] = 23232, + [SMALL_STATE(568)] = 23243, + [SMALL_STATE(569)] = 23254, + [SMALL_STATE(570)] = 23265, + [SMALL_STATE(571)] = 23276, + [SMALL_STATE(572)] = 23287, + [SMALL_STATE(573)] = 23298, + [SMALL_STATE(574)] = 23309, + [SMALL_STATE(575)] = 23320, + [SMALL_STATE(576)] = 23331, + [SMALL_STATE(577)] = 23342, + [SMALL_STATE(578)] = 23353, + [SMALL_STATE(579)] = 23364, + [SMALL_STATE(580)] = 23375, + [SMALL_STATE(581)] = 23386, + [SMALL_STATE(582)] = 23397, + [SMALL_STATE(583)] = 23408, + [SMALL_STATE(584)] = 23419, + [SMALL_STATE(585)] = 23430, + [SMALL_STATE(586)] = 23441, + [SMALL_STATE(587)] = 23452, + [SMALL_STATE(588)] = 23463, + [SMALL_STATE(589)] = 23474, + [SMALL_STATE(590)] = 23485, + [SMALL_STATE(591)] = 23496, + [SMALL_STATE(592)] = 23507, + [SMALL_STATE(593)] = 23518, + [SMALL_STATE(594)] = 23529, + [SMALL_STATE(595)] = 23540, + [SMALL_STATE(596)] = 23551, + [SMALL_STATE(597)] = 23562, + [SMALL_STATE(598)] = 23573, + [SMALL_STATE(599)] = 23584, + [SMALL_STATE(600)] = 23595, + [SMALL_STATE(601)] = 23606, + [SMALL_STATE(602)] = 23617, + [SMALL_STATE(603)] = 23628, + [SMALL_STATE(604)] = 23639, + [SMALL_STATE(605)] = 23650, + [SMALL_STATE(606)] = 23661, + [SMALL_STATE(607)] = 23672, + [SMALL_STATE(608)] = 23683, + [SMALL_STATE(609)] = 23694, + [SMALL_STATE(610)] = 23705, + [SMALL_STATE(611)] = 23716, + [SMALL_STATE(612)] = 23727, + [SMALL_STATE(613)] = 23738, + [SMALL_STATE(614)] = 23749, + [SMALL_STATE(615)] = 23760, + [SMALL_STATE(616)] = 23771, + [SMALL_STATE(617)] = 23782, + [SMALL_STATE(618)] = 23793, + [SMALL_STATE(619)] = 23804, + [SMALL_STATE(620)] = 23815, + [SMALL_STATE(621)] = 23826, + [SMALL_STATE(622)] = 23837, + [SMALL_STATE(623)] = 23848, + [SMALL_STATE(624)] = 23859, + [SMALL_STATE(625)] = 23870, + [SMALL_STATE(626)] = 23881, + [SMALL_STATE(627)] = 23892, + [SMALL_STATE(628)] = 23903, + [SMALL_STATE(629)] = 23914, + [SMALL_STATE(630)] = 23925, + [SMALL_STATE(631)] = 23933, + [SMALL_STATE(632)] = 23941, + [SMALL_STATE(633)] = 23949, + [SMALL_STATE(634)] = 23957, + [SMALL_STATE(635)] = 23965, + [SMALL_STATE(636)] = 23973, + [SMALL_STATE(637)] = 23981, + [SMALL_STATE(638)] = 23989, + [SMALL_STATE(639)] = 23997, + [SMALL_STATE(640)] = 24005, + [SMALL_STATE(641)] = 24013, + [SMALL_STATE(642)] = 24021, + [SMALL_STATE(643)] = 24029, + [SMALL_STATE(644)] = 24037, + [SMALL_STATE(645)] = 24045, + [SMALL_STATE(646)] = 24053, + [SMALL_STATE(647)] = 24061, + [SMALL_STATE(648)] = 24069, + [SMALL_STATE(649)] = 24077, + [SMALL_STATE(650)] = 24085, + [SMALL_STATE(651)] = 24093, + [SMALL_STATE(652)] = 24101, + [SMALL_STATE(653)] = 24109, + [SMALL_STATE(654)] = 24117, + [SMALL_STATE(655)] = 24125, + [SMALL_STATE(656)] = 24133, + [SMALL_STATE(657)] = 24141, + [SMALL_STATE(658)] = 24149, + [SMALL_STATE(659)] = 24157, + [SMALL_STATE(660)] = 24165, + [SMALL_STATE(661)] = 24173, + [SMALL_STATE(662)] = 24181, + [SMALL_STATE(663)] = 24189, + [SMALL_STATE(664)] = 24197, + [SMALL_STATE(665)] = 24205, + [SMALL_STATE(666)] = 24213, + [SMALL_STATE(667)] = 24221, + [SMALL_STATE(668)] = 24229, + [SMALL_STATE(669)] = 24237, + [SMALL_STATE(670)] = 24245, + [SMALL_STATE(671)] = 24253, + [SMALL_STATE(672)] = 24261, + [SMALL_STATE(673)] = 24269, + [SMALL_STATE(674)] = 24277, + [SMALL_STATE(675)] = 24285, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -32575,553 +32420,550 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 1), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [53] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 2), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(350), - [70] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(175), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(68), - [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(188), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(188), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(189), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(192), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(40), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(349), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(122), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(657), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(657), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(375), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 2), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(349), + [64] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), + [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(174), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(84), + [72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(214), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(214), + [78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(213), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(212), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(34), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(350), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(108), + [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(646), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(646), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(388), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 3), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 2), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 3), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 1), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 1), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 2), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 2), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 1), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 1), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(88), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(594), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), - [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(62), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(561), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 1), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), - [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_end, 1), - [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_end, 1), - [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numeric_lit, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numeric_lit, 1), - [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), - [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), - [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), - [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), + [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 3), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), + [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), + [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 3), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 2), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(82), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(612), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 2), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 2), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 1), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 1), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 1), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 1), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(55), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(579), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 4), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 4), + [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_end, 1), + [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_end, 1), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_index, 2), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_index, 2), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), - [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), - [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), - [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_index, 2), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_index, 2), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 4), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 4), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), - [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), - [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_end, 1), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_end, 1), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_index, 3), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_index, 3), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 3), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 3), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(70), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(624), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(63), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(633), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(75), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(559), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_start, 1), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_start, 1), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_start, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_start, 1), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(428), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(25), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(533), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(421), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(24), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(494), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(27), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(77), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(406), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(423), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(435), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(451), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(436), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 4), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 4), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 1), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 4), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 3), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 3), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 3), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 5), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 5), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_directive, 1), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 2), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 2), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 5), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(479), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_end, 1), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_end, 1), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 1), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 1), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), + [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), + [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), + [386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numeric_lit, 1), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numeric_lit, 1), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_index, 3), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_index, 3), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 3), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 3), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(68), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(588), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(47), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(554), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(76), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(619), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3, .production_id = 1), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_elem, 3, .production_id = 1), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_start, 1), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_start, 1), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_start, 1), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_start, 1), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(416), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(24), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(521), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(418), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(26), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(452), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(22), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(80), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(402), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(420), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(427), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(435), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(431), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 5), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 3), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 4), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 1), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 5), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_directive, 1), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 4), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 3), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(457), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 3), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 5), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 4), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 3), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 2), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 4), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 5), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 6), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 6), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 5), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 3), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(525), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_end, 1), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 7), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 8), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_start, 1), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 4), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 9), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 10), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 2), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 9), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 10), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 4), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 5), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 4), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_end, 1), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 6), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(520), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 7), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 6), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 8), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 3), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 5), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_start, 1), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_start, 1), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), - [1135] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_start, 1), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), + [1131] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus diff --git a/dialects/terraform/src/scanner.cc b/dialects/terraform/src/scanner.cc index 2d2eb33..18c3892 100644 --- a/dialects/terraform/src/scanner.cc +++ b/dialects/terraform/src/scanner.cc @@ -20,7 +20,6 @@ enum TokenType { TEMPLATE_DIRECTIVE_START, TEMPLATE_DIRECTIVE_END, HEREDOC_IDENTIFIER, - SHIM, }; enum ContextType { @@ -97,13 +96,6 @@ public: if (lexer->lookahead == '\0') { return false; } - if (valid_symbols[SHIM]) { - lexer->mark_end(lexer); - while(skip_comment(lexer)); - if (lexer->lookahead != '}') { - return accept_inplace(lexer, SHIM); - } - } // manage quoted context if (valid_symbols[QUOTED_TEMPLATE_START] && !in_quoted_context() && lexer->lookahead == '"') { diff --git a/make_grammar.js b/make_grammar.js index 3e38eda..b818395 100644 --- a/make_grammar.js +++ b/make_grammar.js @@ -24,20 +24,15 @@ module.exports = function make_grammar(dialect) { $.template_directive_start, $.template_directive_end, $.heredoc_identifier, - $._shim, ], extras: ($) => [$.comment, $._whitespace], rules: { // also allow objects to handle .tfvars in json format - config_file: ($) => optional($.body), + config_file: ($) => optional(choice($.body, $.object)), - body: ($) => - choice( - $._shim, - seq(optional($._shim), repeat1(choice($.attribute, $.block))) - ), + body: ($) => choice(repeat1(choice($.attribute, $.block))), attribute: ($) => seq($.identifier, "=", $.expression), @@ -47,7 +42,7 @@ module.exports = function make_grammar(dialect) { repeat(choice($.string_lit, $.identifier)), $.block_start, optional($.body), - $.block_end + $.block_end, ), block_start: ($) => "{", @@ -57,8 +52,8 @@ module.exports = function make_grammar(dialect) { token( seq( choice(/\p{ID_Start}/, "_"), - repeat(choice(/\p{ID_Continue}/, "-")) - ) + repeat(choice(/\p{ID_Continue}/, "-")), + ), ), expression: ($) => prec.right(choice($._expr_term, $.conditional)), @@ -78,7 +73,7 @@ module.exports = function make_grammar(dialect) { seq($._expr_term, $.index), seq($._expr_term, $.get_attr), seq($._expr_term, $.splat), - seq("(", $.expression, ")") + seq("(", $.expression, ")"), ), literal_value: ($) => @@ -97,8 +92,8 @@ module.exports = function make_grammar(dialect) { seq( $.quoted_template_start, optional($.template_literal), - $.quoted_template_end - ) + $.quoted_template_end, + ), ), collection_value: ($) => choice($.tuple, $.object), @@ -114,7 +109,7 @@ module.exports = function make_grammar(dialect) { seq( $.expression, repeat(seq($._comma, $.expression)), - optional($._comma) + optional($._comma), ), object: ($) => @@ -127,14 +122,14 @@ module.exports = function make_grammar(dialect) { seq( $.object_elem, repeat(seq(optional($._comma), $.object_elem)), - optional($._comma) + optional($._comma), ), object_elem: ($) => seq( field("key", $.expression), choice("=", ":"), - field("val", $.expression) + field("val", $.expression), ), index: ($) => choice($.new_index, $.legacy_index), @@ -160,7 +155,7 @@ module.exports = function make_grammar(dialect) { $.for_intro, $.expression, optional($.for_cond), - $.tuple_end + $.tuple_end, ), for_object_expr: ($) => @@ -172,7 +167,7 @@ module.exports = function make_grammar(dialect) { $.expression, optional($.ellipsis), optional($.for_cond), - $.object_end + $.object_end, ), for_intro: ($) => @@ -182,7 +177,7 @@ module.exports = function make_grammar(dialect) { optional(seq(",", $.identifier)), "in", $.expression, - ":" + ":", ), for_cond: ($) => seq("if", $.expression), @@ -194,7 +189,7 @@ module.exports = function make_grammar(dialect) { $.identifier, $._function_call_start, optional($.function_arguments), - $._function_call_end + $._function_call_end, ), _function_call_start: ($) => "(", @@ -205,8 +200,8 @@ module.exports = function make_grammar(dialect) { seq( $.expression, repeat(seq($._comma, $.expression)), - optional(choice($._comma, $.ellipsis)) - ) + optional(choice($._comma, $.ellipsis)), + ), ), ellipsis: ($) => token("..."), @@ -231,8 +226,8 @@ module.exports = function make_grammar(dialect) { return choice( ...table.map(([precedence, operator]) => - prec.left(precedence, seq($._expr_term, operator, $._expr_term)) - ) + prec.left(precedence, seq($._expr_term, operator, $._expr_term)), + ), ); }, @@ -244,8 +239,8 @@ module.exports = function make_grammar(dialect) { seq( $.quoted_template_start, optional($._template), - $.quoted_template_end - ) + $.quoted_template_end, + ), ), heredoc_template: ($) => @@ -253,7 +248,7 @@ module.exports = function make_grammar(dialect) { $.heredoc_start, $.heredoc_identifier, optional($._template), - $.heredoc_identifier + $.heredoc_identifier, ), heredoc_start: ($) => choice("<<", "<<-"), @@ -265,8 +260,8 @@ module.exports = function make_grammar(dialect) { choice( $.template_interpolation, $.template_directive, - $.template_literal - ) + $.template_literal, + ), ), template_literal: ($) => prec.right(repeat1($._template_literal_chunk)), @@ -277,7 +272,7 @@ module.exports = function make_grammar(dialect) { optional($.strip_marker), optional($.expression), optional($.strip_marker), - $.template_interpolation_end + $.template_interpolation_end, ), template_directive: ($) => choice($.template_for, $.template_if), @@ -295,7 +290,7 @@ module.exports = function make_grammar(dialect) { "in", $.expression, optional($.strip_marker), - $.template_directive_end + $.template_directive_end, ), template_for_end: ($) => @@ -304,7 +299,7 @@ module.exports = function make_grammar(dialect) { optional($.strip_marker), "endfor", optional($.strip_marker), - $.template_directive_end + $.template_directive_end, ), template_if: ($) => @@ -312,7 +307,7 @@ module.exports = function make_grammar(dialect) { $.template_if_intro, optional($._template), optional(seq($.template_else_intro, optional($._template))), - $.template_if_end + $.template_if_end, ), template_if_intro: ($) => @@ -322,7 +317,7 @@ module.exports = function make_grammar(dialect) { "if", $.expression, optional($.strip_marker), - $.template_directive_end + $.template_directive_end, ), template_else_intro: ($) => @@ -331,7 +326,7 @@ module.exports = function make_grammar(dialect) { optional($.strip_marker), "else", optional($.strip_marker), - $.template_directive_end + $.template_directive_end, ), template_if_end: ($) => @@ -340,7 +335,7 @@ module.exports = function make_grammar(dialect) { optional($.strip_marker), "endif", optional($.strip_marker), - $.template_directive_end + $.template_directive_end, ), // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 @@ -349,8 +344,8 @@ module.exports = function make_grammar(dialect) { choice( seq("#", /.*/), seq("//", /.*/), - seq("/*", /[^*]*\*+([^/*][^*]*\*+)*/, "/") - ) + seq("/*", /[^*]*\*+([^/*][^*]*\*+)*/, "/"), + ), ), _whitespace: ($) => token(/\s/), diff --git a/src/grammar.json b/src/grammar.json index ecd2f49..7ee79cf 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5,8 +5,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "body" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "body" + }, + { + "type": "SYMBOL", + "name": "object" + } + ] }, { "type": "BLANK" @@ -17,41 +26,20 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_shim" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_shim" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "SYMBOL", + "name": "block" } - } - ] + ] + } } ] }, @@ -1796,10 +1784,6 @@ { "type": "SYMBOL", "name": "heredoc_identifier" - }, - { - "type": "SYMBOL", - "name": "_shim" } ], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 0085e48..4580495 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -139,7 +139,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "attribute", @@ -202,6 +202,10 @@ { "type": "body", "named": true + }, + { + "type": "object", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 7d62f28..3165ec7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -8,10 +8,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 678 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 122 +#define SYMBOL_COUNT 121 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 57 -#define EXTERNAL_TOKEN_COUNT 9 +#define TOKEN_COUNT 56 +#define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 2 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 2 @@ -72,72 +72,71 @@ enum { sym_template_directive_start = 53, sym_template_directive_end = 54, sym_heredoc_identifier = 55, - sym__shim = 56, - sym_config_file = 57, - sym_body = 58, - sym_attribute = 59, - sym_block = 60, - sym_block_start = 61, - sym_block_end = 62, - sym_expression = 63, - sym__expr_term = 64, - sym_literal_value = 65, - sym_numeric_lit = 66, - sym_bool_lit = 67, - sym_string_lit = 68, - sym_collection_value = 69, - sym__comma = 70, - sym_tuple = 71, - sym_tuple_start = 72, - sym_tuple_end = 73, - sym__tuple_elems = 74, - sym_object = 75, - sym_object_start = 76, - sym_object_end = 77, - sym__object_elems = 78, - sym_object_elem = 79, - sym_index = 80, - sym_new_index = 81, - sym_legacy_index = 82, - sym_get_attr = 83, - sym_splat = 84, - sym_attr_splat = 85, - sym_full_splat = 86, - sym_for_expr = 87, - sym_for_tuple_expr = 88, - sym_for_object_expr = 89, - sym_for_intro = 90, - sym_for_cond = 91, - sym_variable_expr = 92, - sym_function_call = 93, - sym__function_call_start = 94, - sym__function_call_end = 95, - sym_function_arguments = 96, - sym_conditional = 97, - sym_operation = 98, - sym_unary_operation = 99, - sym_binary_operation = 100, - sym_template_expr = 101, - sym_quoted_template = 102, - sym_heredoc_template = 103, - sym_heredoc_start = 104, - aux_sym__template = 105, - sym_template_literal = 106, - sym_template_interpolation = 107, - sym_template_directive = 108, - sym_template_for = 109, - sym_template_for_start = 110, - sym_template_for_end = 111, - sym_template_if = 112, - sym_template_if_intro = 113, - sym_template_else_intro = 114, - sym_template_if_end = 115, - aux_sym_body_repeat1 = 116, - aux_sym_block_repeat1 = 117, - aux_sym__tuple_elems_repeat1 = 118, - aux_sym__object_elems_repeat1 = 119, - aux_sym_attr_splat_repeat1 = 120, - aux_sym_template_literal_repeat1 = 121, + sym_config_file = 56, + sym_body = 57, + sym_attribute = 58, + sym_block = 59, + sym_block_start = 60, + sym_block_end = 61, + sym_expression = 62, + sym__expr_term = 63, + sym_literal_value = 64, + sym_numeric_lit = 65, + sym_bool_lit = 66, + sym_string_lit = 67, + sym_collection_value = 68, + sym__comma = 69, + sym_tuple = 70, + sym_tuple_start = 71, + sym_tuple_end = 72, + sym__tuple_elems = 73, + sym_object = 74, + sym_object_start = 75, + sym_object_end = 76, + sym__object_elems = 77, + sym_object_elem = 78, + sym_index = 79, + sym_new_index = 80, + sym_legacy_index = 81, + sym_get_attr = 82, + sym_splat = 83, + sym_attr_splat = 84, + sym_full_splat = 85, + sym_for_expr = 86, + sym_for_tuple_expr = 87, + sym_for_object_expr = 88, + sym_for_intro = 89, + sym_for_cond = 90, + sym_variable_expr = 91, + sym_function_call = 92, + sym__function_call_start = 93, + sym__function_call_end = 94, + sym_function_arguments = 95, + sym_conditional = 96, + sym_operation = 97, + sym_unary_operation = 98, + sym_binary_operation = 99, + sym_template_expr = 100, + sym_quoted_template = 101, + sym_heredoc_template = 102, + sym_heredoc_start = 103, + aux_sym__template = 104, + sym_template_literal = 105, + sym_template_interpolation = 106, + sym_template_directive = 107, + sym_template_for = 108, + sym_template_for_start = 109, + sym_template_for_end = 110, + sym_template_if = 111, + sym_template_if_intro = 112, + sym_template_else_intro = 113, + sym_template_if_end = 114, + aux_sym_body_repeat1 = 115, + aux_sym_block_repeat1 = 116, + aux_sym__tuple_elems_repeat1 = 117, + aux_sym__object_elems_repeat1 = 118, + aux_sym_attr_splat_repeat1 = 119, + aux_sym_template_literal_repeat1 = 120, }; static const char * const ts_symbol_names[] = { @@ -197,7 +196,6 @@ static const char * const ts_symbol_names[] = { [sym_template_directive_start] = "template_directive_start", [sym_template_directive_end] = "template_directive_end", [sym_heredoc_identifier] = "heredoc_identifier", - [sym__shim] = "_shim", [sym_config_file] = "config_file", [sym_body] = "body", [sym_attribute] = "attribute", @@ -322,7 +320,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_template_directive_start] = sym_template_directive_start, [sym_template_directive_end] = sym_template_directive_end, [sym_heredoc_identifier] = sym_heredoc_identifier, - [sym__shim] = sym__shim, [sym_config_file] = sym_config_file, [sym_body] = sym_body, [sym_attribute] = sym_attribute, @@ -615,10 +612,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__shim] = { - .visible = false, - .named = true, - }, [sym_config_file] = { .visible = true, .named = true, @@ -921,24 +914,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 9, - [10] = 10, - [11] = 7, - [12] = 7, - [13] = 7, - [14] = 7, + [10] = 9, + [11] = 11, + [12] = 9, + [13] = 9, + [14] = 9, [15] = 15, - [16] = 15, - [17] = 15, - [18] = 15, - [19] = 15, - [20] = 20, + [16] = 16, + [17] = 16, + [18] = 16, + [19] = 16, + [20] = 16, [21] = 21, - [22] = 20, + [22] = 22, [23] = 23, - [24] = 20, - [25] = 25, - [26] = 25, - [27] = 25, + [24] = 21, + [25] = 21, + [26] = 23, + [27] = 23, [28] = 28, [29] = 29, [30] = 30, @@ -956,104 +949,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [42] = 42, [43] = 43, [44] = 44, - [45] = 45, + [45] = 43, [46] = 46, - [47] = 47, + [47] = 44, [48] = 48, - [49] = 44, - [50] = 47, - [51] = 45, - [52] = 41, - [53] = 47, + [49] = 49, + [50] = 50, + [51] = 49, + [52] = 50, + [53] = 49, [54] = 54, - [55] = 48, - [56] = 41, - [57] = 43, - [58] = 58, - [59] = 44, - [60] = 60, - [61] = 48, - [62] = 41, - [63] = 47, + [55] = 50, + [56] = 49, + [57] = 50, + [58] = 54, + [59] = 59, + [60] = 43, + [61] = 61, + [62] = 62, + [63] = 54, [64] = 64, - [65] = 65, - [66] = 48, - [67] = 44, - [68] = 58, + [65] = 49, + [66] = 61, + [67] = 61, + [68] = 61, [69] = 69, - [70] = 58, - [71] = 58, - [72] = 58, - [73] = 43, + [70] = 70, + [71] = 71, + [72] = 54, + [73] = 44, [74] = 74, - [75] = 43, - [76] = 43, - [77] = 45, - [78] = 44, - [79] = 48, - [80] = 41, - [81] = 81, - [82] = 45, - [83] = 47, - [84] = 84, - [85] = 85, + [75] = 75, + [76] = 44, + [77] = 50, + [78] = 54, + [79] = 79, + [80] = 42, + [81] = 43, + [82] = 44, + [83] = 42, + [84] = 42, + [85] = 61, [86] = 86, - [87] = 45, - [88] = 88, + [87] = 43, + [88] = 42, [89] = 89, [90] = 90, [91] = 91, [92] = 92, [93] = 93, - [94] = 93, + [94] = 94, [95] = 95, - [96] = 93, - [97] = 95, - [98] = 98, + [96] = 94, + [97] = 97, + [98] = 95, [99] = 99, [100] = 100, [101] = 95, [102] = 102, - [103] = 98, + [103] = 102, [104] = 99, - [105] = 105, - [106] = 100, - [107] = 105, - [108] = 99, - [109] = 102, - [110] = 98, - [111] = 99, - [112] = 105, - [113] = 100, - [114] = 93, - [115] = 98, - [116] = 95, + [105] = 100, + [106] = 94, + [107] = 107, + [108] = 107, + [109] = 97, + [110] = 107, + [111] = 107, + [112] = 100, + [113] = 99, + [114] = 95, + [115] = 97, + [116] = 94, [117] = 102, - [118] = 95, - [119] = 105, - [120] = 100, - [121] = 93, - [122] = 100, - [123] = 102, - [124] = 102, - [125] = 105, - [126] = 99, - [127] = 98, - [128] = 35, - [129] = 40, - [130] = 30, - [131] = 39, - [132] = 37, - [133] = 28, - [134] = 34, - [135] = 33, - [136] = 89, - [137] = 91, - [138] = 88, - [139] = 90, + [118] = 100, + [119] = 102, + [120] = 99, + [121] = 100, + [122] = 99, + [123] = 97, + [124] = 94, + [125] = 107, + [126] = 102, + [127] = 97, + [128] = 95, + [129] = 37, + [130] = 38, + [131] = 36, + [132] = 35, + [133] = 34, + [134] = 33, + [135] = 32, + [136] = 29, + [137] = 89, + [138] = 90, + [139] = 91, [140] = 92, [141] = 141, - [142] = 142, + [142] = 93, [143] = 143, [144] = 144, [145] = 145, @@ -1085,178 +1078,178 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [171] = 171, [172] = 172, [173] = 173, - [174] = 141, - [175] = 39, - [176] = 30, - [177] = 37, - [178] = 28, - [179] = 34, - [180] = 33, - [181] = 40, - [182] = 35, - [183] = 170, - [184] = 155, - [185] = 161, - [186] = 173, - [187] = 156, - [188] = 172, - [189] = 163, - [190] = 162, - [191] = 142, - [192] = 158, - [193] = 160, - [194] = 166, - [195] = 147, - [196] = 164, - [197] = 171, - [198] = 150, - [199] = 157, - [200] = 159, - [201] = 145, - [202] = 168, - [203] = 167, - [204] = 154, - [205] = 152, - [206] = 153, - [207] = 169, - [208] = 144, - [209] = 151, - [210] = 149, - [211] = 165, - [212] = 143, - [213] = 148, - [214] = 146, - [215] = 35, - [216] = 34, - [217] = 92, - [218] = 89, - [219] = 88, - [220] = 30, - [221] = 91, - [222] = 30, - [223] = 37, - [224] = 39, - [225] = 37, - [226] = 28, - [227] = 34, - [228] = 33, - [229] = 40, - [230] = 90, - [231] = 40, - [232] = 28, - [233] = 35, - [234] = 39, - [235] = 33, - [236] = 88, - [237] = 90, - [238] = 88, - [239] = 89, - [240] = 91, - [241] = 91, + [174] = 174, + [175] = 141, + [176] = 38, + [177] = 36, + [178] = 33, + [179] = 37, + [180] = 35, + [181] = 29, + [182] = 34, + [183] = 32, + [184] = 144, + [185] = 150, + [186] = 147, + [187] = 148, + [188] = 154, + [189] = 145, + [190] = 174, + [191] = 143, + [192] = 151, + [193] = 152, + [194] = 153, + [195] = 159, + [196] = 156, + [197] = 158, + [198] = 149, + [199] = 170, + [200] = 173, + [201] = 161, + [202] = 164, + [203] = 155, + [204] = 169, + [205] = 167, + [206] = 162, + [207] = 172, + [208] = 166, + [209] = 171, + [210] = 146, + [211] = 160, + [212] = 157, + [213] = 165, + [214] = 163, + [215] = 168, + [216] = 29, + [217] = 34, + [218] = 33, + [219] = 37, + [220] = 29, + [221] = 93, + [222] = 37, + [223] = 91, + [224] = 38, + [225] = 36, + [226] = 38, + [227] = 36, + [228] = 35, + [229] = 35, + [230] = 34, + [231] = 89, + [232] = 33, + [233] = 32, + [234] = 92, + [235] = 90, + [236] = 32, + [237] = 92, + [238] = 90, + [239] = 91, + [240] = 93, + [241] = 93, [242] = 92, - [243] = 90, + [243] = 89, [244] = 89, - [245] = 92, - [246] = 141, - [247] = 157, - [248] = 165, + [245] = 91, + [246] = 90, + [247] = 141, + [248] = 163, [249] = 148, - [250] = 149, - [251] = 167, - [252] = 151, - [253] = 152, - [254] = 158, - [255] = 146, - [256] = 145, - [257] = 164, - [258] = 144, - [259] = 141, - [260] = 173, - [261] = 150, - [262] = 160, - [263] = 147, - [264] = 154, - [265] = 166, - [266] = 172, - [267] = 141, - [268] = 163, - [269] = 153, - [270] = 159, - [271] = 155, - [272] = 156, - [273] = 142, - [274] = 143, - [275] = 169, - [276] = 161, - [277] = 162, - [278] = 171, - [279] = 170, - [280] = 168, - [281] = 152, - [282] = 165, - [283] = 169, - [284] = 168, - [285] = 143, - [286] = 167, - [287] = 173, - [288] = 144, - [289] = 142, - [290] = 156, - [291] = 155, - [292] = 153, - [293] = 163, - [294] = 164, - [295] = 147, - [296] = 150, - [297] = 159, - [298] = 152, + [250] = 141, + [251] = 146, + [252] = 147, + [253] = 151, + [254] = 152, + [255] = 153, + [256] = 156, + [257] = 158, + [258] = 161, + [259] = 164, + [260] = 169, + [261] = 160, + [262] = 170, + [263] = 141, + [264] = 165, + [265] = 167, + [266] = 144, + [267] = 143, + [268] = 174, + [269] = 145, + [270] = 154, + [271] = 173, + [272] = 172, + [273] = 171, + [274] = 168, + [275] = 166, + [276] = 162, + [277] = 159, + [278] = 157, + [279] = 155, + [280] = 150, + [281] = 149, + [282] = 166, + [283] = 165, + [284] = 163, + [285] = 167, + [286] = 165, + [287] = 149, + [288] = 170, + [289] = 160, + [290] = 169, + [291] = 164, + [292] = 161, + [293] = 173, + [294] = 158, + [295] = 172, + [296] = 156, + [297] = 143, + [298] = 153, [299] = 171, - [300] = 154, - [301] = 170, - [302] = 157, - [303] = 158, - [304] = 145, + [300] = 152, + [301] = 168, + [302] = 174, + [303] = 166, + [304] = 151, [305] = 162, - [306] = 146, - [307] = 171, - [308] = 148, - [309] = 160, - [310] = 149, - [311] = 168, - [312] = 167, - [313] = 151, - [314] = 172, - [315] = 166, - [316] = 154, - [317] = 165, - [318] = 162, - [319] = 160, - [320] = 166, - [321] = 158, - [322] = 172, - [323] = 157, - [324] = 161, - [325] = 173, - [326] = 169, - [327] = 144, - [328] = 164, - [329] = 145, - [330] = 146, - [331] = 143, - [332] = 142, - [333] = 148, - [334] = 149, - [335] = 159, - [336] = 156, - [337] = 151, - [338] = 155, - [339] = 153, - [340] = 163, - [341] = 170, - [342] = 147, - [343] = 150, - [344] = 161, - [345] = 345, + [306] = 148, + [307] = 147, + [308] = 146, + [309] = 145, + [310] = 154, + [311] = 159, + [312] = 173, + [313] = 172, + [314] = 171, + [315] = 168, + [316] = 174, + [317] = 145, + [318] = 157, + [319] = 162, + [320] = 159, + [321] = 157, + [322] = 155, + [323] = 155, + [324] = 150, + [325] = 153, + [326] = 150, + [327] = 156, + [328] = 144, + [329] = 158, + [330] = 161, + [331] = 164, + [332] = 152, + [333] = 151, + [334] = 148, + [335] = 147, + [336] = 146, + [337] = 149, + [338] = 170, + [339] = 160, + [340] = 169, + [341] = 143, + [342] = 163, + [343] = 144, + [344] = 154, + [345] = 167, [346] = 346, [347] = 347, [348] = 348, @@ -1264,89 +1257,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [350] = 350, [351] = 351, [352] = 351, - [353] = 351, + [353] = 353, [354] = 354, - [355] = 355, + [355] = 353, [356] = 356, [357] = 356, - [358] = 356, + [358] = 353, [359] = 359, - [360] = 360, + [360] = 356, [361] = 361, [362] = 362, [363] = 363, - [364] = 362, - [365] = 363, - [366] = 359, + [364] = 364, + [365] = 365, + [366] = 366, [367] = 367, [368] = 368, - [369] = 361, + [369] = 365, [370] = 370, - [371] = 361, - [372] = 363, - [373] = 373, - [374] = 374, - [375] = 374, - [376] = 370, - [377] = 361, - [378] = 374, - [379] = 359, - [380] = 360, - [381] = 381, - [382] = 363, + [371] = 366, + [372] = 365, + [373] = 367, + [374] = 364, + [375] = 362, + [376] = 376, + [377] = 370, + [378] = 363, + [379] = 368, + [380] = 363, + [381] = 361, + [382] = 364, [383] = 367, - [384] = 361, - [385] = 368, - [386] = 373, - [387] = 368, - [388] = 374, - [389] = 363, - [390] = 360, - [391] = 381, - [392] = 367, - [393] = 373, - [394] = 360, - [395] = 370, - [396] = 360, - [397] = 374, - [398] = 381, - [399] = 362, - [400] = 347, - [401] = 346, - [402] = 402, - [403] = 403, + [384] = 364, + [385] = 365, + [386] = 363, + [387] = 370, + [388] = 362, + [389] = 368, + [390] = 367, + [391] = 391, + [392] = 391, + [393] = 391, + [394] = 361, + [395] = 367, + [396] = 365, + [397] = 376, + [398] = 364, + [399] = 376, + [400] = 363, + [401] = 366, + [402] = 346, + [403] = 348, [404] = 404, [405] = 405, [406] = 406, [407] = 407, [408] = 408, - [409] = 409, - [410] = 407, - [411] = 407, + [409] = 408, + [410] = 408, + [411] = 411, [412] = 412, - [413] = 407, + [413] = 413, [414] = 414, - [415] = 407, - [416] = 416, + [415] = 408, + [416] = 408, [417] = 417, [418] = 418, [419] = 419, - [420] = 419, - [421] = 419, - [422] = 422, + [420] = 420, + [421] = 421, + [422] = 419, [423] = 423, - [424] = 417, - [425] = 422, - [426] = 419, - [427] = 427, - [428] = 428, - [429] = 347, - [430] = 430, - [431] = 346, - [432] = 430, - [433] = 417, - [434] = 419, - [435] = 422, + [424] = 419, + [425] = 423, + [426] = 348, + [427] = 419, + [428] = 421, + [429] = 429, + [430] = 421, + [431] = 431, + [432] = 346, + [433] = 419, + [434] = 429, + [435] = 435, [436] = 436, [437] = 437, [438] = 438, @@ -1354,239 +1347,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [440] = 440, [441] = 441, [442] = 442, - [443] = 439, - [444] = 441, - [445] = 445, + [443] = 443, + [444] = 444, + [445] = 423, [446] = 446, [447] = 447, - [448] = 436, - [449] = 449, - [450] = 450, + [448] = 448, + [449] = 438, + [450] = 442, [451] = 451, - [452] = 452, + [452] = 446, [453] = 453, - [454] = 454, - [455] = 455, + [454] = 442, + [455] = 441, [456] = 456, - [457] = 457, + [457] = 438, [458] = 458, - [459] = 459, - [460] = 460, + [459] = 448, + [460] = 444, [461] = 461, - [462] = 454, - [463] = 461, - [464] = 458, - [465] = 441, - [466] = 430, - [467] = 460, - [468] = 459, - [469] = 454, - [470] = 445, + [462] = 442, + [463] = 443, + [464] = 453, + [465] = 447, + [466] = 451, + [467] = 458, + [468] = 441, + [469] = 429, + [470] = 461, [471] = 471, [472] = 472, - [473] = 457, - [474] = 456, - [475] = 445, - [476] = 439, - [477] = 454, - [478] = 455, - [479] = 472, - [480] = 453, - [481] = 472, - [482] = 449, - [483] = 445, - [484] = 445, - [485] = 446, - [486] = 454, - [487] = 440, - [488] = 447, - [489] = 442, - [490] = 451, - [491] = 452, - [492] = 450, - [493] = 493, + [473] = 442, + [474] = 440, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 476, + [479] = 441, + [480] = 480, + [481] = 481, + [482] = 453, + [483] = 471, + [484] = 472, + [485] = 475, + [486] = 435, + [487] = 441, + [488] = 477, + [489] = 435, + [490] = 436, + [491] = 439, + [492] = 456, + [493] = 436, [494] = 494, - [495] = 452, - [496] = 453, + [495] = 495, + [496] = 496, [497] = 497, - [498] = 455, + [498] = 439, [499] = 456, - [500] = 457, + [500] = 476, [501] = 501, - [502] = 459, - [503] = 460, - [504] = 461, - [505] = 430, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 440, [506] = 506, - [507] = 458, - [508] = 347, - [509] = 509, - [510] = 510, - [511] = 511, + [507] = 507, + [508] = 495, + [509] = 472, + [510] = 471, + [511] = 346, [512] = 512, - [513] = 513, - [514] = 514, - [515] = 159, - [516] = 422, + [513] = 423, + [514] = 497, + [515] = 515, + [516] = 346, [517] = 517, - [518] = 510, - [519] = 519, + [518] = 458, + [519] = 451, [520] = 520, - [521] = 521, + [521] = 497, [522] = 522, - [523] = 523, + [523] = 447, [524] = 524, - [525] = 525, - [526] = 526, - [527] = 346, - [528] = 528, - [529] = 440, - [530] = 442, + [525] = 429, + [526] = 443, + [527] = 527, + [528] = 477, + [529] = 496, + [530] = 149, [531] = 531, [532] = 532, [533] = 533, - [534] = 494, - [535] = 494, - [536] = 526, - [537] = 537, + [534] = 503, + [535] = 444, + [536] = 536, + [537] = 495, [538] = 538, - [539] = 510, - [540] = 540, - [541] = 451, - [542] = 446, - [543] = 447, - [544] = 526, - [545] = 346, - [546] = 531, - [547] = 449, - [548] = 531, - [549] = 549, - [550] = 347, + [539] = 475, + [540] = 448, + [541] = 496, + [542] = 461, + [543] = 543, + [544] = 544, + [545] = 503, + [546] = 546, + [547] = 446, + [548] = 348, + [549] = 348, + [550] = 550, [551] = 551, - [552] = 436, + [552] = 552, [553] = 553, - [554] = 450, + [554] = 554, [555] = 555, [556] = 556, [557] = 557, [558] = 558, [559] = 559, [560] = 560, - [561] = 556, + [561] = 558, [562] = 562, [563] = 563, [564] = 564, [565] = 565, [566] = 566, - [567] = 567, + [567] = 560, [568] = 568, - [569] = 569, - [570] = 563, + [569] = 559, + [570] = 570, [571] = 571, [572] = 572, - [573] = 573, - [574] = 559, - [575] = 563, - [576] = 564, + [573] = 571, + [574] = 568, + [575] = 575, + [576] = 566, [577] = 577, [578] = 560, - [579] = 555, - [580] = 565, - [581] = 557, - [582] = 559, - [583] = 558, - [584] = 573, - [585] = 572, + [579] = 562, + [580] = 554, + [581] = 565, + [582] = 566, + [583] = 583, + [584] = 562, + [585] = 565, [586] = 586, - [587] = 565, - [588] = 573, - [589] = 556, - [590] = 562, - [591] = 571, - [592] = 592, - [593] = 563, - [594] = 558, - [595] = 557, - [596] = 596, - [597] = 565, - [598] = 568, - [599] = 569, - [600] = 558, - [601] = 559, - [602] = 562, - [603] = 571, - [604] = 572, - [605] = 573, - [606] = 555, - [607] = 569, - [608] = 563, - [609] = 568, - [610] = 564, - [611] = 557, - [612] = 560, - [613] = 613, - [614] = 555, - [615] = 562, + [587] = 571, + [588] = 562, + [589] = 589, + [590] = 590, + [591] = 558, + [592] = 556, + [593] = 566, + [594] = 594, + [595] = 560, + [596] = 566, + [597] = 554, + [598] = 586, + [599] = 554, + [600] = 563, + [601] = 564, + [602] = 560, + [603] = 554, + [604] = 586, + [605] = 568, + [606] = 559, + [607] = 562, + [608] = 577, + [609] = 586, + [610] = 571, + [611] = 564, + [612] = 575, + [613] = 563, + [614] = 577, + [615] = 571, [616] = 556, - [617] = 559, - [618] = 618, - [619] = 569, - [620] = 568, - [621] = 558, - [622] = 557, + [617] = 556, + [618] = 558, + [619] = 586, + [620] = 565, + [621] = 575, + [622] = 565, [623] = 623, - [624] = 556, - [625] = 562, - [626] = 573, - [627] = 555, - [628] = 568, - [629] = 569, - [630] = 630, - [631] = 565, + [624] = 563, + [625] = 558, + [626] = 556, + [627] = 627, + [628] = 628, + [629] = 563, + [630] = 564, + [631] = 564, [632] = 632, [633] = 633, [634] = 634, [635] = 635, [636] = 636, - [637] = 634, - [638] = 634, - [639] = 633, + [637] = 637, + [638] = 638, + [639] = 639, [640] = 640, [641] = 641, - [642] = 642, - [643] = 643, + [642] = 639, + [643] = 636, [644] = 644, - [645] = 645, + [645] = 641, [646] = 646, [647] = 647, - [648] = 648, - [649] = 648, + [648] = 633, + [649] = 649, [650] = 650, [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 656, + [656] = 633, [657] = 657, - [658] = 633, - [659] = 640, - [660] = 641, - [661] = 642, + [658] = 658, + [659] = 649, + [660] = 638, + [661] = 637, [662] = 662, - [663] = 642, - [664] = 664, - [665] = 647, - [666] = 647, - [667] = 647, - [668] = 648, - [669] = 669, - [670] = 647, - [671] = 671, + [663] = 663, + [664] = 638, + [665] = 633, + [666] = 666, + [667] = 641, + [668] = 639, + [669] = 636, + [670] = 633, + [671] = 637, [672] = 672, - [673] = 641, + [673] = 649, [674] = 674, - [675] = 640, + [675] = 675, [676] = 676, [677] = 677, }; @@ -11810,134 +11803,134 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 41, .external_lex_state = 2}, - [2] = {.lex_state = 3, .external_lex_state = 3}, - [3] = {.lex_state = 3, .external_lex_state = 3}, - [4] = {.lex_state = 3, .external_lex_state = 3}, - [5] = {.lex_state = 3, .external_lex_state = 3}, - [6] = {.lex_state = 3, .external_lex_state = 3}, - [7] = {.lex_state = 3, .external_lex_state = 3}, - [8] = {.lex_state = 1, .external_lex_state = 3}, - [9] = {.lex_state = 1, .external_lex_state = 3}, - [10] = {.lex_state = 1, .external_lex_state = 3}, - [11] = {.lex_state = 3, .external_lex_state = 3}, - [12] = {.lex_state = 3, .external_lex_state = 3}, - [13] = {.lex_state = 3, .external_lex_state = 3}, - [14] = {.lex_state = 3, .external_lex_state = 3}, - [15] = {.lex_state = 1, .external_lex_state = 3}, - [16] = {.lex_state = 1, .external_lex_state = 3}, - [17] = {.lex_state = 1, .external_lex_state = 3}, - [18] = {.lex_state = 1, .external_lex_state = 3}, - [19] = {.lex_state = 1, .external_lex_state = 3}, - [20] = {.lex_state = 1, .external_lex_state = 4}, + [1] = {.lex_state = 41}, + [2] = {.lex_state = 3, .external_lex_state = 2}, + [3] = {.lex_state = 3, .external_lex_state = 2}, + [4] = {.lex_state = 3, .external_lex_state = 2}, + [5] = {.lex_state = 3, .external_lex_state = 2}, + [6] = {.lex_state = 3, .external_lex_state = 2}, + [7] = {.lex_state = 1, .external_lex_state = 2}, + [8] = {.lex_state = 1, .external_lex_state = 2}, + [9] = {.lex_state = 3, .external_lex_state = 2}, + [10] = {.lex_state = 3, .external_lex_state = 2}, + [11] = {.lex_state = 1, .external_lex_state = 2}, + [12] = {.lex_state = 3, .external_lex_state = 2}, + [13] = {.lex_state = 3, .external_lex_state = 2}, + [14] = {.lex_state = 3, .external_lex_state = 2}, + [15] = {.lex_state = 1, .external_lex_state = 2}, + [16] = {.lex_state = 1, .external_lex_state = 2}, + [17] = {.lex_state = 1, .external_lex_state = 2}, + [18] = {.lex_state = 1, .external_lex_state = 2}, + [19] = {.lex_state = 1, .external_lex_state = 2}, + [20] = {.lex_state = 1, .external_lex_state = 2}, [21] = {.lex_state = 1, .external_lex_state = 3}, - [22] = {.lex_state = 1, .external_lex_state = 4}, + [22] = {.lex_state = 1, .external_lex_state = 2}, [23] = {.lex_state = 1, .external_lex_state = 3}, - [24] = {.lex_state = 1, .external_lex_state = 4}, - [25] = {.lex_state = 1, .external_lex_state = 4}, - [26] = {.lex_state = 1, .external_lex_state = 4}, - [27] = {.lex_state = 1, .external_lex_state = 4}, - [28] = {.lex_state = 1, .external_lex_state = 3}, - [29] = {.lex_state = 1, .external_lex_state = 3}, - [30] = {.lex_state = 1, .external_lex_state = 3}, - [31] = {.lex_state = 1, .external_lex_state = 3}, - [32] = {.lex_state = 1, .external_lex_state = 3}, - [33] = {.lex_state = 1, .external_lex_state = 3}, - [34] = {.lex_state = 1, .external_lex_state = 3}, - [35] = {.lex_state = 1, .external_lex_state = 3}, - [36] = {.lex_state = 1, .external_lex_state = 3}, - [37] = {.lex_state = 1, .external_lex_state = 3}, - [38] = {.lex_state = 1, .external_lex_state = 3}, - [39] = {.lex_state = 1, .external_lex_state = 3}, - [40] = {.lex_state = 1, .external_lex_state = 3}, - [41] = {.lex_state = 1, .external_lex_state = 3}, - [42] = {.lex_state = 1, .external_lex_state = 3}, - [43] = {.lex_state = 1, .external_lex_state = 3}, - [44] = {.lex_state = 1, .external_lex_state = 3}, - [45] = {.lex_state = 1, .external_lex_state = 3}, - [46] = {.lex_state = 1, .external_lex_state = 3}, - [47] = {.lex_state = 1, .external_lex_state = 3}, - [48] = {.lex_state = 1, .external_lex_state = 3}, - [49] = {.lex_state = 1, .external_lex_state = 3}, - [50] = {.lex_state = 1, .external_lex_state = 3}, - [51] = {.lex_state = 1, .external_lex_state = 3}, - [52] = {.lex_state = 1, .external_lex_state = 3}, - [53] = {.lex_state = 1, .external_lex_state = 3}, - [54] = {.lex_state = 1, .external_lex_state = 3}, - [55] = {.lex_state = 1, .external_lex_state = 3}, - [56] = {.lex_state = 1, .external_lex_state = 3}, - [57] = {.lex_state = 1, .external_lex_state = 3}, - [58] = {.lex_state = 1, .external_lex_state = 3}, - [59] = {.lex_state = 1, .external_lex_state = 3}, - [60] = {.lex_state = 1, .external_lex_state = 3}, - [61] = {.lex_state = 1, .external_lex_state = 3}, - [62] = {.lex_state = 1, .external_lex_state = 3}, - [63] = {.lex_state = 1, .external_lex_state = 3}, - [64] = {.lex_state = 1, .external_lex_state = 3}, - [65] = {.lex_state = 1, .external_lex_state = 3}, - [66] = {.lex_state = 1, .external_lex_state = 3}, - [67] = {.lex_state = 1, .external_lex_state = 3}, - [68] = {.lex_state = 1, .external_lex_state = 3}, - [69] = {.lex_state = 1, .external_lex_state = 3}, - [70] = {.lex_state = 1, .external_lex_state = 3}, - [71] = {.lex_state = 1, .external_lex_state = 3}, - [72] = {.lex_state = 1, .external_lex_state = 3}, - [73] = {.lex_state = 1, .external_lex_state = 3}, - [74] = {.lex_state = 1, .external_lex_state = 3}, - [75] = {.lex_state = 1, .external_lex_state = 3}, - [76] = {.lex_state = 1, .external_lex_state = 3}, - [77] = {.lex_state = 1, .external_lex_state = 3}, - [78] = {.lex_state = 1, .external_lex_state = 3}, - [79] = {.lex_state = 1, .external_lex_state = 3}, - [80] = {.lex_state = 1, .external_lex_state = 3}, - [81] = {.lex_state = 1, .external_lex_state = 3}, - [82] = {.lex_state = 1, .external_lex_state = 3}, - [83] = {.lex_state = 1, .external_lex_state = 3}, - [84] = {.lex_state = 1, .external_lex_state = 3}, - [85] = {.lex_state = 1, .external_lex_state = 3}, - [86] = {.lex_state = 1, .external_lex_state = 3}, - [87] = {.lex_state = 1, .external_lex_state = 3}, - [88] = {.lex_state = 1, .external_lex_state = 3}, - [89] = {.lex_state = 1, .external_lex_state = 3}, - [90] = {.lex_state = 1, .external_lex_state = 3}, - [91] = {.lex_state = 1, .external_lex_state = 3}, - [92] = {.lex_state = 1, .external_lex_state = 3}, - [93] = {.lex_state = 1, .external_lex_state = 3}, - [94] = {.lex_state = 1, .external_lex_state = 3}, - [95] = {.lex_state = 1, .external_lex_state = 3}, - [96] = {.lex_state = 1, .external_lex_state = 3}, - [97] = {.lex_state = 1, .external_lex_state = 3}, - [98] = {.lex_state = 1, .external_lex_state = 3}, - [99] = {.lex_state = 1, .external_lex_state = 3}, - [100] = {.lex_state = 1, .external_lex_state = 3}, - [101] = {.lex_state = 1, .external_lex_state = 3}, - [102] = {.lex_state = 1, .external_lex_state = 3}, - [103] = {.lex_state = 1, .external_lex_state = 3}, - [104] = {.lex_state = 1, .external_lex_state = 3}, - [105] = {.lex_state = 1, .external_lex_state = 3}, - [106] = {.lex_state = 1, .external_lex_state = 3}, - [107] = {.lex_state = 1, .external_lex_state = 3}, - [108] = {.lex_state = 1, .external_lex_state = 3}, - [109] = {.lex_state = 1, .external_lex_state = 3}, - [110] = {.lex_state = 1, .external_lex_state = 3}, - [111] = {.lex_state = 1, .external_lex_state = 3}, - [112] = {.lex_state = 1, .external_lex_state = 3}, - [113] = {.lex_state = 1, .external_lex_state = 3}, - [114] = {.lex_state = 1, .external_lex_state = 3}, - [115] = {.lex_state = 1, .external_lex_state = 3}, - [116] = {.lex_state = 1, .external_lex_state = 3}, - [117] = {.lex_state = 1, .external_lex_state = 3}, - [118] = {.lex_state = 1, .external_lex_state = 3}, - [119] = {.lex_state = 1, .external_lex_state = 3}, - [120] = {.lex_state = 1, .external_lex_state = 3}, - [121] = {.lex_state = 1, .external_lex_state = 3}, - [122] = {.lex_state = 1, .external_lex_state = 3}, - [123] = {.lex_state = 1, .external_lex_state = 3}, - [124] = {.lex_state = 1, .external_lex_state = 3}, - [125] = {.lex_state = 1, .external_lex_state = 3}, - [126] = {.lex_state = 1, .external_lex_state = 3}, - [127] = {.lex_state = 1, .external_lex_state = 3}, - [128] = {.lex_state = 41}, + [24] = {.lex_state = 1, .external_lex_state = 3}, + [25] = {.lex_state = 1, .external_lex_state = 3}, + [26] = {.lex_state = 1, .external_lex_state = 3}, + [27] = {.lex_state = 1, .external_lex_state = 3}, + [28] = {.lex_state = 1, .external_lex_state = 2}, + [29] = {.lex_state = 1, .external_lex_state = 2}, + [30] = {.lex_state = 1, .external_lex_state = 2}, + [31] = {.lex_state = 1, .external_lex_state = 2}, + [32] = {.lex_state = 1, .external_lex_state = 2}, + [33] = {.lex_state = 1, .external_lex_state = 2}, + [34] = {.lex_state = 1, .external_lex_state = 2}, + [35] = {.lex_state = 1, .external_lex_state = 2}, + [36] = {.lex_state = 1, .external_lex_state = 2}, + [37] = {.lex_state = 1, .external_lex_state = 2}, + [38] = {.lex_state = 1, .external_lex_state = 2}, + [39] = {.lex_state = 1, .external_lex_state = 2}, + [40] = {.lex_state = 1, .external_lex_state = 2}, + [41] = {.lex_state = 1, .external_lex_state = 2}, + [42] = {.lex_state = 1, .external_lex_state = 2}, + [43] = {.lex_state = 1, .external_lex_state = 2}, + [44] = {.lex_state = 1, .external_lex_state = 2}, + [45] = {.lex_state = 1, .external_lex_state = 2}, + [46] = {.lex_state = 1, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, + [48] = {.lex_state = 1, .external_lex_state = 2}, + [49] = {.lex_state = 1, .external_lex_state = 2}, + [50] = {.lex_state = 1, .external_lex_state = 2}, + [51] = {.lex_state = 1, .external_lex_state = 2}, + [52] = {.lex_state = 1, .external_lex_state = 2}, + [53] = {.lex_state = 1, .external_lex_state = 2}, + [54] = {.lex_state = 1, .external_lex_state = 2}, + [55] = {.lex_state = 1, .external_lex_state = 2}, + [56] = {.lex_state = 1, .external_lex_state = 2}, + [57] = {.lex_state = 1, .external_lex_state = 2}, + [58] = {.lex_state = 1, .external_lex_state = 2}, + [59] = {.lex_state = 1, .external_lex_state = 2}, + [60] = {.lex_state = 1, .external_lex_state = 2}, + [61] = {.lex_state = 1, .external_lex_state = 2}, + [62] = {.lex_state = 1, .external_lex_state = 2}, + [63] = {.lex_state = 1, .external_lex_state = 2}, + [64] = {.lex_state = 1, .external_lex_state = 2}, + [65] = {.lex_state = 1, .external_lex_state = 2}, + [66] = {.lex_state = 1, .external_lex_state = 2}, + [67] = {.lex_state = 1, .external_lex_state = 2}, + [68] = {.lex_state = 1, .external_lex_state = 2}, + [69] = {.lex_state = 1, .external_lex_state = 2}, + [70] = {.lex_state = 1, .external_lex_state = 2}, + [71] = {.lex_state = 1, .external_lex_state = 2}, + [72] = {.lex_state = 1, .external_lex_state = 2}, + [73] = {.lex_state = 1, .external_lex_state = 2}, + [74] = {.lex_state = 1, .external_lex_state = 2}, + [75] = {.lex_state = 1, .external_lex_state = 2}, + [76] = {.lex_state = 1, .external_lex_state = 2}, + [77] = {.lex_state = 1, .external_lex_state = 2}, + [78] = {.lex_state = 1, .external_lex_state = 2}, + [79] = {.lex_state = 1, .external_lex_state = 2}, + [80] = {.lex_state = 1, .external_lex_state = 2}, + [81] = {.lex_state = 1, .external_lex_state = 2}, + [82] = {.lex_state = 1, .external_lex_state = 2}, + [83] = {.lex_state = 1, .external_lex_state = 2}, + [84] = {.lex_state = 1, .external_lex_state = 2}, + [85] = {.lex_state = 1, .external_lex_state = 2}, + [86] = {.lex_state = 1, .external_lex_state = 2}, + [87] = {.lex_state = 1, .external_lex_state = 2}, + [88] = {.lex_state = 1, .external_lex_state = 2}, + [89] = {.lex_state = 1, .external_lex_state = 2}, + [90] = {.lex_state = 1, .external_lex_state = 2}, + [91] = {.lex_state = 1, .external_lex_state = 2}, + [92] = {.lex_state = 1, .external_lex_state = 2}, + [93] = {.lex_state = 1, .external_lex_state = 2}, + [94] = {.lex_state = 1, .external_lex_state = 2}, + [95] = {.lex_state = 1, .external_lex_state = 2}, + [96] = {.lex_state = 1, .external_lex_state = 2}, + [97] = {.lex_state = 1, .external_lex_state = 2}, + [98] = {.lex_state = 1, .external_lex_state = 2}, + [99] = {.lex_state = 1, .external_lex_state = 2}, + [100] = {.lex_state = 1, .external_lex_state = 2}, + [101] = {.lex_state = 1, .external_lex_state = 2}, + [102] = {.lex_state = 1, .external_lex_state = 2}, + [103] = {.lex_state = 1, .external_lex_state = 2}, + [104] = {.lex_state = 1, .external_lex_state = 2}, + [105] = {.lex_state = 1, .external_lex_state = 2}, + [106] = {.lex_state = 1, .external_lex_state = 2}, + [107] = {.lex_state = 1, .external_lex_state = 2}, + [108] = {.lex_state = 1, .external_lex_state = 2}, + [109] = {.lex_state = 1, .external_lex_state = 2}, + [110] = {.lex_state = 1, .external_lex_state = 2}, + [111] = {.lex_state = 1, .external_lex_state = 2}, + [112] = {.lex_state = 1, .external_lex_state = 2}, + [113] = {.lex_state = 1, .external_lex_state = 2}, + [114] = {.lex_state = 1, .external_lex_state = 2}, + [115] = {.lex_state = 1, .external_lex_state = 2}, + [116] = {.lex_state = 1, .external_lex_state = 2}, + [117] = {.lex_state = 1, .external_lex_state = 2}, + [118] = {.lex_state = 1, .external_lex_state = 2}, + [119] = {.lex_state = 1, .external_lex_state = 2}, + [120] = {.lex_state = 1, .external_lex_state = 2}, + [121] = {.lex_state = 1, .external_lex_state = 2}, + [122] = {.lex_state = 1, .external_lex_state = 2}, + [123] = {.lex_state = 1, .external_lex_state = 2}, + [124] = {.lex_state = 1, .external_lex_state = 2}, + [125] = {.lex_state = 1, .external_lex_state = 2}, + [126] = {.lex_state = 1, .external_lex_state = 2}, + [127] = {.lex_state = 1, .external_lex_state = 2}, + [128] = {.lex_state = 1, .external_lex_state = 2}, [129] = {.lex_state = 41}, [130] = {.lex_state = 41}, [131] = {.lex_state = 41}, @@ -11950,41 +11943,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [138] = {.lex_state = 41}, [139] = {.lex_state = 41}, [140] = {.lex_state = 41}, - [141] = {.lex_state = 1, .external_lex_state = 3}, - [142] = {.lex_state = 1, .external_lex_state = 3}, - [143] = {.lex_state = 1, .external_lex_state = 3}, - [144] = {.lex_state = 1, .external_lex_state = 3}, - [145] = {.lex_state = 1, .external_lex_state = 3}, - [146] = {.lex_state = 1, .external_lex_state = 3}, - [147] = {.lex_state = 1, .external_lex_state = 3}, - [148] = {.lex_state = 1, .external_lex_state = 3}, - [149] = {.lex_state = 1, .external_lex_state = 3}, - [150] = {.lex_state = 1, .external_lex_state = 3}, - [151] = {.lex_state = 1, .external_lex_state = 3}, - [152] = {.lex_state = 1, .external_lex_state = 3}, - [153] = {.lex_state = 1, .external_lex_state = 3}, - [154] = {.lex_state = 1, .external_lex_state = 3}, - [155] = {.lex_state = 1, .external_lex_state = 3}, - [156] = {.lex_state = 1, .external_lex_state = 3}, - [157] = {.lex_state = 1, .external_lex_state = 3}, - [158] = {.lex_state = 1, .external_lex_state = 3}, - [159] = {.lex_state = 1, .external_lex_state = 3}, - [160] = {.lex_state = 1, .external_lex_state = 3}, - [161] = {.lex_state = 1, .external_lex_state = 3}, - [162] = {.lex_state = 1, .external_lex_state = 3}, - [163] = {.lex_state = 1, .external_lex_state = 3}, - [164] = {.lex_state = 1, .external_lex_state = 3}, - [165] = {.lex_state = 1, .external_lex_state = 3}, - [166] = {.lex_state = 1, .external_lex_state = 3}, - [167] = {.lex_state = 1, .external_lex_state = 3}, - [168] = {.lex_state = 1, .external_lex_state = 3}, - [169] = {.lex_state = 1, .external_lex_state = 3}, - [170] = {.lex_state = 1, .external_lex_state = 3}, - [171] = {.lex_state = 1, .external_lex_state = 3}, - [172] = {.lex_state = 1, .external_lex_state = 3}, - [173] = {.lex_state = 1, .external_lex_state = 3}, - [174] = {.lex_state = 41}, - [175] = {.lex_state = 2}, + [141] = {.lex_state = 1, .external_lex_state = 2}, + [142] = {.lex_state = 41}, + [143] = {.lex_state = 1, .external_lex_state = 2}, + [144] = {.lex_state = 1, .external_lex_state = 2}, + [145] = {.lex_state = 1, .external_lex_state = 2}, + [146] = {.lex_state = 1, .external_lex_state = 2}, + [147] = {.lex_state = 1, .external_lex_state = 2}, + [148] = {.lex_state = 1, .external_lex_state = 2}, + [149] = {.lex_state = 1, .external_lex_state = 2}, + [150] = {.lex_state = 1, .external_lex_state = 2}, + [151] = {.lex_state = 1, .external_lex_state = 2}, + [152] = {.lex_state = 1, .external_lex_state = 2}, + [153] = {.lex_state = 1, .external_lex_state = 2}, + [154] = {.lex_state = 1, .external_lex_state = 2}, + [155] = {.lex_state = 1, .external_lex_state = 2}, + [156] = {.lex_state = 1, .external_lex_state = 2}, + [157] = {.lex_state = 1, .external_lex_state = 2}, + [158] = {.lex_state = 1, .external_lex_state = 2}, + [159] = {.lex_state = 1, .external_lex_state = 2}, + [160] = {.lex_state = 1, .external_lex_state = 2}, + [161] = {.lex_state = 1, .external_lex_state = 2}, + [162] = {.lex_state = 1, .external_lex_state = 2}, + [163] = {.lex_state = 1, .external_lex_state = 2}, + [164] = {.lex_state = 1, .external_lex_state = 2}, + [165] = {.lex_state = 1, .external_lex_state = 2}, + [166] = {.lex_state = 1, .external_lex_state = 2}, + [167] = {.lex_state = 1, .external_lex_state = 2}, + [168] = {.lex_state = 1, .external_lex_state = 2}, + [169] = {.lex_state = 1, .external_lex_state = 2}, + [170] = {.lex_state = 1, .external_lex_state = 2}, + [171] = {.lex_state = 1, .external_lex_state = 2}, + [172] = {.lex_state = 1, .external_lex_state = 2}, + [173] = {.lex_state = 1, .external_lex_state = 2}, + [174] = {.lex_state = 1, .external_lex_state = 2}, + [175] = {.lex_state = 41}, [176] = {.lex_state = 2}, [177] = {.lex_state = 2}, [178] = {.lex_state = 2}, @@ -11992,7 +11985,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 2}, [181] = {.lex_state = 2}, [182] = {.lex_state = 2}, - [183] = {.lex_state = 41}, + [183] = {.lex_state = 2}, [184] = {.lex_state = 41}, [185] = {.lex_state = 41}, [186] = {.lex_state = 41}, @@ -12024,42 +12017,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [212] = {.lex_state = 41}, [213] = {.lex_state = 41}, [214] = {.lex_state = 41}, - [215] = {.lex_state = 41, .external_lex_state = 5}, - [216] = {.lex_state = 41, .external_lex_state = 6}, - [217] = {.lex_state = 2}, - [218] = {.lex_state = 2}, - [219] = {.lex_state = 2}, - [220] = {.lex_state = 41, .external_lex_state = 6}, + [215] = {.lex_state = 41}, + [216] = {.lex_state = 41, .external_lex_state = 4}, + [217] = {.lex_state = 41, .external_lex_state = 4}, + [218] = {.lex_state = 41, .external_lex_state = 4}, + [219] = {.lex_state = 41, .external_lex_state = 5}, + [220] = {.lex_state = 41, .external_lex_state = 5}, [221] = {.lex_state = 2}, - [222] = {.lex_state = 41, .external_lex_state = 5}, - [223] = {.lex_state = 41, .external_lex_state = 6}, - [224] = {.lex_state = 41, .external_lex_state = 5}, - [225] = {.lex_state = 41, .external_lex_state = 5}, + [222] = {.lex_state = 41, .external_lex_state = 4}, + [223] = {.lex_state = 2}, + [224] = {.lex_state = 41, .external_lex_state = 4}, + [225] = {.lex_state = 41, .external_lex_state = 4}, [226] = {.lex_state = 41, .external_lex_state = 5}, [227] = {.lex_state = 41, .external_lex_state = 5}, - [228] = {.lex_state = 41, .external_lex_state = 5}, - [229] = {.lex_state = 41, .external_lex_state = 6}, - [230] = {.lex_state = 2}, - [231] = {.lex_state = 41, .external_lex_state = 5}, - [232] = {.lex_state = 41, .external_lex_state = 6}, - [233] = {.lex_state = 41, .external_lex_state = 6}, - [234] = {.lex_state = 41, .external_lex_state = 6}, - [235] = {.lex_state = 41, .external_lex_state = 6}, - [236] = {.lex_state = 41, .external_lex_state = 5}, - [237] = {.lex_state = 41, .external_lex_state = 6}, - [238] = {.lex_state = 41, .external_lex_state = 6}, - [239] = {.lex_state = 41, .external_lex_state = 6}, - [240] = {.lex_state = 41, .external_lex_state = 6}, + [228] = {.lex_state = 41, .external_lex_state = 4}, + [229] = {.lex_state = 41, .external_lex_state = 5}, + [230] = {.lex_state = 41, .external_lex_state = 5}, + [231] = {.lex_state = 2}, + [232] = {.lex_state = 41, .external_lex_state = 5}, + [233] = {.lex_state = 41, .external_lex_state = 5}, + [234] = {.lex_state = 2}, + [235] = {.lex_state = 2}, + [236] = {.lex_state = 41, .external_lex_state = 4}, + [237] = {.lex_state = 41, .external_lex_state = 5}, + [238] = {.lex_state = 41, .external_lex_state = 5}, + [239] = {.lex_state = 41, .external_lex_state = 4}, + [240] = {.lex_state = 41, .external_lex_state = 4}, [241] = {.lex_state = 41, .external_lex_state = 5}, - [242] = {.lex_state = 41, .external_lex_state = 5}, + [242] = {.lex_state = 41, .external_lex_state = 4}, [243] = {.lex_state = 41, .external_lex_state = 5}, - [244] = {.lex_state = 41, .external_lex_state = 5}, - [245] = {.lex_state = 41, .external_lex_state = 6}, - [246] = {.lex_state = 2}, + [244] = {.lex_state = 41, .external_lex_state = 4}, + [245] = {.lex_state = 41, .external_lex_state = 5}, + [246] = {.lex_state = 41, .external_lex_state = 4}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, [249] = {.lex_state = 2}, - [250] = {.lex_state = 2}, + [250] = {.lex_state = 41, .external_lex_state = 4}, [251] = {.lex_state = 2}, [252] = {.lex_state = 2}, [253] = {.lex_state = 2}, @@ -12068,15 +12061,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 2}, [257] = {.lex_state = 2}, [258] = {.lex_state = 2}, - [259] = {.lex_state = 41, .external_lex_state = 5}, + [259] = {.lex_state = 2}, [260] = {.lex_state = 2}, [261] = {.lex_state = 2}, [262] = {.lex_state = 2}, - [263] = {.lex_state = 2}, + [263] = {.lex_state = 41, .external_lex_state = 5}, [264] = {.lex_state = 2}, [265] = {.lex_state = 2}, [266] = {.lex_state = 2}, - [267] = {.lex_state = 41, .external_lex_state = 6}, + [267] = {.lex_state = 2}, [268] = {.lex_state = 2}, [269] = {.lex_state = 2}, [270] = {.lex_state = 2}, @@ -12090,403 +12083,403 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [278] = {.lex_state = 2}, [279] = {.lex_state = 2}, [280] = {.lex_state = 2}, - [281] = {.lex_state = 41, .external_lex_state = 6}, - [282] = {.lex_state = 41, .external_lex_state = 5}, + [281] = {.lex_state = 2}, + [282] = {.lex_state = 41, .external_lex_state = 4}, [283] = {.lex_state = 41, .external_lex_state = 5}, - [284] = {.lex_state = 41, .external_lex_state = 6}, - [285] = {.lex_state = 41, .external_lex_state = 5}, - [286] = {.lex_state = 41, .external_lex_state = 6}, - [287] = {.lex_state = 41, .external_lex_state = 6}, - [288] = {.lex_state = 41, .external_lex_state = 6}, - [289] = {.lex_state = 41, .external_lex_state = 5}, - [290] = {.lex_state = 41, .external_lex_state = 5}, - [291] = {.lex_state = 41, .external_lex_state = 5}, - [292] = {.lex_state = 41, .external_lex_state = 5}, + [284] = {.lex_state = 41, .external_lex_state = 5}, + [285] = {.lex_state = 41, .external_lex_state = 4}, + [286] = {.lex_state = 41, .external_lex_state = 4}, + [287] = {.lex_state = 41, .external_lex_state = 5}, + [288] = {.lex_state = 41, .external_lex_state = 4}, + [289] = {.lex_state = 41, .external_lex_state = 4}, + [290] = {.lex_state = 41, .external_lex_state = 4}, + [291] = {.lex_state = 41, .external_lex_state = 4}, + [292] = {.lex_state = 41, .external_lex_state = 4}, [293] = {.lex_state = 41, .external_lex_state = 5}, - [294] = {.lex_state = 41, .external_lex_state = 6}, + [294] = {.lex_state = 41, .external_lex_state = 4}, [295] = {.lex_state = 41, .external_lex_state = 5}, - [296] = {.lex_state = 41, .external_lex_state = 5}, - [297] = {.lex_state = 41, .external_lex_state = 6}, - [298] = {.lex_state = 41, .external_lex_state = 5}, - [299] = {.lex_state = 41, .external_lex_state = 6}, - [300] = {.lex_state = 41, .external_lex_state = 5}, + [296] = {.lex_state = 41, .external_lex_state = 4}, + [297] = {.lex_state = 41, .external_lex_state = 4}, + [298] = {.lex_state = 41, .external_lex_state = 4}, + [299] = {.lex_state = 41, .external_lex_state = 5}, + [300] = {.lex_state = 41, .external_lex_state = 4}, [301] = {.lex_state = 41, .external_lex_state = 5}, - [302] = {.lex_state = 41, .external_lex_state = 5}, + [302] = {.lex_state = 41, .external_lex_state = 4}, [303] = {.lex_state = 41, .external_lex_state = 5}, - [304] = {.lex_state = 41, .external_lex_state = 6}, + [304] = {.lex_state = 41, .external_lex_state = 4}, [305] = {.lex_state = 41, .external_lex_state = 5}, - [306] = {.lex_state = 41, .external_lex_state = 6}, - [307] = {.lex_state = 41, .external_lex_state = 5}, - [308] = {.lex_state = 41, .external_lex_state = 6}, - [309] = {.lex_state = 41, .external_lex_state = 5}, - [310] = {.lex_state = 41, .external_lex_state = 6}, + [306] = {.lex_state = 41, .external_lex_state = 4}, + [307] = {.lex_state = 41, .external_lex_state = 4}, + [308] = {.lex_state = 41, .external_lex_state = 4}, + [309] = {.lex_state = 41, .external_lex_state = 4}, + [310] = {.lex_state = 41, .external_lex_state = 4}, [311] = {.lex_state = 41, .external_lex_state = 5}, - [312] = {.lex_state = 41, .external_lex_state = 5}, - [313] = {.lex_state = 41, .external_lex_state = 6}, - [314] = {.lex_state = 41, .external_lex_state = 6}, - [315] = {.lex_state = 41, .external_lex_state = 6}, - [316] = {.lex_state = 41, .external_lex_state = 6}, - [317] = {.lex_state = 41, .external_lex_state = 6}, - [318] = {.lex_state = 41, .external_lex_state = 6}, - [319] = {.lex_state = 41, .external_lex_state = 6}, - [320] = {.lex_state = 41, .external_lex_state = 5}, - [321] = {.lex_state = 41, .external_lex_state = 6}, + [312] = {.lex_state = 41, .external_lex_state = 4}, + [313] = {.lex_state = 41, .external_lex_state = 4}, + [314] = {.lex_state = 41, .external_lex_state = 4}, + [315] = {.lex_state = 41, .external_lex_state = 4}, + [316] = {.lex_state = 41, .external_lex_state = 5}, + [317] = {.lex_state = 41, .external_lex_state = 5}, + [318] = {.lex_state = 41, .external_lex_state = 5}, + [319] = {.lex_state = 41, .external_lex_state = 4}, + [320] = {.lex_state = 41, .external_lex_state = 4}, + [321] = {.lex_state = 41, .external_lex_state = 4}, [322] = {.lex_state = 41, .external_lex_state = 5}, - [323] = {.lex_state = 41, .external_lex_state = 6}, - [324] = {.lex_state = 41, .external_lex_state = 6}, + [323] = {.lex_state = 41, .external_lex_state = 4}, + [324] = {.lex_state = 41, .external_lex_state = 5}, [325] = {.lex_state = 41, .external_lex_state = 5}, - [326] = {.lex_state = 41, .external_lex_state = 6}, + [326] = {.lex_state = 41, .external_lex_state = 4}, [327] = {.lex_state = 41, .external_lex_state = 5}, - [328] = {.lex_state = 41, .external_lex_state = 5}, + [328] = {.lex_state = 41, .external_lex_state = 4}, [329] = {.lex_state = 41, .external_lex_state = 5}, [330] = {.lex_state = 41, .external_lex_state = 5}, - [331] = {.lex_state = 41, .external_lex_state = 6}, - [332] = {.lex_state = 41, .external_lex_state = 6}, + [331] = {.lex_state = 41, .external_lex_state = 5}, + [332] = {.lex_state = 41, .external_lex_state = 5}, [333] = {.lex_state = 41, .external_lex_state = 5}, [334] = {.lex_state = 41, .external_lex_state = 5}, [335] = {.lex_state = 41, .external_lex_state = 5}, - [336] = {.lex_state = 41, .external_lex_state = 6}, - [337] = {.lex_state = 41, .external_lex_state = 5}, - [338] = {.lex_state = 41, .external_lex_state = 6}, - [339] = {.lex_state = 41, .external_lex_state = 6}, - [340] = {.lex_state = 41, .external_lex_state = 6}, - [341] = {.lex_state = 41, .external_lex_state = 6}, - [342] = {.lex_state = 41, .external_lex_state = 6}, - [343] = {.lex_state = 41, .external_lex_state = 6}, + [336] = {.lex_state = 41, .external_lex_state = 5}, + [337] = {.lex_state = 41, .external_lex_state = 4}, + [338] = {.lex_state = 41, .external_lex_state = 5}, + [339] = {.lex_state = 41, .external_lex_state = 5}, + [340] = {.lex_state = 41, .external_lex_state = 5}, + [341] = {.lex_state = 41, .external_lex_state = 5}, + [342] = {.lex_state = 41, .external_lex_state = 4}, + [343] = {.lex_state = 41, .external_lex_state = 5}, [344] = {.lex_state = 41, .external_lex_state = 5}, - [345] = {.lex_state = 1, .external_lex_state = 3}, - [346] = {.lex_state = 1, .external_lex_state = 3}, - [347] = {.lex_state = 1, .external_lex_state = 3}, - [348] = {.lex_state = 1, .external_lex_state = 3}, - [349] = {.lex_state = 3, .external_lex_state = 3}, - [350] = {.lex_state = 3, .external_lex_state = 3}, - [351] = {.lex_state = 0, .external_lex_state = 7}, - [352] = {.lex_state = 0, .external_lex_state = 7}, - [353] = {.lex_state = 0, .external_lex_state = 7}, - [354] = {.lex_state = 1, .external_lex_state = 3}, - [355] = {.lex_state = 1, .external_lex_state = 3}, - [356] = {.lex_state = 0, .external_lex_state = 7}, - [357] = {.lex_state = 0, .external_lex_state = 7}, - [358] = {.lex_state = 0, .external_lex_state = 7}, - [359] = {.lex_state = 0, .external_lex_state = 7}, - [360] = {.lex_state = 0, .external_lex_state = 8}, - [361] = {.lex_state = 0, .external_lex_state = 9}, - [362] = {.lex_state = 0, .external_lex_state = 8}, - [363] = {.lex_state = 0, .external_lex_state = 9}, - [364] = {.lex_state = 0, .external_lex_state = 9}, - [365] = {.lex_state = 0, .external_lex_state = 9}, - [366] = {.lex_state = 0, .external_lex_state = 7}, + [345] = {.lex_state = 41, .external_lex_state = 5}, + [346] = {.lex_state = 1, .external_lex_state = 2}, + [347] = {.lex_state = 1, .external_lex_state = 2}, + [348] = {.lex_state = 1, .external_lex_state = 2}, + [349] = {.lex_state = 1, .external_lex_state = 2}, + [350] = {.lex_state = 3, .external_lex_state = 2}, + [351] = {.lex_state = 3, .external_lex_state = 2}, + [352] = {.lex_state = 1, .external_lex_state = 2}, + [353] = {.lex_state = 0, .external_lex_state = 6}, + [354] = {.lex_state = 1, .external_lex_state = 2}, + [355] = {.lex_state = 0, .external_lex_state = 6}, + [356] = {.lex_state = 0, .external_lex_state = 6}, + [357] = {.lex_state = 0, .external_lex_state = 6}, + [358] = {.lex_state = 0, .external_lex_state = 6}, + [359] = {.lex_state = 1, .external_lex_state = 2}, + [360] = {.lex_state = 0, .external_lex_state = 6}, + [361] = {.lex_state = 0, .external_lex_state = 6}, + [362] = {.lex_state = 0, .external_lex_state = 6}, + [363] = {.lex_state = 0, .external_lex_state = 7}, + [364] = {.lex_state = 0, .external_lex_state = 8}, + [365] = {.lex_state = 0, .external_lex_state = 8}, + [366] = {.lex_state = 0, .external_lex_state = 8}, [367] = {.lex_state = 0, .external_lex_state = 7}, - [368] = {.lex_state = 0, .external_lex_state = 7}, - [369] = {.lex_state = 0, .external_lex_state = 9}, - [370] = {.lex_state = 0, .external_lex_state = 7}, - [371] = {.lex_state = 0, .external_lex_state = 9}, - [372] = {.lex_state = 0, .external_lex_state = 9}, + [368] = {.lex_state = 0, .external_lex_state = 6}, + [369] = {.lex_state = 0, .external_lex_state = 8}, + [370] = {.lex_state = 0, .external_lex_state = 6}, + [371] = {.lex_state = 0, .external_lex_state = 7}, + [372] = {.lex_state = 0, .external_lex_state = 8}, [373] = {.lex_state = 0, .external_lex_state = 7}, [374] = {.lex_state = 0, .external_lex_state = 8}, - [375] = {.lex_state = 0, .external_lex_state = 8}, - [376] = {.lex_state = 0, .external_lex_state = 7}, - [377] = {.lex_state = 0, .external_lex_state = 9}, - [378] = {.lex_state = 0, .external_lex_state = 8}, - [379] = {.lex_state = 0, .external_lex_state = 7}, - [380] = {.lex_state = 0, .external_lex_state = 8}, - [381] = {.lex_state = 0, .external_lex_state = 7}, - [382] = {.lex_state = 0, .external_lex_state = 9}, + [375] = {.lex_state = 0, .external_lex_state = 6}, + [376] = {.lex_state = 0, .external_lex_state = 6}, + [377] = {.lex_state = 0, .external_lex_state = 6}, + [378] = {.lex_state = 0, .external_lex_state = 7}, + [379] = {.lex_state = 0, .external_lex_state = 6}, + [380] = {.lex_state = 0, .external_lex_state = 7}, + [381] = {.lex_state = 0, .external_lex_state = 6}, + [382] = {.lex_state = 0, .external_lex_state = 8}, [383] = {.lex_state = 0, .external_lex_state = 7}, - [384] = {.lex_state = 0, .external_lex_state = 9}, - [385] = {.lex_state = 0, .external_lex_state = 7}, + [384] = {.lex_state = 0, .external_lex_state = 8}, + [385] = {.lex_state = 0, .external_lex_state = 8}, [386] = {.lex_state = 0, .external_lex_state = 7}, - [387] = {.lex_state = 0, .external_lex_state = 7}, - [388] = {.lex_state = 0, .external_lex_state = 8}, - [389] = {.lex_state = 0, .external_lex_state = 9}, - [390] = {.lex_state = 0, .external_lex_state = 8}, - [391] = {.lex_state = 0, .external_lex_state = 7}, - [392] = {.lex_state = 0, .external_lex_state = 7}, - [393] = {.lex_state = 0, .external_lex_state = 7}, - [394] = {.lex_state = 0, .external_lex_state = 8}, + [387] = {.lex_state = 0, .external_lex_state = 6}, + [388] = {.lex_state = 0, .external_lex_state = 6}, + [389] = {.lex_state = 0, .external_lex_state = 6}, + [390] = {.lex_state = 0, .external_lex_state = 7}, + [391] = {.lex_state = 0, .external_lex_state = 6}, + [392] = {.lex_state = 0, .external_lex_state = 6}, + [393] = {.lex_state = 0, .external_lex_state = 6}, + [394] = {.lex_state = 0, .external_lex_state = 6}, [395] = {.lex_state = 0, .external_lex_state = 7}, [396] = {.lex_state = 0, .external_lex_state = 8}, - [397] = {.lex_state = 0, .external_lex_state = 8}, - [398] = {.lex_state = 0, .external_lex_state = 7}, - [399] = {.lex_state = 0, .external_lex_state = 7}, - [400] = {.lex_state = 41}, - [401] = {.lex_state = 41}, - [402] = {.lex_state = 41, .external_lex_state = 2}, - [403] = {.lex_state = 41, .external_lex_state = 2}, - [404] = {.lex_state = 4, .external_lex_state = 3}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 41}, + [397] = {.lex_state = 0, .external_lex_state = 6}, + [398] = {.lex_state = 0, .external_lex_state = 8}, + [399] = {.lex_state = 0, .external_lex_state = 6}, + [400] = {.lex_state = 0, .external_lex_state = 7}, + [401] = {.lex_state = 0, .external_lex_state = 6}, + [402] = {.lex_state = 41}, + [403] = {.lex_state = 41}, + [404] = {.lex_state = 41}, + [405] = {.lex_state = 41}, + [406] = {.lex_state = 4, .external_lex_state = 2}, [407] = {.lex_state = 0}, - [408] = {.lex_state = 41}, - [409] = {.lex_state = 41}, + [408] = {.lex_state = 0}, + [409] = {.lex_state = 0}, [410] = {.lex_state = 0}, [411] = {.lex_state = 0}, - [412] = {.lex_state = 0}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 41, .external_lex_state = 3}, + [412] = {.lex_state = 41}, + [413] = {.lex_state = 41, .external_lex_state = 2}, + [414] = {.lex_state = 41}, [415] = {.lex_state = 0}, - [416] = {.lex_state = 41}, - [417] = {.lex_state = 0}, + [416] = {.lex_state = 0}, + [417] = {.lex_state = 41, .external_lex_state = 2}, [418] = {.lex_state = 0}, [419] = {.lex_state = 0}, [420] = {.lex_state = 0}, [421] = {.lex_state = 0}, - [422] = {.lex_state = 0, .external_lex_state = 8}, - [423] = {.lex_state = 41, .external_lex_state = 3}, + [422] = {.lex_state = 0}, + [423] = {.lex_state = 0, .external_lex_state = 8}, [424] = {.lex_state = 0}, - [425] = {.lex_state = 0, .external_lex_state = 9}, + [425] = {.lex_state = 0, .external_lex_state = 7}, [426] = {.lex_state = 0}, [427] = {.lex_state = 0}, [428] = {.lex_state = 0}, - [429] = {.lex_state = 0}, - [430] = {.lex_state = 0, .external_lex_state = 8}, + [429] = {.lex_state = 0, .external_lex_state = 8}, + [430] = {.lex_state = 0}, [431] = {.lex_state = 0}, - [432] = {.lex_state = 0, .external_lex_state = 9}, + [432] = {.lex_state = 0}, [433] = {.lex_state = 0}, - [434] = {.lex_state = 0}, - [435] = {.lex_state = 0, .external_lex_state = 7}, - [436] = {.lex_state = 0, .external_lex_state = 9}, - [437] = {.lex_state = 0, .external_lex_state = 10}, - [438] = {.lex_state = 41}, - [439] = {.lex_state = 0}, + [434] = {.lex_state = 0, .external_lex_state = 7}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0, .external_lex_state = 8}, + [437] = {.lex_state = 0, .external_lex_state = 9}, + [438] = {.lex_state = 0}, + [439] = {.lex_state = 0, .external_lex_state = 8}, [440] = {.lex_state = 0, .external_lex_state = 8}, - [441] = {.lex_state = 0}, - [442] = {.lex_state = 0, .external_lex_state = 8}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0}, - [445] = {.lex_state = 0}, - [446] = {.lex_state = 0, .external_lex_state = 8}, + [441] = {.lex_state = 0, .external_lex_state = 8}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 0, .external_lex_state = 8}, + [444] = {.lex_state = 0, .external_lex_state = 8}, + [445] = {.lex_state = 0, .external_lex_state = 6}, + [446] = {.lex_state = 0, .external_lex_state = 7}, [447] = {.lex_state = 0, .external_lex_state = 8}, [448] = {.lex_state = 0, .external_lex_state = 8}, - [449] = {.lex_state = 0, .external_lex_state = 8}, - [450] = {.lex_state = 0, .external_lex_state = 8}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 0}, [451] = {.lex_state = 0, .external_lex_state = 8}, [452] = {.lex_state = 0, .external_lex_state = 8}, - [453] = {.lex_state = 0, .external_lex_state = 8}, - [454] = {.lex_state = 0, .external_lex_state = 9}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 0}, [455] = {.lex_state = 0, .external_lex_state = 8}, [456] = {.lex_state = 0, .external_lex_state = 8}, - [457] = {.lex_state = 0, .external_lex_state = 8}, - [458] = {.lex_state = 0, .external_lex_state = 9}, - [459] = {.lex_state = 0, .external_lex_state = 8}, - [460] = {.lex_state = 0, .external_lex_state = 8}, + [457] = {.lex_state = 0}, + [458] = {.lex_state = 0, .external_lex_state = 8}, + [459] = {.lex_state = 0, .external_lex_state = 7}, + [460] = {.lex_state = 0, .external_lex_state = 7}, [461] = {.lex_state = 0, .external_lex_state = 8}, - [462] = {.lex_state = 0, .external_lex_state = 9}, - [463] = {.lex_state = 0, .external_lex_state = 9}, - [464] = {.lex_state = 0, .external_lex_state = 8}, - [465] = {.lex_state = 0}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 0, .external_lex_state = 7}, + [464] = {.lex_state = 0}, + [465] = {.lex_state = 0, .external_lex_state = 7}, [466] = {.lex_state = 0, .external_lex_state = 7}, - [467] = {.lex_state = 0, .external_lex_state = 9}, - [468] = {.lex_state = 0, .external_lex_state = 9}, - [469] = {.lex_state = 0, .external_lex_state = 9}, - [470] = {.lex_state = 0}, - [471] = {.lex_state = 0}, - [472] = {.lex_state = 0}, - [473] = {.lex_state = 0, .external_lex_state = 9}, - [474] = {.lex_state = 0, .external_lex_state = 9}, - [475] = {.lex_state = 0}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 0, .external_lex_state = 9}, - [478] = {.lex_state = 0, .external_lex_state = 9}, - [479] = {.lex_state = 0}, - [480] = {.lex_state = 0, .external_lex_state = 9}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0, .external_lex_state = 9}, - [483] = {.lex_state = 0}, - [484] = {.lex_state = 0}, - [485] = {.lex_state = 0, .external_lex_state = 9}, - [486] = {.lex_state = 0, .external_lex_state = 9}, - [487] = {.lex_state = 0, .external_lex_state = 9}, - [488] = {.lex_state = 0, .external_lex_state = 9}, - [489] = {.lex_state = 0, .external_lex_state = 9}, - [490] = {.lex_state = 0, .external_lex_state = 9}, - [491] = {.lex_state = 0, .external_lex_state = 9}, - [492] = {.lex_state = 0, .external_lex_state = 9}, + [467] = {.lex_state = 0, .external_lex_state = 7}, + [468] = {.lex_state = 0, .external_lex_state = 8}, + [469] = {.lex_state = 0, .external_lex_state = 6}, + [470] = {.lex_state = 0, .external_lex_state = 7}, + [471] = {.lex_state = 0, .external_lex_state = 7}, + [472] = {.lex_state = 0, .external_lex_state = 7}, + [473] = {.lex_state = 0}, + [474] = {.lex_state = 0, .external_lex_state = 7}, + [475] = {.lex_state = 0, .external_lex_state = 7}, + [476] = {.lex_state = 0, .external_lex_state = 7}, + [477] = {.lex_state = 0, .external_lex_state = 7}, + [478] = {.lex_state = 0, .external_lex_state = 8}, + [479] = {.lex_state = 0, .external_lex_state = 8}, + [480] = {.lex_state = 0}, + [481] = {.lex_state = 41}, + [482] = {.lex_state = 0}, + [483] = {.lex_state = 0, .external_lex_state = 8}, + [484] = {.lex_state = 0, .external_lex_state = 8}, + [485] = {.lex_state = 0, .external_lex_state = 8}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 0, .external_lex_state = 8}, + [488] = {.lex_state = 0, .external_lex_state = 8}, + [489] = {.lex_state = 0}, + [490] = {.lex_state = 0, .external_lex_state = 7}, + [491] = {.lex_state = 0, .external_lex_state = 7}, + [492] = {.lex_state = 0, .external_lex_state = 7}, [493] = {.lex_state = 0, .external_lex_state = 6}, - [494] = {.lex_state = 0, .external_lex_state = 5}, - [495] = {.lex_state = 0, .external_lex_state = 7}, - [496] = {.lex_state = 0, .external_lex_state = 7}, - [497] = {.lex_state = 41, .external_lex_state = 2}, - [498] = {.lex_state = 0, .external_lex_state = 7}, - [499] = {.lex_state = 0, .external_lex_state = 7}, - [500] = {.lex_state = 0, .external_lex_state = 7}, - [501] = {.lex_state = 41, .external_lex_state = 3}, - [502] = {.lex_state = 0, .external_lex_state = 7}, - [503] = {.lex_state = 0, .external_lex_state = 7}, - [504] = {.lex_state = 0, .external_lex_state = 7}, - [505] = {.lex_state = 0, .external_lex_state = 10}, + [494] = {.lex_state = 41}, + [495] = {.lex_state = 0}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 0, .external_lex_state = 5}, + [498] = {.lex_state = 0, .external_lex_state = 6}, + [499] = {.lex_state = 0, .external_lex_state = 6}, + [500] = {.lex_state = 0, .external_lex_state = 6}, + [501] = {.lex_state = 0, .external_lex_state = 6}, + [502] = {.lex_state = 41}, + [503] = {.lex_state = 0, .external_lex_state = 5}, + [504] = {.lex_state = 0, .external_lex_state = 6}, + [505] = {.lex_state = 0, .external_lex_state = 6}, [506] = {.lex_state = 41}, - [507] = {.lex_state = 0, .external_lex_state = 7}, - [508] = {.lex_state = 0, .external_lex_state = 5}, - [509] = {.lex_state = 0, .external_lex_state = 7}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 0, .external_lex_state = 7}, + [507] = {.lex_state = 0, .external_lex_state = 6}, + [508] = {.lex_state = 0}, + [509] = {.lex_state = 0, .external_lex_state = 6}, + [510] = {.lex_state = 0, .external_lex_state = 6}, + [511] = {.lex_state = 0, .external_lex_state = 5}, [512] = {.lex_state = 0, .external_lex_state = 6}, - [513] = {.lex_state = 41}, - [514] = {.lex_state = 0, .external_lex_state = 7}, - [515] = {.lex_state = 41, .external_lex_state = 3}, - [516] = {.lex_state = 0, .external_lex_state = 10}, - [517] = {.lex_state = 0, .external_lex_state = 7}, - [518] = {.lex_state = 0}, + [513] = {.lex_state = 0, .external_lex_state = 9}, + [514] = {.lex_state = 0, .external_lex_state = 5}, + [515] = {.lex_state = 0, .external_lex_state = 4}, + [516] = {.lex_state = 0, .external_lex_state = 4}, + [517] = {.lex_state = 0}, + [518] = {.lex_state = 0, .external_lex_state = 6}, [519] = {.lex_state = 0, .external_lex_state = 6}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 3}, - [522] = {.lex_state = 41}, - [523] = {.lex_state = 0, .external_lex_state = 7}, - [524] = {.lex_state = 0, .external_lex_state = 7}, - [525] = {.lex_state = 0, .external_lex_state = 6}, - [526] = {.lex_state = 0, .external_lex_state = 5}, - [527] = {.lex_state = 0, .external_lex_state = 6}, - [528] = {.lex_state = 0, .external_lex_state = 7}, - [529] = {.lex_state = 0, .external_lex_state = 7}, - [530] = {.lex_state = 0, .external_lex_state = 7}, - [531] = {.lex_state = 0}, - [532] = {.lex_state = 0, .external_lex_state = 7}, - [533] = {.lex_state = 41}, + [520] = {.lex_state = 0, .external_lex_state = 6}, + [521] = {.lex_state = 0, .external_lex_state = 5}, + [522] = {.lex_state = 41, .external_lex_state = 2}, + [523] = {.lex_state = 0, .external_lex_state = 6}, + [524] = {.lex_state = 0, .external_lex_state = 4}, + [525] = {.lex_state = 0, .external_lex_state = 9}, + [526] = {.lex_state = 0, .external_lex_state = 6}, + [527] = {.lex_state = 0}, + [528] = {.lex_state = 0, .external_lex_state = 6}, + [529] = {.lex_state = 0}, + [530] = {.lex_state = 41, .external_lex_state = 2}, + [531] = {.lex_state = 0, .external_lex_state = 4}, + [532] = {.lex_state = 0, .external_lex_state = 6}, + [533] = {.lex_state = 3}, [534] = {.lex_state = 0, .external_lex_state = 5}, - [535] = {.lex_state = 0, .external_lex_state = 5}, - [536] = {.lex_state = 0, .external_lex_state = 5}, - [537] = {.lex_state = 0, .external_lex_state = 7}, + [535] = {.lex_state = 0, .external_lex_state = 6}, + [536] = {.lex_state = 0, .external_lex_state = 4}, + [537] = {.lex_state = 0}, [538] = {.lex_state = 0, .external_lex_state = 6}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, - [541] = {.lex_state = 0, .external_lex_state = 7}, - [542] = {.lex_state = 0, .external_lex_state = 7}, - [543] = {.lex_state = 0, .external_lex_state = 7}, - [544] = {.lex_state = 0, .external_lex_state = 5}, + [539] = {.lex_state = 0, .external_lex_state = 6}, + [540] = {.lex_state = 0, .external_lex_state = 6}, + [541] = {.lex_state = 0}, + [542] = {.lex_state = 0, .external_lex_state = 6}, + [543] = {.lex_state = 0, .external_lex_state = 6}, + [544] = {.lex_state = 0, .external_lex_state = 6}, [545] = {.lex_state = 0, .external_lex_state = 5}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 0, .external_lex_state = 7}, - [548] = {.lex_state = 0}, - [549] = {.lex_state = 0, .external_lex_state = 7}, - [550] = {.lex_state = 0, .external_lex_state = 6}, + [546] = {.lex_state = 0, .external_lex_state = 4}, + [547] = {.lex_state = 0, .external_lex_state = 6}, + [548] = {.lex_state = 0, .external_lex_state = 5}, + [549] = {.lex_state = 0, .external_lex_state = 4}, + [550] = {.lex_state = 41}, [551] = {.lex_state = 0, .external_lex_state = 6}, - [552] = {.lex_state = 0, .external_lex_state = 7}, - [553] = {.lex_state = 0, .external_lex_state = 7}, - [554] = {.lex_state = 0, .external_lex_state = 7}, - [555] = {.lex_state = 0}, - [556] = {.lex_state = 0}, - [557] = {.lex_state = 0}, + [552] = {.lex_state = 0, .external_lex_state = 4}, + [553] = {.lex_state = 0, .external_lex_state = 6}, + [554] = {.lex_state = 0}, + [555] = {.lex_state = 0, .external_lex_state = 4}, + [556] = {.lex_state = 41}, + [557] = {.lex_state = 0, .external_lex_state = 4}, [558] = {.lex_state = 0}, - [559] = {.lex_state = 0}, - [560] = {.lex_state = 0, .external_lex_state = 6}, + [559] = {.lex_state = 0, .external_lex_state = 4}, + [560] = {.lex_state = 0}, [561] = {.lex_state = 0}, - [562] = {.lex_state = 41}, - [563] = {.lex_state = 1}, - [564] = {.lex_state = 0, .external_lex_state = 6}, + [562] = {.lex_state = 0}, + [563] = {.lex_state = 0}, + [564] = {.lex_state = 0}, [565] = {.lex_state = 0}, - [566] = {.lex_state = 0}, - [567] = {.lex_state = 0, .external_lex_state = 6}, - [568] = {.lex_state = 0}, - [569] = {.lex_state = 0}, - [570] = {.lex_state = 1}, - [571] = {.lex_state = 0, .external_lex_state = 6}, - [572] = {.lex_state = 0, .external_lex_state = 6}, + [566] = {.lex_state = 1}, + [567] = {.lex_state = 0}, + [568] = {.lex_state = 0, .external_lex_state = 4}, + [569] = {.lex_state = 0, .external_lex_state = 4}, + [570] = {.lex_state = 41}, + [571] = {.lex_state = 0}, + [572] = {.lex_state = 0}, [573] = {.lex_state = 0}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 1}, - [576] = {.lex_state = 0, .external_lex_state = 6}, - [577] = {.lex_state = 0}, - [578] = {.lex_state = 0, .external_lex_state = 6}, + [574] = {.lex_state = 0, .external_lex_state = 4}, + [575] = {.lex_state = 0, .external_lex_state = 4}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 0, .external_lex_state = 4}, + [578] = {.lex_state = 0}, [579] = {.lex_state = 0}, [580] = {.lex_state = 0}, [581] = {.lex_state = 0}, - [582] = {.lex_state = 0}, + [582] = {.lex_state = 1}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, - [585] = {.lex_state = 0, .external_lex_state = 6}, - [586] = {.lex_state = 0, .external_lex_state = 6}, + [585] = {.lex_state = 0}, + [586] = {.lex_state = 0}, [587] = {.lex_state = 0}, [588] = {.lex_state = 0}, [589] = {.lex_state = 0}, - [590] = {.lex_state = 41}, - [591] = {.lex_state = 0, .external_lex_state = 6}, - [592] = {.lex_state = 0}, + [590] = {.lex_state = 0}, + [591] = {.lex_state = 0}, + [592] = {.lex_state = 41}, [593] = {.lex_state = 1}, [594] = {.lex_state = 0}, [595] = {.lex_state = 0}, - [596] = {.lex_state = 0}, + [596] = {.lex_state = 1}, [597] = {.lex_state = 0}, [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, [600] = {.lex_state = 0}, [601] = {.lex_state = 0}, - [602] = {.lex_state = 41}, - [603] = {.lex_state = 0, .external_lex_state = 6}, - [604] = {.lex_state = 0, .external_lex_state = 6}, - [605] = {.lex_state = 0}, - [606] = {.lex_state = 0}, + [602] = {.lex_state = 0}, + [603] = {.lex_state = 0}, + [604] = {.lex_state = 0}, + [605] = {.lex_state = 0, .external_lex_state = 4}, + [606] = {.lex_state = 0, .external_lex_state = 4}, [607] = {.lex_state = 0}, - [608] = {.lex_state = 1}, + [608] = {.lex_state = 0, .external_lex_state = 4}, [609] = {.lex_state = 0}, - [610] = {.lex_state = 0, .external_lex_state = 6}, + [610] = {.lex_state = 0}, [611] = {.lex_state = 0}, - [612] = {.lex_state = 0, .external_lex_state = 6}, + [612] = {.lex_state = 0, .external_lex_state = 4}, [613] = {.lex_state = 0}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 41}, - [616] = {.lex_state = 0}, - [617] = {.lex_state = 0}, + [614] = {.lex_state = 0, .external_lex_state = 4}, + [615] = {.lex_state = 0}, + [616] = {.lex_state = 41}, + [617] = {.lex_state = 41}, [618] = {.lex_state = 0}, [619] = {.lex_state = 0}, [620] = {.lex_state = 0}, - [621] = {.lex_state = 0}, + [621] = {.lex_state = 0, .external_lex_state = 4}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, [624] = {.lex_state = 0}, - [625] = {.lex_state = 41}, - [626] = {.lex_state = 0}, + [625] = {.lex_state = 0}, + [626] = {.lex_state = 41}, [627] = {.lex_state = 0}, [628] = {.lex_state = 0}, [629] = {.lex_state = 0}, [630] = {.lex_state = 0}, [631] = {.lex_state = 0}, [632] = {.lex_state = 41}, - [633] = {.lex_state = 0, .external_lex_state = 6}, - [634] = {.lex_state = 0, .external_lex_state = 6}, - [635] = {.lex_state = 0}, - [636] = {.lex_state = 0, .external_lex_state = 6}, - [637] = {.lex_state = 0, .external_lex_state = 6}, - [638] = {.lex_state = 0, .external_lex_state = 6}, - [639] = {.lex_state = 0, .external_lex_state = 6}, - [640] = {.lex_state = 0, .external_lex_state = 6}, - [641] = {.lex_state = 0, .external_lex_state = 6}, - [642] = {.lex_state = 0, .external_lex_state = 5}, - [643] = {.lex_state = 0, .external_lex_state = 6}, - [644] = {.lex_state = 41}, - [645] = {.lex_state = 41}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0, .external_lex_state = 11}, - [648] = {.lex_state = 0, .external_lex_state = 5}, + [633] = {.lex_state = 0, .external_lex_state = 10}, + [634] = {.lex_state = 41}, + [635] = {.lex_state = 0, .external_lex_state = 4}, + [636] = {.lex_state = 0, .external_lex_state = 5}, + [637] = {.lex_state = 0, .external_lex_state = 4}, + [638] = {.lex_state = 0, .external_lex_state = 4}, + [639] = {.lex_state = 0, .external_lex_state = 4}, + [640] = {.lex_state = 0, .external_lex_state = 11}, + [641] = {.lex_state = 0, .external_lex_state = 4}, + [642] = {.lex_state = 0, .external_lex_state = 4}, + [643] = {.lex_state = 0, .external_lex_state = 5}, + [644] = {.lex_state = 0, .external_lex_state = 4}, + [645] = {.lex_state = 0, .external_lex_state = 4}, + [646] = {.lex_state = 0, .external_lex_state = 4}, + [647] = {.lex_state = 0, .external_lex_state = 4}, + [648] = {.lex_state = 0, .external_lex_state = 10}, [649] = {.lex_state = 0, .external_lex_state = 5}, [650] = {.lex_state = 0}, [651] = {.lex_state = 0}, [652] = {.lex_state = 41}, [653] = {.lex_state = 0}, - [654] = {.lex_state = 0}, - [655] = {.lex_state = 41}, - [656] = {.lex_state = 41}, - [657] = {.lex_state = 0, .external_lex_state = 6}, - [658] = {.lex_state = 0, .external_lex_state = 6}, - [659] = {.lex_state = 0, .external_lex_state = 6}, - [660] = {.lex_state = 0, .external_lex_state = 6}, - [661] = {.lex_state = 0, .external_lex_state = 5}, - [662] = {.lex_state = 0, .external_lex_state = 6}, - [663] = {.lex_state = 0, .external_lex_state = 5}, - [664] = {.lex_state = 0, .external_lex_state = 6}, - [665] = {.lex_state = 0, .external_lex_state = 11}, - [666] = {.lex_state = 0, .external_lex_state = 11}, - [667] = {.lex_state = 0, .external_lex_state = 11}, - [668] = {.lex_state = 0, .external_lex_state = 5}, - [669] = {.lex_state = 0, .external_lex_state = 11}, - [670] = {.lex_state = 0, .external_lex_state = 11}, - [671] = {.lex_state = 0, .external_lex_state = 6}, - [672] = {.lex_state = 0, .external_lex_state = 12}, - [673] = {.lex_state = 0, .external_lex_state = 6}, - [674] = {.lex_state = 0, .external_lex_state = 6}, - [675] = {.lex_state = 0, .external_lex_state = 6}, - [676] = {.lex_state = 0, .external_lex_state = 6}, - [677] = {.lex_state = 0}, + [654] = {.lex_state = 0, .external_lex_state = 4}, + [655] = {.lex_state = 0, .external_lex_state = 4}, + [656] = {.lex_state = 0, .external_lex_state = 10}, + [657] = {.lex_state = 41}, + [658] = {.lex_state = 0, .external_lex_state = 10}, + [659] = {.lex_state = 0, .external_lex_state = 5}, + [660] = {.lex_state = 0, .external_lex_state = 4}, + [661] = {.lex_state = 0, .external_lex_state = 4}, + [662] = {.lex_state = 41}, + [663] = {.lex_state = 0}, + [664] = {.lex_state = 0, .external_lex_state = 4}, + [665] = {.lex_state = 0, .external_lex_state = 10}, + [666] = {.lex_state = 0, .external_lex_state = 4}, + [667] = {.lex_state = 0, .external_lex_state = 4}, + [668] = {.lex_state = 0, .external_lex_state = 4}, + [669] = {.lex_state = 0, .external_lex_state = 5}, + [670] = {.lex_state = 0, .external_lex_state = 10}, + [671] = {.lex_state = 0, .external_lex_state = 4}, + [672] = {.lex_state = 41}, + [673] = {.lex_state = 0, .external_lex_state = 5}, + [674] = {.lex_state = 0}, + [675] = {.lex_state = 0}, + [676] = {.lex_state = 0}, + [677] = {.lex_state = 0, .external_lex_state = 4}, }; enum { @@ -12498,7 +12491,6 @@ enum { ts_external_token_template_directive_start = 5, ts_external_token_template_directive_end = 6, ts_external_token_heredoc_identifier = 7, - ts_external_token__shim = 8, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -12510,10 +12502,9 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_template_directive_start] = sym_template_directive_start, [ts_external_token_template_directive_end] = sym_template_directive_end, [ts_external_token_heredoc_identifier] = sym_heredoc_identifier, - [ts_external_token__shim] = sym__shim, }; -static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_quoted_template_start] = true, [ts_external_token_quoted_template_end] = true, @@ -12523,49 +12514,45 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_template_directive_start] = true, [ts_external_token_template_directive_end] = true, [ts_external_token_heredoc_identifier] = true, - [ts_external_token__shim] = true, }, [2] = { - [ts_external_token__shim] = true, + [ts_external_token_quoted_template_start] = true, }, [3] = { [ts_external_token_quoted_template_start] = true, + [ts_external_token_template_interpolation_end] = true, }, [4] = { - [ts_external_token_quoted_template_start] = true, - [ts_external_token_template_interpolation_end] = true, + [ts_external_token_template_directive_end] = true, }, [5] = { [ts_external_token_template_interpolation_end] = true, }, [6] = { - [ts_external_token_template_directive_end] = true, + [ts_external_token__template_literal_chunk] = true, + [ts_external_token_template_interpolation_start] = true, + [ts_external_token_template_directive_start] = true, }, [7] = { [ts_external_token__template_literal_chunk] = true, [ts_external_token_template_interpolation_start] = true, [ts_external_token_template_directive_start] = true, + [ts_external_token_heredoc_identifier] = true, }, [8] = { + [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, [ts_external_token_template_interpolation_start] = true, [ts_external_token_template_directive_start] = true, - [ts_external_token_heredoc_identifier] = true, }, [9] = { [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, - [ts_external_token_template_interpolation_start] = true, - [ts_external_token_template_directive_start] = true, }, [10] = { - [ts_external_token_quoted_template_end] = true, - [ts_external_token__template_literal_chunk] = true, - }, - [11] = { [ts_external_token_heredoc_identifier] = true, }, - [12] = { + [11] = { [ts_external_token_quoted_template_end] = true, }, }; @@ -12626,19 +12613,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_directive_start] = ACTIONS(1), [sym_template_directive_end] = ACTIONS(1), [sym_heredoc_identifier] = ACTIONS(1), - [sym__shim] = ACTIONS(1), }, [1] = { - [sym_config_file] = STATE(650), - [sym_body] = STATE(677), - [sym_attribute] = STATE(408), - [sym_block] = STATE(408), - [aux_sym_body_repeat1] = STATE(408), + [sym_config_file] = STATE(676), + [sym_body] = STATE(675), + [sym_attribute] = STATE(414), + [sym_block] = STATE(414), + [sym_object] = STATE(675), + [sym_object_start] = STATE(15), + [aux_sym_body_repeat1] = STATE(414), [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), + [anon_sym_LBRACE] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym__whitespace] = ACTIONS(3), - [sym__shim] = ACTIONS(9), }, }; @@ -12668,23 +12656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(9), 1, + STATE(8), 1, sym_object_elem, - STATE(45), 1, + STATE(12), 1, + sym_tuple_start, + STATE(58), 1, sym_for_intro, - STATE(326), 1, + STATE(153), 1, sym_object_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(533), 1, sym_expression, - STATE(574), 1, + STATE(620), 1, sym__object_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12695,23 +12683,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12745,23 +12733,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(39), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(9), 1, + STATE(8), 1, sym_object_elem, - STATE(51), 1, + STATE(12), 1, + sym_tuple_start, + STATE(54), 1, sym_for_intro, - STATE(169), 1, + STATE(255), 1, sym_object_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(533), 1, sym_expression, - STATE(582), 1, + STATE(581), 1, sym__object_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12772,23 +12760,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12822,23 +12810,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(41), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(9), 1, + STATE(8), 1, sym_object_elem, - STATE(82), 1, + STATE(12), 1, + sym_tuple_start, + STATE(78), 1, sym_for_intro, - STATE(283), 1, + STATE(194), 1, sym_object_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(533), 1, sym_expression, - STATE(559), 1, + STATE(585), 1, sym__object_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12849,23 +12837,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12899,23 +12887,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(43), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(9), 1, + STATE(8), 1, sym_object_elem, - STATE(87), 1, + STATE(12), 1, + sym_tuple_start, + STATE(72), 1, sym_for_intro, - STATE(275), 1, + STATE(298), 1, sym_object_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(533), 1, sym_expression, - STATE(601), 1, + STATE(622), 1, sym__object_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12926,23 +12914,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12976,23 +12964,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(45), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(9), 1, + STATE(8), 1, sym_object_elem, - STATE(77), 1, + STATE(12), 1, + sym_tuple_start, + STATE(63), 1, sym_for_intro, - STATE(207), 1, + STATE(325), 1, sym_object_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(533), 1, sym_expression, - STATE(617), 1, + STATE(565), 1, sym__object_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13003,23 +12991,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13028,7 +13016,155 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [535] = 29, + [535] = 28, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(50), 1, + anon_sym_RBRACE, + ACTIONS(52), 1, + sym_identifier, + ACTIONS(55), 1, + anon_sym_LPAREN, + ACTIONS(58), 1, + aux_sym_numeric_lit_token1, + ACTIONS(61), 1, + aux_sym_numeric_lit_token2, + ACTIONS(67), 1, + sym_null_lit, + ACTIONS(70), 1, + anon_sym_COMMA, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + anon_sym_LT_LT, + ACTIONS(82), 1, + anon_sym_LT_LT_DASH, + ACTIONS(85), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(40), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(64), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(76), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(7), 2, + sym_object_elem, + aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [637] = 28, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + ACTIONS(88), 1, + anon_sym_RBRACE, + ACTIONS(90), 1, + anon_sym_COMMA, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(22), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(11), 2, + sym_object_elem, + aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [739] = 29, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13051,168 +13187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(71), 1, - sym_for_intro, - STATE(190), 1, - sym_tuple_end, - STATE(400), 1, - sym_conditional, - STATE(428), 1, - sym_expression, - STATE(611), 1, - sym__tuple_elems, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [639] = 28, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(52), 1, - anon_sym_RBRACE, - ACTIONS(54), 1, - sym_identifier, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(60), 1, - aux_sym_numeric_lit_token1, - ACTIONS(63), 1, - aux_sym_numeric_lit_token2, - ACTIONS(69), 1, - sym_null_lit, - ACTIONS(72), 1, - anon_sym_COMMA, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(81), 1, - anon_sym_LT_LT, - ACTIONS(84), 1, - anon_sym_LT_LT_DASH, - ACTIONS(87), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(32), 1, - sym__comma, - STATE(400), 1, - sym_conditional, - STATE(521), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(66), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(78), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(8), 2, - sym_object_elem, - aux_sym__object_elems_repeat1, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [741] = 28, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(90), 1, - anon_sym_RBRACE, ACTIONS(92), 1, - anon_sym_COMMA, - STATE(6), 1, + anon_sym_RBRACK, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(23), 1, - sym__comma, - STATE(400), 1, + STATE(52), 1, + sym_for_intro, + STATE(264), 1, + sym_tuple_end, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(431), 1, sym_expression, - STATE(666), 1, + STATE(560), 1, + sym__tuple_elems, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13223,26 +13214,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(10), 2, - sym_object_elem, - aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13251,7 +13239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [843] = 28, + [843] = 29, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13266,6 +13254,8 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(29), 1, + anon_sym_for, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, @@ -13273,20 +13263,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(37), 1, sym_quoted_template_start, ACTIONS(94), 1, - anon_sym_RBRACE, - ACTIONS(96), 1, - anon_sym_COMMA, - STATE(6), 1, + anon_sym_RBRACK, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(21), 1, - sym__comma, - STATE(400), 1, + STATE(50), 1, + sym_for_intro, + STATE(286), 1, + sym_tuple_end, + STATE(403), 1, sym_conditional, - STATE(521), 1, + STATE(431), 1, sym_expression, - STATE(666), 1, + STATE(602), 1, + sym__tuple_elems, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13297,26 +13289,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(8), 2, - sym_object_elem, - aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13325,7 +13314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [945] = 29, + [947] = 28, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13340,31 +13329,27 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_for, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, + ACTIONS(96), 1, + anon_sym_RBRACE, ACTIONS(98), 1, - anon_sym_RBRACK, - STATE(6), 1, + anon_sym_COMMA, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(70), 1, - sym_for_intro, - STATE(162), 1, - sym_tuple_end, - STATE(400), 1, + STATE(28), 1, + sym__comma, + STATE(403), 1, sym_conditional, - STATE(428), 1, + STATE(533), 1, sym_expression, - STATE(581), 1, - sym__tuple_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13375,23 +13360,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(7), 2, + sym_object_elem, + aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13425,21 +13413,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(100), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(72), 1, + STATE(77), 1, sym_for_intro, - STATE(318), 1, + STATE(213), 1, sym_tuple_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(428), 1, + STATE(431), 1, sym_expression, - STATE(557), 1, + STATE(567), 1, sym__tuple_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13450,23 +13438,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13500,21 +13488,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(102), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(58), 1, + STATE(57), 1, sym_for_intro, - STATE(305), 1, + STATE(283), 1, sym_tuple_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(428), 1, + STATE(431), 1, sym_expression, - STATE(595), 1, + STATE(578), 1, sym__tuple_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13525,23 +13513,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13575,21 +13563,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(104), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(68), 1, + STATE(55), 1, sym_for_intro, - STATE(277), 1, + STATE(165), 1, sym_tuple_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(428), 1, + STATE(431), 1, sym_expression, - STATE(622), 1, + STATE(595), 1, sym__tuple_elems, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13600,23 +13588,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13625,7 +13613,80 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1361] = 27, + [1361] = 28, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(4), 1, + sym_object_start, + STATE(8), 1, + sym_object_elem, + STATE(12), 1, + sym_tuple_start, + STATE(194), 1, + sym_object_end, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(585), 1, + sym__object_elems, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [1462] = 27, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13648,19 +13709,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(106), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(273), 1, + STATE(297), 1, sym__function_call_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(600), 1, + STATE(597), 1, sym_function_arguments, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13671,23 +13732,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13696,7 +13757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1459] = 27, + [1560] = 27, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13719,19 +13780,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(108), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(191), 1, + STATE(143), 1, sym__function_call_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(621), 1, + STATE(599), 1, sym_function_arguments, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13742,23 +13803,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13767,7 +13828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1557] = 27, + [1658] = 27, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13790,19 +13851,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(110), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(289), 1, + STATE(191), 1, sym__function_call_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(558), 1, + STATE(554), 1, sym_function_arguments, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13813,23 +13874,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13838,7 +13899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1655] = 27, + [1756] = 27, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13861,19 +13922,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(112), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(332), 1, + STATE(341), 1, sym__function_call_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(583), 1, + STATE(603), 1, sym_function_arguments, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13884,23 +13945,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13909,7 +13970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1753] = 27, + [1854] = 27, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -13932,19 +13993,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(114), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(142), 1, + STATE(267), 1, sym__function_call_end, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(412), 1, + STATE(407), 1, sym_expression, - STATE(594), 1, + STATE(580), 1, sym_function_arguments, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13955,23 +14016,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13980,7 +14041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [1851] = 26, + [1952] = 26, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -14005,291 +14066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(134), 1, sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(508), 1, - sym_conditional, - STATE(535), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(215), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [1946] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(136), 1, - anon_sym_RBRACE, STATE(6), 1, sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(348), 1, - sym_object_elem, - STATE(400), 1, - sym_conditional, - STATE(521), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2041] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - ACTIONS(138), 1, - sym_strip_marker, - ACTIONS(140), 1, - sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, STATE(13), 1, sym_tuple_start, - STATE(494), 1, - sym_expression, - STATE(508), 1, - sym_conditional, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(215), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2136] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(94), 1, - anon_sym_RBRACE, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(348), 1, - sym_object_elem, - STATE(400), 1, - sym_conditional, - STATE(521), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2231] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - ACTIONS(142), 1, - sym_strip_marker, - ACTIONS(144), 1, - sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(508), 1, - sym_conditional, STATE(534), 1, sym_expression, - STATE(647), 1, + STATE(548), 1, + sym_conditional, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14301,22 +14086,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, sym_tuple, sym_object, STATE(333), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(215), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14325,485 +14110,454 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2326] = 26, + [2047] = 26, ACTIONS(11), 1, anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, + ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(146), 1, - sym_strip_marker, - ACTIONS(148), 1, - sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(508), 1, - sym_conditional, - STATE(526), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(215), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2421] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - ACTIONS(150), 1, - sym_strip_marker, - ACTIONS(152), 1, - sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(508), 1, - sym_conditional, - STATE(544), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(215), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2516] = 26, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - ACTIONS(154), 1, - sym_strip_marker, - ACTIONS(156), 1, - sym_template_interpolation_end, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(508), 1, - sym_conditional, - STATE(536), 1, - sym_expression, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(215), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2611] = 9, - ACTIONS(166), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 11, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(158), 16, - sym_quoted_template_start, - anon_sym_LBRACE, + ACTIONS(96), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [2671] = 25, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(168), 1, - anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(418), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2763] = 13, - ACTIONS(166), 1, - anon_sym_SLASH, - ACTIONS(176), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(170), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(172), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 9, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_LT_LT, - ACTIONS(158), 11, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [2831] = 25, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(178), 1, - anon_sym_RPAREN, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(418), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [2923] = 25, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(348), 1, + STATE(349), 1, sym_object_elem, - STATE(400), 1, + STATE(403), 1, sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2142] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(136), 1, + sym_strip_marker, + ACTIONS(138), 1, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(497), 1, + sym_expression, + STATE(548), 1, + sym_conditional, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(219), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2237] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(140), 1, + sym_strip_marker, + ACTIONS(142), 1, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(545), 1, + sym_expression, + STATE(548), 1, + sym_conditional, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(219), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2332] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(144), 1, + sym_strip_marker, + ACTIONS(146), 1, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(503), 1, + sym_expression, + STATE(548), 1, + sym_conditional, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(219), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2427] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(148), 1, + sym_strip_marker, + ACTIONS(150), 1, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, STATE(521), 1, sym_expression, - STATE(666), 1, + STATE(548), 1, + sym_conditional, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(219), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2522] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + ACTIONS(152), 1, + sym_strip_marker, + ACTIONS(154), 1, + sym_template_interpolation_end, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(514), 1, + sym_expression, + STATE(548), 1, + sym_conditional, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(219), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [2617] = 26, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + ACTIONS(156), 1, + anon_sym_RBRACE, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(349), 1, + sym_object_elem, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14814,23 +14568,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14839,67 +14593,17 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3015] = 8, - ACTIONS(166), 1, - anon_sym_SLASH, + [2712] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(170), 2, sym_attr_splat, sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 11, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - ACTIONS(158), 18, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3073] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, @@ -14937,67 +14641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3127] = 18, - ACTIONS(166), 1, - anon_sym_SLASH, - ACTIONS(176), 1, - anon_sym_AMP_AMP, - ACTIONS(184), 1, - anon_sym_LBRACK, - ACTIONS(186), 1, - anon_sym_DOT, - ACTIONS(188), 1, - anon_sym_DOT_STAR, - ACTIONS(190), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(192), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(170), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(172), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(182), 7, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_BANG, - anon_sym_LT_LT, - ACTIONS(180), 8, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT_LT_DASH, - [3205] = 25, + [2766] = 25, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15018,17 +14662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(194), 1, + ACTIONS(162), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(418), 1, + STATE(420), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15039,23 +14683,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15064,60 +14708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3297] = 11, - ACTIONS(166), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(170), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(172), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 9, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_LT_LT, - ACTIONS(158), 14, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3361] = 25, + [2858] = 25, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15138,17 +14729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(196), 1, - anon_sym_RBRACK, - STATE(6), 1, + ACTIONS(164), 1, + anon_sym_RPAREN, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(418), 1, + STATE(420), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15159,23 +14750,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15184,38 +14775,127 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3453] = 12, - ACTIONS(166), 1, + [2950] = 8, + ACTIONS(172), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(162), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(164), 2, + ACTIONS(170), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(170), 2, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 11, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, anon_sym_GT, anon_sym_LT, - ACTIONS(172), 2, + anon_sym_LT_LT, + ACTIONS(166), 18, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3008] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 12, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + ACTIONS(166), 20, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3062] = 9, + ACTIONS(172), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(170), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(168), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(170), 2, sym_attr_splat, sym_full_splat, - STATE(167), 3, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 9, + ACTIONS(168), 11, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -15224,48 +14904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_BANG, - anon_sym_LT_LT, - ACTIONS(158), 12, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - [3519] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(168), 2, - sym_new_index, - sym_legacy_index, - STATE(170), 2, - sym_attr_splat, - sym_full_splat, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(200), 12, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_BANG, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(198), 20, + ACTIONS(166), 16, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -15275,10 +14917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -15286,7 +14924,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3573] = 24, + [3122] = 11, + ACTIONS(172), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(170), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(178), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 9, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(166), 14, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3186] = 12, + ACTIONS(172), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(170), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(178), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 9, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(166), 12, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3252] = 18, + ACTIONS(172), 1, + anon_sym_SLASH, + ACTIONS(186), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, + anon_sym_DOT, + ACTIONS(190), 1, + anon_sym_DOT_STAR, + ACTIONS(192), 1, + anon_sym_LBRACK_STAR_RBRACK, + ACTIONS(194), 1, + anon_sym_AMP_AMP, + ACTIONS(196), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(170), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(178), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(184), 7, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(182), 8, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_LT_DASH, + [3330] = 13, + ACTIONS(172), 1, + anon_sym_SLASH, + ACTIONS(194), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(170), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(178), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(180), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(160), 2, + sym_new_index, + sym_legacy_index, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 9, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(166), 11, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + [3398] = 25, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15307,15 +15167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + ACTIONS(198), 1, + anon_sym_RBRACK, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(569), 1, + STATE(420), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15326,23 +15188,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15351,7 +15213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3662] = 24, + [3490] = 25, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15372,15 +15234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(349), 1, + sym_object_elem, + STATE(403), 1, sym_conditional, - STATE(418), 1, + STATE(533), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15391,23 +15255,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15416,7 +15280,334 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3751] = 24, + [3582] = 25, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + ACTIONS(200), 1, + anon_sym_RBRACK, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(420), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3674] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(561), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3763] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(613), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3852] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(402), 1, + sym_expression, + STATE(403), 1, + sym_conditional, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [3941] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(563), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4030] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -15437,15 +15628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(11), 1, + STATE(10), 1, sym_tuple_start, - STATE(346), 1, + STATE(515), 1, sym_expression, - STATE(347), 1, + STATE(549), 1, sym_conditional, - STATE(670), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15456,218 +15647,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(35), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3840] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(589), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [3929] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(570), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4018] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(525), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(304), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(306), 2, + STATE(300), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(233), 8, + STATE(222), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15676,657 +15672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [4107] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(407), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4196] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(568), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4285] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(561), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4374] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(410), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4463] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(563), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4552] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(599), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4641] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(415), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4730] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(538), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(233), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4819] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(620), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4908] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(619), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4997] = 24, + [4119] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -16347,15 +15693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(6), 1, sym_object_start, STATE(13), 1, sym_tuple_start, - STATE(508), 1, - sym_conditional, - STATE(545), 1, + STATE(511), 1, sym_expression, - STATE(647), 1, + STATE(548), 1, + sym_conditional, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16367,22 +15713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, sym_tuple, sym_object, STATE(333), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(215), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16391,72 +15737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [5086] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(420), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5175] = 24, + [4208] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -16477,15 +15758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(624), 1, + STATE(589), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16496,23 +15777,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16521,7 +15802,852 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [5264] = 24, + [4297] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(416), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4386] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(419), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4475] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(408), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4564] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(422), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4653] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(415), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4742] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(576), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4831] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(426), 1, + sym_conditional, + STATE(427), 1, + sym_expression, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [4920] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(409), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5009] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(424), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5098] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(582), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5187] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_LPAREN, + ACTIONS(238), 1, + aux_sym_numeric_lit_token1, + ACTIONS(240), 1, + aux_sym_numeric_lit_token2, + ACTIONS(244), 1, + sym_null_lit, + ACTIONS(248), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(347), 1, + sym_expression, + STATE(348), 1, + sym_conditional, + STATE(670), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(242), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(246), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(37), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5276] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(624), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5365] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(631), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5454] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -16542,15 +16668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(11), 1, + STATE(10), 1, sym_tuple_start, - STATE(345), 1, + STATE(524), 1, sym_expression, - STATE(347), 1, + STATE(549), 1, sym_conditional, - STATE(670), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16561,608 +16687,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(35), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5353] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(628), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5442] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(629), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5531] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(413), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5620] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(540), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5709] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(592), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5798] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(598), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5887] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(556), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5976] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(421), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6065] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(512), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(304), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(306), 2, + STATE(300), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(233), 8, + STATE(222), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17171,202 +16712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [6154] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(429), 1, - sym_conditional, - STATE(434), 1, - sym_expression, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6243] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(419), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6332] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(426), 1, - sym_expression, - STATE(429), 1, - sym_conditional, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6421] = 24, + [5543] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -17387,600 +16733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(401), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6510] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(613), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6599] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, + STATE(4), 1, sym_object_start, STATE(12), 1, sym_tuple_start, - STATE(527), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(233), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6688] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(429), 1, - sym_conditional, - STATE(431), 1, - sym_expression, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(182), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6777] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(608), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6866] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(616), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [6955] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(609), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7044] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, - sym_conditional, - STATE(607), 1, - sym_expression, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(128), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7133] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(493), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(233), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7222] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, STATE(593), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17991,23 +16752,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18016,7 +16777,787 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [7311] = 24, + [5632] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(527), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5721] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(410), 1, + sym_expression, + STATE(426), 1, + sym_conditional, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5810] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(611), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5899] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(601), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [5988] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(564), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6077] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(481), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6166] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(420), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6255] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(546), 1, + sym_expression, + STATE(549), 1, + sym_conditional, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6344] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(566), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6433] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(426), 1, + sym_conditional, + STATE(432), 1, + sym_expression, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(179), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6522] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(531), 1, + sym_expression, + STATE(549), 1, + sym_conditional, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6611] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(572), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6700] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -18037,15 +17578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(2), 1, sym_object_start, STATE(14), 1, sym_tuple_start, - STATE(411), 1, + STATE(346), 1, sym_expression, - STATE(429), 1, + STATE(348), 1, sym_conditional, - STATE(667), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18056,7 +17597,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(255), 2, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(37), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [6789] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(426), 1, + sym_conditional, + STATE(433), 1, + sym_expression, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, sym_tuple, sym_object, STATE(256), 2, @@ -18068,11 +17674,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(249), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(182), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18081,137 +17687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [7400] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(519), 1, - sym_expression, - STATE(550), 1, - sym_conditional, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(233), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7489] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(550), 1, - sym_conditional, - STATE(551), 1, - sym_expression, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(233), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [7578] = 24, + [6878] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -18232,15 +17708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(438), 1, + STATE(596), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18251,23 +17727,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18276,7 +17752,72 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [7667] = 24, + [6967] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(536), 1, + sym_expression, + STATE(549), 1, + sym_conditional, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7056] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -18297,15 +17838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(400), 1, + STATE(403), 1, sym_conditional, - STATE(575), 1, + STATE(591), 1, sym_expression, - STATE(666), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18316,23 +17857,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, sym_unary_operation, sym_binary_operation, STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(128), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18341,15 +17882,535 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [7756] = 7, - ACTIONS(184), 1, + [7145] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(600), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7234] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(516), 1, + sym_expression, + STATE(549), 1, + sym_conditional, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7323] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(558), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7412] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(618), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7501] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(630), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7590] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(549), 1, + sym_conditional, + STATE(552), 1, + sym_expression, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(222), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7679] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(629), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7768] = 24, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(403), 1, + sym_conditional, + STATE(625), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [7857] = 7, ACTIONS(186), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(90), 3, @@ -18388,18 +18449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [7810] = 7, - ACTIONS(184), 1, - anon_sym_LBRACK, + [7911] = 7, ACTIONS(186), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(90), 3, + STATE(93), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -18435,18 +18496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [7864] = 7, - ACTIONS(262), 1, + [7965] = 7, + ACTIONS(186), 1, anon_sym_LBRACK, - ACTIONS(265), 1, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(90), 3, + STATE(92), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -18482,22 +18543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [7918] = 7, - ACTIONS(184), 1, - anon_sym_LBRACK, + [8019] = 7, ACTIONS(186), 1, + anon_sym_LBRACK, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(88), 3, + STATE(93), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(270), 10, + ACTIONS(264), 10, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -18508,7 +18569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(268), 20, + ACTIONS(262), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -18529,22 +18590,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [7972] = 7, - ACTIONS(184), 1, + [8073] = 7, + ACTIONS(270), 1, anon_sym_LBRACK, - ACTIONS(186), 1, + ACTIONS(273), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(168), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(89), 3, + STATE(93), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(274), 10, + ACTIONS(268), 10, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -18555,7 +18616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(272), 20, + ACTIONS(266), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -18576,7 +18637,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [8026] = 22, + [8127] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(131), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8210] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -18597,11 +18719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(2), 1, sym_object_start, STATE(14), 1, sym_tuple_start, - STATE(667), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18612,23 +18734,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(255), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(249), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(34), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18637,68 +18759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8109] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(129), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8192] = 22, + [8293] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -18719,11 +18780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(11), 1, + STATE(10), 1, sym_tuple_start, - STATE(670), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18734,145 +18795,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(30), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8275] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(231), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8358] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(304), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(306), 2, + STATE(300), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(225), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18881,7 +18820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8441] = 22, + [8376] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -18902,11 +18841,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(11), 1, + STATE(10), 1, sym_tuple_start, - STATE(670), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18917,141 +18856,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(144), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, + STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(37), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8524] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(670), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(210), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(214), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(146), 2, + STATE(300), 2, sym_tuple, sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(28), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8607] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -19064,59 +18881,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8690] = 22, + [8459] = 22, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(666), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, sym_tuple, sym_object, - STATE(213), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(130), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19125,59 +18942,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8773] = 22, + [8542] = 22, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(666), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, sym_tuple, sym_object, - STATE(213), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(131), 8, + STATE(218), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19186,59 +19003,59 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8856] = 22, + [8625] = 22, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(666), 1, + STATE(656), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(214), 2, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, sym_tuple, sym_object, - STATE(213), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(132), 8, + STATE(236), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19247,190 +19064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [8939] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(133), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9022] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(134), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9105] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(666), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(23), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(31), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(196), 2, - sym_unary_operation, - sym_binary_operation, - STATE(201), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(208), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(214), 2, - sym_tuple, - sym_object, - STATE(213), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(135), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9188] = 22, + [8708] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19451,11 +19085,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(6), 1, sym_object_start, STATE(13), 1, sym_tuple_start, - STATE(647), 1, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19467,22 +19101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, sym_tuple, sym_object, STATE(333), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(227), 8, + STATE(230), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19491,7 +19125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9271] = 22, + [8791] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19512,11 +19146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(6), 1, sym_object_start, STATE(13), 1, sym_tuple_start, - STATE(647), 1, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19528,15 +19162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, sym_tuple, sym_object, STATE(333), 3, @@ -19552,7 +19186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9354] = 22, + [8874] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19561,50 +19195,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(234), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(236), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(238), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(240), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(244), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(248), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(14), 1, sym_tuple_start, - STATE(665), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(242), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(234), 8, + STATE(38), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19613,7 +19247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9437] = 22, + [8957] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19622,107 +19256,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(132), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(665), 1, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, + STATE(327), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(223), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9520] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, + STATE(329), 2, sym_unary_operation, sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(333), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -19735,7 +19308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9603] = 22, + [9040] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19744,46 +19317,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(132), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(665), 1, + STATE(633), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(288), 2, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(233), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9123] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_LPAREN, + ACTIONS(238), 1, + aux_sym_numeric_lit_token1, + ACTIONS(240), 1, + aux_sym_numeric_lit_token2, + ACTIONS(244), 1, + sym_null_lit, + ACTIONS(248), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(670), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(242), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(246), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(36), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9206] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(220), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9289] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(304), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(306), 2, + STATE(300), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(304), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -19796,7 +19552,129 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9686] = 22, + [9372] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_LPAREN, + ACTIONS(238), 1, + aux_sym_numeric_lit_token1, + ACTIONS(240), 1, + aux_sym_numeric_lit_token2, + ACTIONS(244), 1, + sym_null_lit, + ACTIONS(248), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(670), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(242), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(246), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(35), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9455] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(136), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9538] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19817,9 +19695,9 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(232), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym_object_start, - STATE(12), 1, + STATE(9), 1, sym_tuple_start, STATE(665), 1, sym_heredoc_start, @@ -19832,23 +19710,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(308), 3, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(235), 8, + STATE(181), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19857,7 +19735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9769] = 22, + [9621] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19878,9 +19756,9 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(232), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym_object_start, - STATE(12), 1, + STATE(9), 1, sym_tuple_start, STATE(665), 1, sym_heredoc_start, @@ -19893,129 +19771,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(288), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(294), 2, - sym_unary_operation, - sym_binary_operation, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(306), 2, - sym_tuple, - sym_object, - STATE(308), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(229), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9852] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(225), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [9935] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, + STATE(254), 2, sym_tuple, sym_object, STATE(256), 2, @@ -20027,11 +19783,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(249), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(176), 8, + STATE(183), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20040,7 +19796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10018] = 22, + [9704] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -20049,339 +19805,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(118), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(120), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(122), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(224), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10101] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, - sym_quoted_template_start, - STATE(4), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(647), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(124), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(327), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(328), 2, - sym_unary_operation, - sym_binary_operation, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(330), 2, - sym_tuple, - sym_object, - STATE(333), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(222), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10184] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(11), 1, + STATE(9), 1, sym_tuple_start, - STATE(670), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(34), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10267] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(670), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(210), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(214), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(33), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10350] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(670), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(210), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(214), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(40), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10433] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, + STATE(254), 2, sym_tuple, sym_object, STATE(256), 2, @@ -20393,251 +19844,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(180), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10516] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(175), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10599] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, - sym_quoted_template_start, - STATE(3), 1, - sym_object_start, - STATE(11), 1, - sym_tuple_start, - STATE(670), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(210), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(214), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(144), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(145), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(146), 2, - sym_tuple, - sym_object, - STATE(164), 2, - sym_unary_operation, - sym_binary_operation, - STATE(148), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(39), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10682] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(179), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [10765] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(234), 1, - sym_identifier, - ACTIONS(236), 1, - anon_sym_LPAREN, - ACTIONS(238), 1, - aux_sym_numeric_lit_token1, - ACTIONS(240), 1, - aux_sym_numeric_lit_token2, - ACTIONS(244), 1, - sym_null_lit, - ACTIONS(248), 1, - sym_quoted_template_start, - STATE(5), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(667), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(242), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(246), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(255), 2, - sym_tuple, - sym_object, - STATE(256), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(257), 2, - sym_unary_operation, - sym_binary_operation, - STATE(258), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(249), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20650,7 +19857,373 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10848] = 22, + [9787] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(182), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9870] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(180), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9953] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(177), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10036] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(218), 1, + sym_identifier, + ACTIONS(220), 1, + anon_sym_LPAREN, + ACTIONS(222), 1, + aux_sym_numeric_lit_token1, + ACTIONS(224), 1, + aux_sym_numeric_lit_token2, + ACTIONS(228), 1, + sym_null_lit, + ACTIONS(232), 1, + sym_quoted_template_start, + STATE(3), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + STATE(665), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(226), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(230), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(254), 2, + sym_tuple, + sym_object, + STATE(256), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(176), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10119] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(135), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10202] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(202), 1, + sym_identifier, + ACTIONS(204), 1, + anon_sym_LPAREN, + ACTIONS(206), 1, + aux_sym_numeric_lit_token1, + ACTIONS(208), 1, + aux_sym_numeric_lit_token2, + ACTIONS(212), 1, + sym_null_lit, + ACTIONS(216), 1, + sym_quoted_template_start, + STATE(5), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(656), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(210), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(214), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(292), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(294), 2, + sym_unary_operation, + sym_binary_operation, + STATE(296), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(300), 2, + sym_tuple, + sym_object, + STATE(304), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(224), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10285] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -20671,11 +20244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(2), 1, sym_object_start, STATE(14), 1, sym_tuple_start, - STATE(667), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -20686,23 +20259,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(255), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(249), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(177), 8, + STATE(33), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20711,8 +20284,496 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10931] = 18, - ACTIONS(182), 1, + [10368] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_LPAREN, + ACTIONS(238), 1, + aux_sym_numeric_lit_token1, + ACTIONS(240), 1, + aux_sym_numeric_lit_token2, + ACTIONS(244), 1, + sym_null_lit, + ACTIONS(248), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(670), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(242), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(246), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(32), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10451] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(134), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10534] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(229), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10617] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(13), 1, + sym_tuple_start, + STATE(633), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(124), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(128), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(327), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(329), 2, + sym_unary_operation, + sym_binary_operation, + STATE(330), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(332), 2, + sym_tuple, + sym_object, + STATE(333), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(227), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10700] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(234), 1, + sym_identifier, + ACTIONS(236), 1, + anon_sym_LPAREN, + ACTIONS(238), 1, + aux_sym_numeric_lit_token1, + ACTIONS(240), 1, + aux_sym_numeric_lit_token2, + ACTIONS(244), 1, + sym_null_lit, + ACTIONS(248), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(14), 1, + sym_tuple_start, + STATE(670), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(242), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(246), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(152), 2, + sym_tuple, + sym_object, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(29), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10783] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(130), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10866] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(132), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [10949] = 22, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(133), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [11032] = 18, + ACTIONS(184), 1, anon_sym_EQ, ACTIONS(276), 1, anon_sym_LBRACK, @@ -20746,17 +20807,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(294), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(203), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(180), 10, + ACTIONS(182), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20767,51 +20828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [11005] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(183), 2, - sym_attr_splat, - sym_full_splat, - STATE(202), 2, - sym_new_index, - sym_legacy_index, - STATE(203), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(200), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(198), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11055] = 13, + [11106] = 13, ACTIONS(288), 1, anon_sym_SLASH, ACTIONS(296), 1, @@ -20834,21 +20851,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(294), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - ACTIONS(160), 3, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(203), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 13, + ACTIONS(166), 13, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20862,7 +20879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_QMARK, anon_sym_PIPE_PIPE, - [11119] = 12, + [11170] = 12, ACTIONS(288), 1, anon_sym_SLASH, ACTIONS(3), 2, @@ -20883,21 +20900,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(294), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - ACTIONS(160), 3, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(203), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 14, + ACTIONS(166), 14, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20912,7 +20929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11181] = 11, + [11232] = 11, ACTIONS(288), 1, anon_sym_SLASH, ACTIONS(3), 2, @@ -20930,21 +20947,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - ACTIONS(160), 3, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(203), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 16, + ACTIONS(166), 16, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20961,7 +20978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11241] = 9, + [11292] = 9, ACTIONS(288), 1, anon_sym_SLASH, ACTIONS(3), 2, @@ -20973,23 +20990,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(203), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 5, + ACTIONS(168), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(158), 18, + ACTIONS(166), 18, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21008,17 +21025,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11297] = 6, + [11348] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(183), 2, + STATE(199), 2, sym_attr_splat, sym_full_splat, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(203), 3, + STATE(204), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11398] = 8, + ACTIONS(288), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(286), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(199), 2, + sym_attr_splat, + sym_full_splat, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 20, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11452] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(199), 2, + sym_attr_splat, + sym_full_splat, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, @@ -21052,53 +21159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11347] = 8, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(183), 2, - sym_attr_splat, - sym_full_splat, - STATE(202), 2, - sym_new_index, - sym_legacy_index, - STATE(203), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 20, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11401] = 7, + [11502] = 7, ACTIONS(276), 1, anon_sym_LBRACK, ACTIONS(278), 1, @@ -21106,99 +21167,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(202), 2, - sym_new_index, - sym_legacy_index, - STATE(139), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(256), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(254), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11451] = 7, - ACTIONS(276), 1, - anon_sym_LBRACK, - ACTIONS(278), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(138), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(270), 4, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(268), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [11501] = 7, - ACTIONS(276), 1, - anon_sym_LBRACK, - ACTIONS(278), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(202), 2, - sym_new_index, - sym_legacy_index, - STATE(139), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, ACTIONS(252), 4, anon_sym_EQ, anon_sym_SLASH, @@ -21227,18 +21202,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11551] = 7, - ACTIONS(300), 1, + [11552] = 7, + ACTIONS(276), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(278), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(139), 3, + STATE(142), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(256), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(254), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11602] = 7, + ACTIONS(276), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(140), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -21270,7 +21288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11601] = 7, + [11652] = 7, ACTIONS(276), 1, anon_sym_LBRACK, ACTIONS(278), 1, @@ -21278,19 +21296,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(202), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(136), 3, + STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(274), 4, + ACTIONS(264), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(272), 22, + ACTIONS(262), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21313,15 +21331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [11651] = 5, - ACTIONS(310), 1, + [11702] = 5, + ACTIONS(304), 1, anon_sym_LPAREN, - STATE(19), 1, + STATE(17), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(308), 12, + ACTIONS(302), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21334,7 +21352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(306), 19, + ACTIONS(300), 19, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21354,7 +21372,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11697] = 3, + [11748] = 7, + ACTIONS(306), 1, + anon_sym_LBRACK, + ACTIONS(309), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(142), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(268), 4, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [11798] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21392,7 +21453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11738] = 3, + [11839] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21430,7 +21491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11779] = 3, + [11880] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21468,7 +21529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11820] = 3, + [11921] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21506,7 +21567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11861] = 3, + [11962] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21544,7 +21605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11902] = 3, + [12003] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21582,7 +21643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11943] = 3, + [12044] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21620,7 +21681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [11984] = 3, + [12085] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21658,7 +21719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12025] = 3, + [12126] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21696,7 +21757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12066] = 3, + [12167] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21734,7 +21795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12107] = 3, + [12208] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21772,7 +21833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12148] = 3, + [12249] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21810,7 +21871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12189] = 3, + [12290] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21848,7 +21909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12230] = 3, + [12331] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21886,7 +21947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12271] = 3, + [12372] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21924,7 +21985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12312] = 3, + [12413] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -21962,7 +22023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12353] = 3, + [12454] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22000,7 +22061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12394] = 3, + [12495] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22038,7 +22099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12435] = 3, + [12536] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22076,7 +22137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12476] = 3, + [12577] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22114,7 +22175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12517] = 3, + [12618] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22152,7 +22213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12558] = 3, + [12659] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22190,7 +22251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12599] = 3, + [12700] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22228,7 +22289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12640] = 3, + [12741] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22266,7 +22327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12681] = 3, + [12782] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22304,7 +22365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12722] = 3, + [12823] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22342,7 +22403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12763] = 3, + [12864] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22380,7 +22441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12804] = 3, + [12905] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22418,7 +22479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12845] = 3, + [12946] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22456,7 +22517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12886] = 3, + [12987] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22494,7 +22555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12927] = 3, + [13028] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22532,7 +22593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [12968] = 3, + [13069] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22570,22 +22631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [13009] = 5, + [13110] = 5, ACTIONS(440), 1, anon_sym_LPAREN, - STATE(16), 1, + STATE(18), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(308), 6, + ACTIONS(302), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(306), 22, + ACTIONS(300), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22608,51 +22669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13052] = 12, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(444), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(448), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(450), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(452), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - STATE(251), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(158), 9, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13108] = 13, + [13153] = 13, ACTIONS(446), 1, anon_sym_SLASH, ACTIONS(454), 1, @@ -22660,7 +22677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(160), 2, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, ACTIONS(442), 2, @@ -22678,17 +22695,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(452), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(251), 3, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 8, + ACTIONS(166), 8, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22697,13 +22714,13 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_QMARK, anon_sym_PIPE_PIPE, - [13166] = 11, + [13211] = 12, ACTIONS(446), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(160), 2, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, ACTIONS(442), 2, @@ -22718,17 +22735,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(450), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, + ACTIONS(452), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(251), 3, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 11, + ACTIONS(166), 9, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22736,72 +22756,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, sym_ellipsis, anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13220] = 9, - ACTIONS(446), 1, - anon_sym_SLASH, + [13267] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(444), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(251), 3, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 13, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13270] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - STATE(251), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 5, + ACTIONS(168), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(158), 17, + ACTIONS(166), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22819,85 +22796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13314] = 8, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(444), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - STATE(251), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 15, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13362] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - STATE(251), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(200), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(198), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13406] = 17, + [13311] = 17, ACTIONS(446), 1, anon_sym_SLASH, ACTIONS(454), 1, @@ -22930,44 +22829,91 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(452), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(279), 2, - sym_attr_splat, - sym_full_splat, - STATE(280), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(251), 3, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(180), 5, + ACTIONS(182), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [13472] = 3, + [13377] = 11, + ACTIONS(446), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 6, - anon_sym_EQ, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(444), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(166), 11, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13431] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(160), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 22, - ts_builtin_sym_end, + ACTIONS(158), 17, anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, + anon_sym_if, sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, @@ -22980,33 +22926,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13509] = 3, + [13475] = 9, + ACTIONS(446), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 6, - anon_sym_EQ, + ACTIONS(442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(444), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 22, - ts_builtin_sym_end, + ACTIONS(166), 13, anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13525] = 8, + ACTIONS(446), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(444), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -23014,925 +23007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13546] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13583] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13620] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(370), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13657] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13694] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13731] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13768] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(314), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13805] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13842] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13879] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(410), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(408), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13916] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(334), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13953] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(402), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(400), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13990] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(430), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(428), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14027] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(346), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(344), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14064] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14101] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(382), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14138] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14175] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(418), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(416), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14212] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14249] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14286] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(354), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(352), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14323] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(358), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14360] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14397] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14434] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(350), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(348), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14471] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(342), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(340), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14508] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(406), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(404), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14545] = 3, + [13573] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23966,18 +23041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14582] = 3, + [13610] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 6, + ACTIONS(342), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 22, + ACTIONS(340), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24000,7 +23075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14619] = 3, + [13647] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -24034,64 +23109,1003 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14656] = 17, - ACTIONS(466), 1, - anon_sym_LBRACK, - ACTIONS(468), 1, - anon_sym_DOT, - ACTIONS(470), 1, - anon_sym_DOT_STAR, - ACTIONS(472), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(486), 1, - anon_sym_AMP_AMP, - ACTIONS(488), 1, - anon_sym_PIPE_PIPE, + [13684] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(480), 2, + ACTIONS(334), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(482), 2, + ACTIONS(332), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(180), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - [14720] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13721] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, + ACTIONS(358), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13758] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13795] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13832] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13869] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13906] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13943] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(354), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13980] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14017] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14054] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14091] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14128] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(422), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(420), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14165] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14202] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14239] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(398), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14276] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(362), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14313] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(418), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14350] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(410), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(408), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14387] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(390), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14424] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14461] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(406), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14498] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(426), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14535] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14572] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(382), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14609] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14646] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(402), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(400), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14683] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(394), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14720] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14757] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, @@ -24117,32 +24131,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14762] = 7, - ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_DOT, + [14799] = 9, + ACTIONS(470), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(280), 2, + ACTIONS(466), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(468), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(289), 2, sym_new_index, sym_legacy_index, - ACTIONS(274), 3, + STATE(290), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 11, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14847] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(218), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(272), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(166), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -24154,124 +24205,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14806] = 7, - ACTIONS(456), 1, + sym_strip_marker, + [14889] = 17, + ACTIONS(472), 1, anon_sym_LBRACK, - ACTIONS(458), 1, + ACTIONS(474), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(256), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(230), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(254), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(476), 1, anon_sym_DOT_STAR, + ACTIONS(478), 1, anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14850] = 7, - ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(484), 1, anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(230), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(250), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(492), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14894] = 13, ACTIONS(494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(490), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(182), 3, + sym_template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + [14953] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(160), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(158), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14995] = 7, + ACTIONS(496), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(221), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(266), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15039] = 17, + ACTIONS(470), 1, anon_sym_SLASH, ACTIONS(502), 1, + anon_sym_LBRACK, + ACTIONS(504), 1, + anon_sym_DOT, + ACTIONS(506), 1, + anon_sym_DOT_STAR, + ACTIONS(508), 1, + anon_sym_LBRACK_STAR_RBRACK, + ACTIONS(516), 1, anon_sym_AMP_AMP, + ACTIONS(518), 1, + anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(490), 2, + ACTIONS(466), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(492), 2, + ACTIONS(468), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(496), 2, + ACTIONS(510), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(498), 2, + ACTIONS(512), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(500), 2, + ACTIONS(514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(182), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 6, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [14950] = 7, + [15103] = 7, ACTIONS(456), 1, anon_sym_LBRACK, ACTIONS(458), 1, @@ -24279,367 +24381,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(280), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(219), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(268), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14994] = 13, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(486), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(480), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(158), 6, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15050] = 11, - ACTIONS(494), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(490), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(492), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(496), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(158), 9, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15102] = 12, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(480), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(158), 7, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15156] = 11, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(160), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(480), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(482), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(158), 9, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15208] = 9, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 11, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15256] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15298] = 8, - ACTIONS(478), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(476), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(301), 2, - sym_attr_splat, - sym_full_splat, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - STATE(312), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 13, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15344] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(200), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(198), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15386] = 7, - ACTIONS(504), 1, - anon_sym_LBRACK, - ACTIONS(507), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(280), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, ACTIONS(260), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(230), 3, + STATE(234), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -24661,201 +24410,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15430] = 6, + [15147] = 13, + ACTIONS(470), 1, + anon_sym_SLASH, + ACTIONS(516), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(301), 2, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(466), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(468), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(510), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(512), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(514), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(311), 2, + STATE(289), 2, sym_new_index, sym_legacy_index, - STATE(312), 3, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(200), 5, + ACTIONS(166), 6, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15203] = 12, + ACTIONS(470), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_SLASH, + ACTIONS(466), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(468), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(510), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(198), 15, + ACTIONS(512), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(514), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(166), 7, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15257] = 13, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(492), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(490), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(166), 6, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15472] = 9, - ACTIONS(494), 1, + [15313] = 12, + ACTIONS(484), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(490), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(492), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(338), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 11, - sym_template_directive_end, + ACTIONS(166), 7, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15520] = 17, - ACTIONS(494), 1, - anon_sym_SLASH, - ACTIONS(502), 1, - anon_sym_AMP_AMP, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(512), 1, - anon_sym_DOT, - ACTIONS(514), 1, - anon_sym_DOT_STAR, - ACTIONS(516), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(518), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(490), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(492), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(496), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(180), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - [15584] = 12, - ACTIONS(494), 1, + [15367] = 11, + ACTIONS(470), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(160), 2, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(490), 2, + ACTIONS(466), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(492), 2, + ACTIONS(468), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(496), 2, + ACTIONS(510), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(498), 2, + ACTIONS(512), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(500), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(158), 7, + ACTIONS(166), 9, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15638] = 8, - ACTIONS(494), 1, + [15419] = 11, + ACTIONS(484), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(492), 2, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - STATE(341), 2, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(338), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 4, + ACTIONS(166), 9, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15471] = 9, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(158), 13, - sym_template_directive_end, + ACTIONS(166), 11, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -24863,26 +24701,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15684] = 7, - ACTIONS(466), 1, + [15519] = 7, + ACTIONS(456), 1, anon_sym_LBRACK, - ACTIONS(468), 1, + ACTIONS(458), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(311), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, ACTIONS(252), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(243), 3, + STATE(235), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(250), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15563] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24898,7 +24774,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15726] = 7, + [15605] = 8, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(338), 2, + sym_attr_splat, + sym_full_splat, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + STATE(340), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 13, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15651] = 7, + ACTIONS(456), 1, + anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(221), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15695] = 7, + ACTIONS(456), 1, + anon_sym_LBRACK, + ACTIONS(458), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(256), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(221), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(254), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15739] = 8, + ACTIONS(470), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(468), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 13, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15785] = 7, + ACTIONS(472), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(241), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15827] = 7, + ACTIONS(472), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(256), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(241), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(254), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15869] = 7, + ACTIONS(502), 1, + anon_sym_LBRACK, + ACTIONS(504), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(260), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(242), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(258), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15911] = 7, ACTIONS(520), 1, anon_sym_LBRACK, ACTIONS(523), 1, @@ -24906,18 +25037,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(284), 2, + STATE(289), 2, sym_new_index, sym_legacy_index, - ACTIONS(260), 3, + ACTIONS(268), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(237), 3, + STATE(240), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(258), 15, + ACTIONS(266), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24933,22 +25064,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15768] = 7, - ACTIONS(510), 1, + [15953] = 7, + ACTIONS(526), 1, anon_sym_LBRACK, - ACTIONS(512), 1, + ACTIONS(529), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(284), 2, + STATE(339), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(241), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(266), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15995] = 7, + ACTIONS(502), 1, + anon_sym_LBRACK, + ACTIONS(504), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(240), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16037] = 7, + ACTIONS(472), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(339), 2, sym_new_index, sym_legacy_index, ACTIONS(252), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(237), 3, + STATE(238), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(250), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16079] = 7, + ACTIONS(502), 1, + anon_sym_LBRACK, + ACTIONS(504), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(252), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(246), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -24968,162 +25204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15810] = 7, - ACTIONS(510), 1, + [16121] = 7, + ACTIONS(472), 1, anon_sym_LBRACK, - ACTIONS(512), 1, + ACTIONS(474), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(256), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(237), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(254), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15852] = 7, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(512), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(238), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(268), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15894] = 7, - ACTIONS(466), 1, - anon_sym_LBRACK, - ACTIONS(468), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(236), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(268), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15936] = 7, - ACTIONS(466), 1, - anon_sym_LBRACK, - ACTIONS(468), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(311), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(274), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(244), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(272), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15978] = 7, - ACTIONS(526), 1, - anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(311), 2, + STATE(339), 2, sym_new_index, sym_legacy_index, ACTIONS(260), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(243), 3, + STATE(237), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -25143,61 +25239,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16020] = 7, - ACTIONS(466), 1, + [16163] = 7, + ACTIONS(502), 1, anon_sym_LBRACK, - ACTIONS(468), 1, + ACTIONS(504), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(311), 2, + STATE(289), 2, sym_new_index, sym_legacy_index, ACTIONS(256), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(243), 3, + STATE(240), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, ACTIONS(254), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16062] = 7, - ACTIONS(510), 1, - anon_sym_LBRACK, - ACTIONS(512), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(284), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(274), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(239), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(272), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25213,21 +25274,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16104] = 5, + [16205] = 5, ACTIONS(532), 1, anon_sym_LPAREN, - STATE(15), 1, + STATE(20), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(308), 5, + ACTIONS(302), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(306), 17, + ACTIONS(300), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25245,851 +25306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16141] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16172] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(406), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(404), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16203] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(338), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(336), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16234] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(342), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(340), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16265] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16296] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(350), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(348), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16327] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(354), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(352), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16358] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16389] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(330), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(328), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16420] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16451] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(402), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(400), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16482] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16513] = 5, - ACTIONS(534), 1, - anon_sym_LPAREN, - STATE(17), 1, - sym__function_call_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(308), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(306), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16548] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16579] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(346), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(344), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16610] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16641] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(334), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16672] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16703] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(410), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(408), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16734] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16765] = 5, - ACTIONS(536), 1, - anon_sym_LPAREN, - STATE(18), 1, - sym__function_call_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(308), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(306), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16800] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16831] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(358), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16862] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(382), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16893] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(366), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16924] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(370), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16955] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(314), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16986] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(318), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17017] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17048] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17079] = 3, + [16242] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26117,17 +25334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17110] = 3, + [16273] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(334), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 17, + ACTIONS(332), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26145,17 +25362,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17141] = 3, + [16304] = 5, + ACTIONS(534), 1, + anon_sym_LPAREN, + STATE(16), 1, + sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(302), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 17, + ACTIONS(300), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16339] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26173,7 +25420,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17172] = 3, + [16370] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(330), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16401] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16432] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16463] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(354), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16494] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16525] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16556] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16587] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(398), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16618] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26201,423 +25672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17203] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(354), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(352), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17232] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(406), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(404), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17261] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17290] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(418), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(416), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17319] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(318), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17348] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17377] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17406] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17435] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(314), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17464] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(370), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17493] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(366), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17522] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(358), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17551] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17580] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(402), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(400), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17609] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(334), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17638] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(346), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(344), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17667] = 3, + [16649] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26627,10 +25682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 15, - sym_template_directive_end, + ACTIONS(380), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26642,18 +25700,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [17696] = 3, + [16680] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 5, + ACTIONS(422), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 15, + ACTIONS(420), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16711] = 5, + ACTIONS(536), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym__function_call_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(302), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(300), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26669,20 +25758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [17725] = 3, + [16746] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(402), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 15, - sym_template_directive_end, + ACTIONS(400), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -26694,398 +25786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [17754] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17783] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(426), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(424), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17812] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17841] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17870] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17899] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17928] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(330), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(328), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17957] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(430), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(428), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17986] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(338), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(336), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18015] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18044] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(342), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(340), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18073] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(418), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(416), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18102] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18131] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(350), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(348), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18160] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18189] = 3, + [16777] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27095,10 +25796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 15, - sym_template_directive_end, + ACTIONS(408), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -27110,8 +25814,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [18218] = 3, + [16808] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(318), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16839] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16870] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16901] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16932] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(358), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16963] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16994] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17025] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(426), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17056] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17087] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(406), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17118] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(390), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17149] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17180] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17211] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27121,10 +26188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 15, - sym_template_directive_end, + ACTIONS(360), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, anon_sym_QMARK, anon_sym_DASH, anon_sym_STAR, @@ -27136,8 +26206,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_strip_marker, - [18247] = 3, + [17242] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(342), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17273] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17304] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27163,267 +26288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18276] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18305] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18334] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(410), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(408), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18363] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18392] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18421] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18450] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18479] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18508] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18537] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18566] = 3, + [17333] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27449,17 +26314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18595] = 3, + [17362] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(394), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 15, + ACTIONS(392), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27475,43 +26340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18624] = 3, + [17391] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(410), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18653] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(318), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(408), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27527,17 +26366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18682] = 3, + [17420] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(402), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 15, + ACTIONS(400), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27553,7 +26392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18711] = 3, + [17449] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27579,18 +26418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18740] = 3, + [17478] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(422), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, - sym_template_interpolation_end, + ACTIONS(420), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27605,7 +26444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18769] = 3, + [17507] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27616,32 +26455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, ACTIONS(380), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18798] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(370), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27657,43 +26470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18827] = 3, + [17536] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(418), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18856] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(366), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 15, + ACTIONS(416), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27709,33 +26496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18885] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(358), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18914] = 3, + [17565] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27761,7 +26522,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18943] = 3, + [17594] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17623] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17652] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17681] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17710] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17739] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17768] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(354), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17797] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27772,7 +26715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, ACTIONS(424), 15, - sym_template_directive_end, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27787,17 +26730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18972] = 3, + [17826] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(350), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, + ACTIONS(348), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27813,7 +26756,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19001] = 3, + [17855] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17884] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17913] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(406), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17942] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27839,7 +26860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19030] = 3, + [17971] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27865,9 +26886,1047 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19059] = 4, - ACTIONS(542), 1, + [18000] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(334), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(332), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18029] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(330), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18058] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18087] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18116] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(358), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18145] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18174] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18203] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18232] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(426), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18261] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18290] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18319] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18348] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18377] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(390), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18406] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18435] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18464] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(362), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18493] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(362), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18522] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(342), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18551] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(354), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18580] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(342), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18609] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18638] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(318), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18667] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18696] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18725] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(398), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18754] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18783] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18812] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(334), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(332), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18841] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(330), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18870] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18899] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18928] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(422), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(420), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18957] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(382), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18986] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(418), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19015] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19044] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(394), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19073] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(318), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19102] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(358), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19131] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(410), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(408), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19160] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27878,29 +27937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(538), 10, - sym_quoted_template_start, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - aux_sym_numeric_lit_token2, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19087] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(546), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(544), 11, + ACTIONS(538), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27912,18 +27949,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19113] = 3, + [19186] = 4, + ACTIONS(546), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(182), 6, + ACTIONS(544), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(180), 11, + ACTIONS(542), 10, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LT_LT_DASH, + [19214] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(184), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(182), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27935,7 +27996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19139] = 3, + [19240] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27946,7 +28007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(52), 10, + ACTIONS(50), 10, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27957,7 +28018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19164] = 3, + [19265] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27972,14 +28033,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(550), 9, sym_quoted_template_start, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, aux_sym_numeric_lit_token2, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19189] = 3, + [19290] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27994,109 +28055,74 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(554), 9, sym_quoted_template_start, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, aux_sym_numeric_lit_token2, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19214] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(562), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(398), 1, - sym_template_else_intro, - STATE(459), 1, - sym_template_if_end, - STATE(466), 1, - aux_sym_template_literal_repeat1, + [19315] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(358), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19253] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(381), 1, - sym_template_else_intro, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(502), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(357), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19292] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(566), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(391), 1, - sym_template_else_intro, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(468), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(356), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19331] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(570), 6, + ACTIONS(556), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(568), 8, + ACTIONS(554), 9, + sym_quoted_template_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + aux_sym_numeric_lit_token2, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_LT_LT_DASH, + [19339] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(562), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(381), 1, + sym_template_else_intro, + STATE(436), 1, + sym_template_if_end, + STATE(445), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19378] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(566), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(564), 8, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_LPAREN, @@ -28105,7 +28131,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19354] = 3, + [19401] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(568), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(394), 1, + sym_template_else_intro, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(490), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19440] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(568), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(368), 1, + sym_template_else_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(477), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(355), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19479] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(562), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(379), 1, + sym_template_else_intro, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(488), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(353), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19518] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(570), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(361), 1, + sym_template_else_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(493), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19557] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -28125,117 +28263,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19377] = 11, + [19580] = 11, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(566), 1, + ACTIONS(570), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(367), 1, - sym_template_else_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(389), 1, + sym_template_else_intro, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(478), 1, + STATE(528), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(358), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19416] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(383), 1, - sym_template_else_intro, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(498), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(399), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19455] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(562), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(392), 1, - sym_template_else_intro, - STATE(455), 1, - sym_template_if_end, - STATE(466), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(399), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19494] = 10, + [19619] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, ACTIONS(576), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(499), 1, - sym_template_for_end, + STATE(510), 1, + sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(362), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19530] = 10, + [19655] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(576), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(526), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19691] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, @@ -28244,24 +28352,24 @@ static const uint16_t ts_small_parse_table[] = { sym_template_directive_start, ACTIONS(584), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(362), 4, + STATE(367), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19566] = 11, + [19727] = 10, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(586), 1, @@ -28270,260 +28378,208 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, ACTIONS(590), 1, sym_template_interpolation_start, - STATE(353), 1, + STATE(357), 1, sym_template_if_intro, - STATE(386), 1, + STATE(397), 1, sym_template_for_start, - STATE(432), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, - STATE(454), 1, - sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(363), 3, + STATE(366), 4, aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, - [19604] = 10, + [19763] = 11, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, ACTIONS(592), 1, - sym__template_literal_chunk, - ACTIONS(595), 1, - sym_template_interpolation_start, - ACTIONS(598), 1, - sym_template_directive_start, - ACTIONS(601), 1, - sym_heredoc_identifier, - STATE(351), 1, + sym_quoted_template_end, + STATE(357), 1, sym_template_if_intro, - STATE(393), 1, + STATE(397), 1, sym_template_for_start, - STATE(430), 1, + STATE(423), 1, + aux_sym_template_literal_repeat1, + STATE(468), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(452), 2, + sym_template_for, + sym_template_if, + STATE(384), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [19801] = 10, + ACTIONS(594), 1, + sym_quoted_template_end, + ACTIONS(596), 1, + sym__template_literal_chunk, + ACTIONS(599), 1, + sym_template_interpolation_start, + ACTIONS(602), 1, + sym_template_directive_start, + STATE(357), 1, + sym_template_if_intro, + STATE(397), 1, + sym_template_for_start, + STATE(423), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(362), 4, + STATE(366), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19640] = 10, + [19837] = 10, + ACTIONS(578), 1, + sym__template_literal_chunk, + ACTIONS(580), 1, + sym_template_interpolation_start, ACTIONS(582), 1, sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(603), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(386), 1, - sym_template_for_start, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(458), 2, - sym_template_for, - sym_template_if, - STATE(364), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19676] = 10, - ACTIONS(598), 1, - sym_template_directive_start, - ACTIONS(601), 1, - sym_quoted_template_end, ACTIONS(605), 1, - sym__template_literal_chunk, - ACTIONS(608), 1, - sym_template_interpolation_start, - STATE(353), 1, + sym_heredoc_identifier, + STATE(356), 1, sym_template_if_intro, - STATE(386), 1, + STATE(399), 1, sym_template_for_start, - STATE(432), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(364), 4, + STATE(371), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19712] = 10, + [19873] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(607), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(490), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(393), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19909] = 11, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(588), 1, sym__template_literal_chunk, ACTIONS(590), 1, sym_template_interpolation_start, + ACTIONS(609), 1, + sym_quoted_template_end, + STATE(357), 1, + sym_template_if_intro, + STATE(397), 1, + sym_template_for_start, + STATE(423), 1, + aux_sym_template_literal_repeat1, + STATE(479), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(452), 2, + sym_template_for, + sym_template_if, + STATE(364), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [19947] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, ACTIONS(611), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(386), 1, - sym_template_for_start, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(458), 2, - sym_template_for, - sym_template_if, - STATE(364), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19748] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(613), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(456), 1, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(491), 1, sym_template_for_end, - STATE(466), 1, - aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(401), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19784] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(615), 1, + [19983] = 10, + ACTIONS(594), 1, + sym_heredoc_identifier, + ACTIONS(602), 1, sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(492), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(370), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19820] = 10, - ACTIONS(558), 1, + ACTIONS(613), 1, sym__template_literal_chunk, - ACTIONS(560), 1, + ACTIONS(616), 1, sym_template_interpolation_start, - ACTIONS(615), 1, - sym_template_directive_start, - STATE(352), 1, + STATE(356), 1, sym_template_if_intro, - STATE(373), 1, + STATE(399), 1, sym_template_for_start, - STATE(466), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, - STATE(492), 1, - sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(371), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [19856] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym__template_literal_chunk, - ACTIONS(590), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(386), 1, - sym_template_for_start, - STATE(432), 1, - aux_sym_template_literal_repeat1, - STATE(486), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(458), 2, - sym_template_for, - sym_template_if, - STATE(372), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [19894] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(615), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(485), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(399), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19930] = 11, + [20019] = 11, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(588), 1, @@ -28532,182 +28588,155 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation_start, ACTIONS(619), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(357), 1, sym_template_if_intro, - STATE(386), 1, + STATE(397), 1, sym_template_for_start, - STATE(432), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, - STATE(469), 1, + STATE(441), 1, sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(382), 3, + STATE(374), 3, aux_sym__template, sym_template_interpolation, sym_template_directive, - [19968] = 10, + [20057] = 10, + ACTIONS(578), 1, + sym__template_literal_chunk, + ACTIONS(580), 1, + sym_template_interpolation_start, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(621), 1, + sym_heredoc_identifier, + STATE(356), 1, + sym_template_if_intro, + STATE(399), 1, + sym_template_for_start, + STATE(425), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(446), 2, + sym_template_for, + sym_template_if, + STATE(371), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20093] = 10, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(588), 1, sym__template_literal_chunk, ACTIONS(590), 1, sym_template_interpolation_start, - ACTIONS(621), 1, + ACTIONS(623), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(357), 1, sym_template_if_intro, - STATE(386), 1, + STATE(397), 1, sym_template_for_start, - STATE(432), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(364), 4, + STATE(366), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20004] = 10, + [20129] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(576), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(503), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(359), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20040] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(623), 1, - sym_heredoc_identifier, - STATE(351), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(430), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(464), 2, - sym_template_for, - sym_template_if, - STATE(380), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20076] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, ACTIONS(625), 1, - sym_heredoc_identifier, - STATE(351), 1, + sym_template_directive_start, + STATE(360), 1, sym_template_if_intro, - STATE(393), 1, + STATE(376), 1, sym_template_for_start, - STATE(430), 1, + STATE(443), 1, + sym_template_if_end, + STATE(445), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(360), 4, + STATE(401), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20112] = 10, + [20165] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, ACTIONS(627), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(446), 1, - sym_template_if_end, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, + STATE(539), 1, + sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(387), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20148] = 11, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, + [20201] = 10, + ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(590), 1, + ACTIONS(560), 1, sym_template_interpolation_start, ACTIONS(629), 1, - sym_quoted_template_end, - STATE(353), 1, + sym_template_directive_start, + STATE(360), 1, sym_template_if_intro, - STATE(386), 1, + STATE(376), 1, sym_template_for_start, - STATE(432), 1, + STATE(439), 1, + sym_template_for_end, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(477), 1, - sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(365), 3, + STATE(401), 4, aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, - [20186] = 10, + [20237] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, @@ -28716,102 +28745,154 @@ static const uint16_t ts_small_parse_table[] = { sym_template_directive_start, ACTIONS(631), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(394), 4, + STATE(395), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20222] = 10, + [20273] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(633), 1, + ACTIONS(625), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(436), 1, + sym_template_if_end, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(474), 1, - sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(391), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20258] = 10, + [20309] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, sym_template_interpolation_start, ACTIONS(582), 1, sym_template_directive_start, - ACTIONS(635), 1, + ACTIONS(633), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(362), 4, + STATE(373), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20294] = 10, + [20345] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(637), 1, + ACTIONS(625), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(498), 1, + STATE(483), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(385), 4, + STATE(375), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20330] = 10, + [20381] = 10, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(635), 1, + sym_quoted_template_end, + STATE(357), 1, + sym_template_if_intro, + STATE(397), 1, + sym_template_for_start, + STATE(423), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(452), 2, + sym_template_for, + sym_template_if, + STATE(366), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20417] = 10, + ACTIONS(578), 1, + sym__template_literal_chunk, + ACTIONS(580), 1, + sym_template_interpolation_start, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(637), 1, + sym_heredoc_identifier, + STATE(356), 1, + sym_template_if_intro, + STATE(399), 1, + sym_template_for_start, + STATE(425), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(446), 2, + sym_template_for, + sym_template_if, + STATE(371), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20453] = 10, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(588), 1, @@ -28820,50 +28901,24 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation_start, ACTIONS(639), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(357), 1, sym_template_if_intro, - STATE(386), 1, + STATE(397), 1, sym_template_for_start, - STATE(432), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(364), 4, + STATE(366), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20366] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(554), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(395), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20402] = 11, + [20489] = 11, ACTIONS(582), 1, sym_template_directive_start, ACTIONS(588), 1, @@ -28872,103 +28927,25 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation_start, ACTIONS(641), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(357), 1, sym_template_if_intro, - STATE(386), 1, + STATE(397), 1, sym_template_for_start, - STATE(432), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, - STATE(462), 1, + STATE(487), 1, sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(389), 3, + STATE(382), 3, aux_sym__template, sym_template_interpolation, sym_template_directive, - [20440] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(554), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(399), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20476] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(633), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(466), 1, - aux_sym_template_literal_repeat1, - STATE(467), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20512] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(627), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(450), 1, - sym_template_if_end, - STATE(466), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(399), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20548] = 10, + [20527] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, @@ -28977,16 +28954,16 @@ static const uint16_t ts_small_parse_table[] = { sym_template_directive_start, ACTIONS(643), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, STATE(390), 4, @@ -28994,33 +28971,215 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20584] = 10, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(588), 1, + [20563] = 10, + ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(590), 1, + ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(645), 1, - sym_quoted_template_end, - STATE(353), 1, + ACTIONS(627), 1, + sym_template_directive_start, + STATE(360), 1, sym_template_if_intro, - STATE(386), 1, + STATE(376), 1, sym_template_for_start, - STATE(432), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, + STATE(498), 1, + sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(458), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(364), 4, + STATE(401), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20620] = 10, + [20599] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(607), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(463), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20635] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(576), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(493), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(392), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20671] = 10, + ACTIONS(578), 1, + sym__template_literal_chunk, + ACTIONS(580), 1, + sym_template_interpolation_start, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(645), 1, + sym_heredoc_identifier, + STATE(356), 1, + sym_template_if_intro, + STATE(399), 1, + sym_template_for_start, + STATE(425), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(446), 2, + sym_template_for, + sym_template_if, + STATE(371), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20707] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(625), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(483), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20743] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(576), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(510), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20779] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(607), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(471), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20815] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(607), 1, + sym_template_directive_start, + STATE(360), 1, + sym_template_if_intro, + STATE(376), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(471), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(388), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20851] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, @@ -29029,94 +29188,95 @@ static const uint16_t ts_small_parse_table[] = { sym_template_directive_start, ACTIONS(647), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(362), 4, + STATE(371), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20656] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(615), 1, + [20887] = 11, + ACTIONS(582), 1, sym_template_directive_start, - STATE(352), 1, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(649), 1, + sym_quoted_template_end, + STATE(357), 1, sym_template_if_intro, - STATE(373), 1, + STATE(397), 1, sym_template_for_start, - STATE(466), 1, + STATE(423), 1, aux_sym_template_literal_repeat1, - STATE(478), 1, - sym_template_if_end, + STATE(455), 1, + sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(368), 4, + STATE(398), 3, aux_sym__template, - sym_template_literal, sym_template_interpolation, sym_template_directive, - [20692] = 10, + [20925] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(627), 1, + ACTIONS(629), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(450), 1, - sym_template_if_end, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(376), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20728] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(613), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(460), 1, + STATE(485), 1, sym_template_for_end, - STATE(466), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(377), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20961] = 10, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(651), 1, + sym_quoted_template_end, + STATE(357), 1, + sym_template_if_intro, + STATE(397), 1, + sym_template_for_start, + STATE(423), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(452), 2, sym_template_for, sym_template_if, STATE(366), 4, @@ -29124,85 +29284,33 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20764] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(649), 1, - sym_heredoc_identifier, - STATE(351), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(430), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(464), 2, - sym_template_for, - sym_template_if, - STATE(362), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20800] = 10, + [20997] = 10, ACTIONS(558), 1, sym__template_literal_chunk, ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(637), 1, + ACTIONS(611), 1, sym_template_directive_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(542), 1, - sym_template_if_end, + STATE(475), 1, + sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(370), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20836] = 10, - ACTIONS(578), 1, - sym__template_literal_chunk, - ACTIONS(580), 1, - sym_template_interpolation_start, - ACTIONS(582), 1, - sym_template_directive_start, - ACTIONS(651), 1, - sym_heredoc_identifier, - STATE(351), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(430), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(464), 2, - sym_template_for, - sym_template_if, - STATE(362), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20872] = 10, + [21033] = 10, ACTIONS(578), 1, sym__template_literal_chunk, ACTIONS(580), 1, @@ -29211,80 +29319,54 @@ static const uint16_t ts_small_parse_table[] = { sym_template_directive_start, ACTIONS(653), 1, sym_heredoc_identifier, - STATE(351), 1, + STATE(356), 1, sym_template_if_intro, - STATE(393), 1, + STATE(399), 1, sym_template_for_start, - STATE(430), 1, + STATE(425), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(464), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(396), 4, + STATE(383), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20908] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(627), 1, - sym_template_directive_start, - STATE(352), 1, - sym_template_if_intro, - STATE(373), 1, - sym_template_for_start, - STATE(455), 1, - sym_template_if_end, - STATE(466), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(507), 2, - sym_template_for, - sym_template_if, - STATE(387), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20944] = 9, - ACTIONS(598), 1, + [21069] = 9, + ACTIONS(602), 1, sym_template_directive_start, ACTIONS(655), 1, sym__template_literal_chunk, ACTIONS(658), 1, sym_template_interpolation_start, - STATE(352), 1, + STATE(360), 1, sym_template_if_intro, - STATE(373), 1, + STATE(376), 1, sym_template_for_start, - STATE(466), 1, + STATE(445), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(507), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(399), 4, + STATE(401), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20977] = 3, - ACTIONS(182), 1, + [21102] = 3, + ACTIONS(540), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(180), 10, + ACTIONS(538), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29295,13 +29377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [20997] = 3, - ACTIONS(546), 1, + [21122] = 3, + ACTIONS(184), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(544), 10, + ACTIONS(182), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29312,43 +29394,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [21017] = 7, - ACTIONS(7), 1, - sym_identifier, + [21142] = 6, ACTIONS(9), 1, - sym__shim, + sym_identifier, ACTIONS(661), 1, anon_sym_RBRACE, - STATE(522), 1, + STATE(494), 1, sym_block_end, - STATE(623), 1, + STATE(590), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(408), 3, + STATE(414), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21042] = 7, - ACTIONS(7), 1, - sym_identifier, + [21164] = 6, ACTIONS(9), 1, - sym__shim, + sym_identifier, ACTIONS(661), 1, anon_sym_RBRACE, - STATE(513), 1, + STATE(502), 1, sym_block_end, - STATE(577), 1, + STATE(627), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(408), 3, + STATE(414), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21067] = 7, + [21186] = 7, ACTIONS(663), 1, anon_sym_EQ, ACTIONS(665), 1, @@ -29357,1015 +29435,1065 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(669), 1, sym_quoted_template_start, - STATE(403), 1, + STATE(405), 1, sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(414), 2, + STATE(413), 2, sym_string_lit, aux_sym_block_repeat1, - [21091] = 5, + [21210] = 7, + ACTIONS(671), 1, + anon_sym_RPAREN, ACTIONS(673), 1, anon_sym_COMMA, - STATE(42), 1, + ACTIONS(675), 1, + sym_ellipsis, + ACTIONS(677), 1, + anon_sym_QMARK, + STATE(30), 1, sym__comma, - STATE(405), 1, + STATE(418), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(671), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + [21233] = 7, + ACTIONS(39), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(681), 1, sym_ellipsis, - [21110] = 4, - ACTIONS(678), 1, - sym_identifier, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(278), 1, + sym_object_end, + STATE(607), 1, + sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(676), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(406), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21127] = 7, + [21256] = 7, ACTIONS(45), 1, anon_sym_RBRACE, - ACTIONS(681), 1, + ACTIONS(679), 1, anon_sym_if, ACTIONS(683), 1, - sym_ellipsis, + anon_sym_QMARK, ACTIONS(685), 1, - anon_sym_QMARK, - STATE(211), 1, - sym_object_end, - STATE(627), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21150] = 4, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(687), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(406), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21167] = 4, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(689), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(406), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21184] = 7, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - ACTIONS(691), 1, sym_ellipsis, - STATE(248), 1, - sym_object_end, - STATE(579), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21207] = 7, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - ACTIONS(693), 1, - sym_ellipsis, - STATE(317), 1, - sym_object_end, - STATE(614), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21230] = 7, - ACTIONS(695), 1, - anon_sym_RPAREN, - ACTIONS(697), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - sym_ellipsis, - ACTIONS(701), 1, - anon_sym_QMARK, - STATE(36), 1, - sym__comma, - STATE(427), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21253] = 7, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - ACTIONS(703), 1, - sym_ellipsis, - STATE(282), 1, - sym_object_end, - STATE(606), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21276] = 6, - ACTIONS(665), 1, - anon_sym_LBRACE, - ACTIONS(669), 1, - sym_quoted_template_start, - ACTIONS(705), 1, - sym_identifier, - STATE(402), 1, - sym_block_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(423), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21297] = 7, - ACTIONS(39), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - ACTIONS(707), 1, - sym_ellipsis, - STATE(165), 1, - sym_object_end, - STATE(555), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21320] = 4, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(687), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(409), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21337] = 6, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(713), 1, - sym_strip_marker, - ACTIONS(715), 1, - anon_sym_else, - ACTIONS(717), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21357] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(671), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_ellipsis, - [21371] = 6, - ACTIONS(47), 1, - anon_sym_RBRACK, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - STATE(199), 1, - sym_tuple_end, - STATE(580), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21391] = 6, - ACTIONS(102), 1, - anon_sym_RBRACK, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - STATE(302), 1, - sym_tuple_end, - STATE(587), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21411] = 6, - ACTIONS(104), 1, - anon_sym_RBRACK, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - STATE(247), 1, - sym_tuple_end, - STATE(565), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21431] = 4, - ACTIONS(719), 1, - sym__template_literal_chunk, - STATE(422), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(722), 3, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21447] = 5, - ACTIONS(724), 1, - anon_sym_LBRACE, - ACTIONS(726), 1, - sym_identifier, - ACTIONS(729), 1, - sym_quoted_template_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(423), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21465] = 6, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(715), 1, - anon_sym_else, - ACTIONS(732), 1, - sym_strip_marker, - ACTIONS(734), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21485] = 4, - ACTIONS(736), 1, - sym__template_literal_chunk, - STATE(425), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(722), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21501] = 6, - ACTIONS(100), 1, - anon_sym_RBRACK, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - STATE(323), 1, - sym_tuple_end, - STATE(631), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21521] = 6, - ACTIONS(194), 1, - anon_sym_RPAREN, - ACTIONS(739), 1, - anon_sym_COMMA, - ACTIONS(741), 1, - sym_ellipsis, - STATE(31), 1, - sym__comma, - STATE(405), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21541] = 6, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(743), 1, - anon_sym_COMMA, - ACTIONS(745), 1, - anon_sym_RBRACK, - STATE(38), 1, - sym__comma, - STATE(471), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21561] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(180), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [21573] = 4, - ACTIONS(747), 1, - sym__template_literal_chunk, - STATE(422), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 3, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21589] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [21601] = 4, - ACTIONS(751), 1, - sym__template_literal_chunk, - STATE(425), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21617] = 6, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(715), 1, - anon_sym_else, - ACTIONS(753), 1, - sym_strip_marker, - ACTIONS(755), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21637] = 6, - ACTIONS(98), 1, - anon_sym_RBRACK, - ACTIONS(681), 1, - anon_sym_if, - ACTIONS(685), 1, - anon_sym_QMARK, - STATE(157), 1, - sym_tuple_end, - STATE(597), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21657] = 4, - ACTIONS(757), 1, - sym__template_literal_chunk, - STATE(435), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(722), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [21672] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(760), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21683] = 5, - ACTIONS(762), 1, - sym_quoted_template_end, - ACTIONS(764), 1, - sym__template_literal_chunk, - STATE(505), 1, - aux_sym_template_literal_repeat1, - STATE(672), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21700] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(766), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [21713] = 5, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(772), 1, - anon_sym_else, - ACTIONS(774), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21730] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(776), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21741] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(778), 1, - sym_strip_marker, - ACTIONS(780), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21758] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(782), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21769] = 5, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(772), 1, - anon_sym_else, - ACTIONS(784), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21786] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(786), 1, - sym_strip_marker, - ACTIONS(788), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21803] = 5, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - STATE(265), 1, - sym_object_end, - STATE(573), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21820] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(790), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21831] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(792), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21842] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(760), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21853] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(794), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21864] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(796), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21875] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(798), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21886] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(800), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21897] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(802), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21908] = 3, - ACTIONS(804), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(806), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21921] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(808), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21932] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(810), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21943] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(812), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21954] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(814), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21965] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(816), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21976] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(818), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21987] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(820), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21998] = 3, - ACTIONS(822), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(806), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22011] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(820), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22022] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(814), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [22033] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(824), 1, - sym_strip_marker, - ACTIONS(826), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22050] = 4, - ACTIONS(828), 1, - sym__template_literal_chunk, - STATE(435), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [22065] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(818), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22076] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(816), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22087] = 3, - ACTIONS(830), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(806), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22100] = 5, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - STATE(315), 1, - sym_object_end, - STATE(605), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22117] = 5, - ACTIONS(196), 1, - anon_sym_RBRACK, - ACTIONS(832), 1, - anon_sym_COMMA, - STATE(29), 1, - sym__comma, - STATE(405), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22134] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(734), 1, - anon_sym_endif, - ACTIONS(834), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22151] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(812), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22162] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(810), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22173] = 5, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - STATE(320), 1, - sym_object_end, - STATE(626), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22190] = 5, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(772), 1, - anon_sym_else, - ACTIONS(836), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22207] = 3, - ACTIONS(838), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(806), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22220] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(808), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22231] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(717), 1, - anon_sym_endif, - ACTIONS(840), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22248] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(802), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22259] = 5, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(755), 1, - anon_sym_endif, - ACTIONS(842), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22276] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(794), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22287] = 5, - ACTIONS(39), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - STATE(166), 1, - sym_object_end, - STATE(588), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22304] = 5, - ACTIONS(45), 1, - anon_sym_RBRACE, - ACTIONS(681), 1, - anon_sym_if, - STATE(194), 1, + STATE(318), 1, sym_object_end, STATE(584), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22321] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(790), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22332] = 3, - ACTIONS(844), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(806), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22345] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(776), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22356] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(792), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22367] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(782), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22378] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(798), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22389] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(800), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22400] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(796), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22411] = 4, - ACTIONS(846), 1, + [21279] = 7, + ACTIONS(41), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, anon_sym_QMARK, - ACTIONS(848), 1, - sym_strip_marker, - ACTIONS(850), 1, - sym_template_directive_end, + ACTIONS(687), 1, + sym_ellipsis, + STATE(212), 1, + sym_object_end, + STATE(562), 1, + sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22425] = 4, - ACTIONS(852), 1, + [21302] = 5, + ACTIONS(691), 1, + anon_sym_COMMA, + STATE(70), 1, + sym__comma, + STATE(411), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(689), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + sym_ellipsis, + [21321] = 4, + ACTIONS(696), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(694), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + STATE(412), 3, + sym_attribute, + sym_block, + aux_sym_body_repeat1, + [21338] = 6, + ACTIONS(665), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym_quoted_template_start, + ACTIONS(699), 1, + sym_identifier, + STATE(404), 1, + sym_block_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(417), 2, + sym_string_lit, + aux_sym_block_repeat1, + [21359] = 4, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(701), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + STATE(412), 3, + sym_attribute, + sym_block, + aux_sym_body_repeat1, + [21376] = 7, + ACTIONS(13), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(703), 1, + sym_ellipsis, + STATE(157), 1, + sym_object_end, + STATE(588), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21399] = 7, + ACTIONS(43), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + ACTIONS(705), 1, + sym_ellipsis, + STATE(321), 1, + sym_object_end, + STATE(579), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21422] = 5, + ACTIONS(707), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_identifier, + ACTIONS(712), 1, + sym_quoted_template_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(417), 2, + sym_string_lit, + aux_sym_block_repeat1, + [21440] = 6, + ACTIONS(162), 1, + anon_sym_RPAREN, + ACTIONS(715), 1, + anon_sym_COMMA, + ACTIONS(717), 1, + sym_ellipsis, + STATE(31), 1, + sym__comma, + STATE(411), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21460] = 6, + ACTIONS(94), 1, + anon_sym_RBRACK, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(282), 1, + sym_tuple_end, + STATE(586), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21480] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(689), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_ellipsis, + [21494] = 6, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(723), 1, + sym_strip_marker, + ACTIONS(725), 1, + anon_sym_else, + ACTIONS(727), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21514] = 6, + ACTIONS(92), 1, + anon_sym_RBRACK, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(275), 1, + sym_tuple_end, + STATE(598), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21534] = 4, + ACTIONS(731), 1, + sym__template_literal_chunk, + STATE(429), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(729), 3, + sym_quoted_template_end, + sym_template_interpolation_start, + sym_template_directive_start, + [21550] = 6, + ACTIONS(102), 1, + anon_sym_RBRACK, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(303), 1, + sym_tuple_end, + STATE(609), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21570] = 4, + ACTIONS(733), 1, + sym__template_literal_chunk, + STATE(434), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(729), 3, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21586] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(182), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [21598] = 6, + ACTIONS(104), 1, + anon_sym_RBRACK, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(166), 1, + sym_tuple_end, + STATE(619), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21618] = 6, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(725), 1, + anon_sym_else, + ACTIONS(735), 1, + sym_strip_marker, + ACTIONS(737), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21638] = 4, + ACTIONS(741), 1, + sym__template_literal_chunk, + STATE(429), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(739), 3, + sym_quoted_template_end, + sym_template_interpolation_start, + sym_template_directive_start, + [21654] = 6, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(725), 1, + anon_sym_else, + ACTIONS(744), 1, + sym_strip_marker, + ACTIONS(746), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21674] = 6, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(748), 1, + anon_sym_COMMA, + ACTIONS(750), 1, + anon_sym_RBRACK, + STATE(39), 1, + sym__comma, + STATE(480), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21694] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(538), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [21706] = 6, + ACTIONS(100), 1, + anon_sym_RBRACK, + ACTIONS(679), 1, + anon_sym_if, + ACTIONS(683), 1, + anon_sym_QMARK, + STATE(208), 1, + sym_tuple_end, + STATE(604), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21726] = 4, + ACTIONS(752), 1, + sym__template_literal_chunk, + STATE(434), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(739), 3, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21742] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(727), 1, + anon_sym_endif, + ACTIONS(755), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21759] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(757), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21770] = 5, + ACTIONS(759), 1, + sym_quoted_template_end, + ACTIONS(761), 1, + sym__template_literal_chunk, + STATE(513), 1, + aux_sym_template_literal_repeat1, + STATE(640), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21787] = 5, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(767), 1, + anon_sym_else, + ACTIONS(769), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21804] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(771), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21815] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(773), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21826] = 3, + ACTIONS(775), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21839] = 5, + ACTIONS(41), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + STATE(203), 1, + sym_object_end, + STATE(610), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21856] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(779), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21867] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21878] = 4, + ACTIONS(783), 1, + sym__template_literal_chunk, + STATE(469), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(729), 2, + sym_template_interpolation_start, + sym_template_directive_start, + [21893] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21904] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21915] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(789), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21926] = 5, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(767), 1, + anon_sym_else, + ACTIONS(791), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21943] = 5, + ACTIONS(43), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + STATE(323), 1, + sym_object_end, + STATE(571), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21960] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(793), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21971] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21982] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(795), 1, + sym_strip_marker, + ACTIONS(797), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21999] = 5, + ACTIONS(45), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + STATE(322), 1, + sym_object_end, + STATE(573), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22016] = 3, + ACTIONS(799), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22029] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(801), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22040] = 5, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(767), 1, + anon_sym_else, + ACTIONS(803), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22057] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(805), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22068] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(789), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22079] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22090] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22101] = 5, + ACTIONS(13), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + STATE(155), 1, + sym_object_end, + STATE(587), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22118] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(779), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22129] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(809), 1, + sym_strip_marker, + ACTIONS(811), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22146] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22157] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(793), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22168] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(805), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22179] = 3, + ACTIONS(813), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22192] = 4, + ACTIONS(815), 1, + sym__template_literal_chunk, + STATE(469), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(739), 2, + sym_template_interpolation_start, + sym_template_directive_start, + [22207] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22218] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(818), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22229] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(820), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22240] = 5, + ACTIONS(39), 1, + anon_sym_RBRACE, + ACTIONS(679), 1, + anon_sym_if, + STATE(279), 1, + sym_object_end, + STATE(615), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22257] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(773), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22268] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(822), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22279] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22290] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22301] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22312] = 3, + ACTIONS(828), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22325] = 5, + ACTIONS(198), 1, + anon_sym_RBRACK, + ACTIONS(830), 1, + anon_sym_COMMA, + STATE(41), 1, + sym__comma, + STATE(411), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22342] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(832), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22355] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(834), 1, + sym_strip_marker, + ACTIONS(836), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22372] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(818), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22383] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(820), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22394] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(822), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22405] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(737), 1, + anon_sym_endif, + ACTIONS(838), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22422] = 3, + ACTIONS(840), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22435] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22446] = 5, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(746), 1, + anon_sym_endif, + ACTIONS(842), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22463] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(757), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22474] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(771), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22485] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(801), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [22496] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(757), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22506] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(844), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22516] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(791), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22530] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(846), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22544] = 4, + ACTIONS(140), 1, + sym_strip_marker, + ACTIONS(142), 1, + sym_template_interpolation_end, + ACTIONS(848), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22558] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(771), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22568] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(801), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22578] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(824), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22588] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(850), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22598] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(852), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22608] = 4, + ACTIONS(848), 1, anon_sym_QMARK, ACTIONS(854), 1, sym_strip_marker, @@ -30374,79 +30502,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22439] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(800), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22449] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(802), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22459] = 2, + [22622] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, ACTIONS(858), 3, - sym__shim, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22632] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(773), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22642] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(860), 3, + ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [22469] = 2, + [22652] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(808), 3, + ACTIONS(862), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22479] = 2, + [22662] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(769), 1, + anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(810), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22489] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(812), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22499] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(436), 3, - sym_quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [22509] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(816), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22519] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(818), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22529] = 2, + [22676] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30454,41 +30552,23 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22539] = 4, - ACTIONS(749), 1, - sym_quoted_template_end, - ACTIONS(860), 1, - sym__template_literal_chunk, - STATE(516), 1, - aux_sym_template_literal_repeat1, + [22686] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22553] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(862), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22563] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(814), 3, + ACTIONS(818), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22573] = 2, + [22696] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(180), 3, + ACTIONS(538), 3, sym_template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - [22583] = 2, + [22706] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30496,26 +30576,28 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22593] = 4, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, + [22716] = 4, + ACTIONS(729), 1, + sym_quoted_template_end, ACTIONS(866), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22607] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(868), 3, sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22617] = 4, - ACTIONS(846), 1, + STATE(525), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22730] = 4, + ACTIONS(144), 1, + sym_strip_marker, + ACTIONS(146), 1, + sym_template_interpolation_end, + ACTIONS(848), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22744] = 4, + ACTIONS(868), 1, anon_sym_QMARK, ACTIONS(870), 1, sym_strip_marker, @@ -30524,15 +30606,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22631] = 2, + [22758] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(874), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22641] = 2, + ACTIONS(538), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + [22768] = 4, + ACTIONS(719), 1, + anon_sym_for, + ACTIONS(721), 1, + anon_sym_if, + ACTIONS(874), 1, + sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22782] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(805), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22792] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(793), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22802] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30540,158 +30648,161 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22651] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(380), 3, - sym_quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [22661] = 4, - ACTIONS(722), 1, - sym_quoted_template_end, - ACTIONS(878), 1, - sym__template_literal_chunk, - STATE(516), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22675] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(881), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22685] = 4, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(883), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22699] = 4, - ACTIONS(846), 1, - anon_sym_QMARK, - ACTIONS(885), 1, - sym_strip_marker, - ACTIONS(887), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22713] = 4, - ACTIONS(709), 1, - anon_sym_for, - ACTIONS(711), 1, - anon_sym_if, - ACTIONS(889), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22727] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(891), 2, - anon_sym_EQ, - anon_sym_COLON, - [22739] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(893), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22749] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(895), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22759] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(897), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22769] = 4, - ACTIONS(846), 1, - anon_sym_QMARK, - ACTIONS(899), 1, - sym_strip_marker, - ACTIONS(901), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22783] = 4, + [22812] = 4, ACTIONS(130), 1, sym_strip_marker, ACTIONS(134), 1, sym_template_interpolation_end, - ACTIONS(852), 1, + ACTIONS(848), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22797] = 2, + [22826] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(544), 3, - sym_template_directive_end, + ACTIONS(396), 3, + sym_quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [22836] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22846] = 4, + ACTIONS(868), 1, anon_sym_QMARK, + ACTIONS(878), 1, sym_strip_marker, - [22807] = 2, + ACTIONS(880), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(903), 3, + [22860] = 4, + ACTIONS(739), 1, + sym_quoted_template_end, + ACTIONS(882), 1, sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22817] = 2, + STATE(525), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(776), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22827] = 2, + [22874] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(782), 3, + ACTIONS(779), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22837] = 4, - ACTIONS(768), 1, + [22884] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(885), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [22896] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(826), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22906] = 4, + ACTIONS(763), 1, anon_sym_for, - ACTIONS(770), 1, + ACTIONS(765), 1, anon_sym_if, - ACTIONS(774), 1, + ACTIONS(887), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22920] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(336), 3, + sym_quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [22930] = 4, + ACTIONS(868), 1, + anon_sym_QMARK, + ACTIONS(889), 1, + sym_strip_marker, + ACTIONS(891), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22944] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(893), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22954] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(895), 2, + anon_sym_EQ, + anon_sym_COLON, + [22966] = 4, + ACTIONS(848), 1, + anon_sym_QMARK, + ACTIONS(897), 1, + sym_strip_marker, + ACTIONS(899), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22980] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22990] = 4, + ACTIONS(868), 1, + anon_sym_QMARK, + ACTIONS(901), 1, + sym_strip_marker, + ACTIONS(903), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23004] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(803), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22851] = 2, + [23018] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30699,26 +30810,58 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22861] = 2, + [23028] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(907), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22871] = 4, - ACTIONS(852), 1, - anon_sym_QMARK, - ACTIONS(909), 1, - sym_strip_marker, - ACTIONS(911), 1, - sym_template_interpolation_end, + ACTIONS(822), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23038] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22885] = 4, - ACTIONS(852), 1, + ACTIONS(789), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23048] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(907), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23062] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23072] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(909), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23082] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(911), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23092] = 4, + ACTIONS(848), 1, anon_sym_QMARK, ACTIONS(913), 1, sym_strip_marker, @@ -30727,270 +30870,187 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22899] = 4, - ACTIONS(142), 1, + [23106] = 4, + ACTIONS(868), 1, + anon_sym_QMARK, + ACTIONS(917), 1, sym_strip_marker, - ACTIONS(144), 1, - sym_template_interpolation_end, - ACTIONS(852), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22913] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(917), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22923] = 4, - ACTIONS(846), 1, - anon_sym_QMARK, ACTIONS(919), 1, - sym_strip_marker, - ACTIONS(921), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22937] = 4, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(923), 1, - anon_sym_endfor, + [23120] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22951] = 3, - ACTIONS(701), 1, + ACTIONS(785), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23130] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(182), 3, + sym_template_interpolation_end, anon_sym_QMARK, + sym_strip_marker, + [23140] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(925), 2, + ACTIONS(182), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + [23150] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(921), 3, + ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_RBRACK, - [22963] = 2, + sym_identifier, + [23160] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(798), 3, + ACTIONS(923), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22973] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(790), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22983] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(792), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22993] = 4, - ACTIONS(138), 1, - sym_strip_marker, - ACTIONS(140), 1, - sym_template_interpolation_end, - ACTIONS(852), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23007] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 3, - sym_template_interpolation_end, + [23170] = 4, + ACTIONS(868), 1, anon_sym_QMARK, + ACTIONS(925), 1, sym_strip_marker, - [23017] = 4, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(836), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23031] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(794), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23041] = 4, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(784), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23055] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(927), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23065] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(180), 3, + ACTIONS(927), 1, sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [23075] = 4, - ACTIONS(846), 1, - anon_sym_QMARK, - ACTIONS(929), 1, - sym_strip_marker, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23184] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(929), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23194] = 3, ACTIONS(931), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23089] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(760), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23099] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(933), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23109] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(796), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23119] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(166), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23130] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(935), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23141] = 3, - ACTIONS(100), 1, - anon_sym_RBRACK, - STATE(340), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23152] = 3, - ACTIONS(937), 1, - anon_sym_RPAREN, - STATE(298), 1, + STATE(209), 1, sym__function_call_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23163] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(295), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23174] = 3, - ACTIONS(939), 1, + [23205] = 3, + ACTIONS(933), 1, sym_strip_marker, - ACTIONS(941), 1, + ACTIONS(935), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23185] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(943), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23196] = 3, - ACTIONS(945), 1, + [23216] = 3, + ACTIONS(937), 1, sym_identifier, - ACTIONS(947), 1, + ACTIONS(939), 1, aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23207] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(949), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23218] = 3, - ACTIONS(951), 1, + [23227] = 3, + ACTIONS(941), 1, sym_strip_marker, - ACTIONS(953), 1, + ACTIONS(943), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23229] = 3, - ACTIONS(104), 1, + [23238] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(945), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23249] = 3, + ACTIONS(947), 1, + sym_strip_marker, + ACTIONS(949), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23260] = 3, + ACTIONS(92), 1, anon_sym_RBRACK, - STATE(262), 1, + STATE(271), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23240] = 3, - ACTIONS(955), 1, - anon_sym_COMMA, - ACTIONS(957), 1, - anon_sym_in, + [23271] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(951), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23251] = 3, + [23282] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(203), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23293] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(953), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23304] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(955), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23315] = 3, + ACTIONS(45), 1, + anon_sym_RBRACE, + STATE(345), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23326] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(957), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23337] = 3, + ACTIONS(100), 1, + anon_sym_RBRACK, + STATE(200), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23348] = 3, ACTIONS(959), 1, sym_strip_marker, ACTIONS(961), 1, @@ -30998,223 +31058,78 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23262] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, + [23359] = 3, ACTIONS(963), 1, + sym_strip_marker, + ACTIONS(965), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23370] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(967), 2, + anon_sym_RBRACE, + sym_identifier, + [23379] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(326), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23390] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(969), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23273] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(965), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23284] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(967), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23295] = 3, - ACTIONS(969), 1, - sym_strip_marker, - ACTIONS(971), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23306] = 3, - ACTIONS(973), 1, - sym_strip_marker, - ACTIONS(975), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23317] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(266), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23328] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(342), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23339] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(977), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23350] = 3, - ACTIONS(979), 1, - sym_strip_marker, - ACTIONS(981), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23361] = 3, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(522), 1, - sym_block_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23372] = 3, - ACTIONS(983), 1, - sym_strip_marker, - ACTIONS(985), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23383] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(265), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23394] = 3, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(193), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23405] = 3, - ACTIONS(98), 1, - anon_sym_RBRACK, - STATE(163), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23416] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(147), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23427] = 3, - ACTIONS(987), 1, - anon_sym_RPAREN, - STATE(281), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23438] = 3, + [23401] = 3, ACTIONS(45), 1, anon_sym_RBRACE, - STATE(188), 1, + STATE(324), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23449] = 3, - ACTIONS(989), 1, + [23412] = 3, + ACTIONS(971), 1, sym_strip_marker, - ACTIONS(991), 1, + ACTIONS(973), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23460] = 3, - ACTIONS(993), 1, + [23423] = 3, + ACTIONS(975), 1, sym_strip_marker, - ACTIONS(995), 1, + ACTIONS(977), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23471] = 3, - ACTIONS(102), 1, - anon_sym_RBRACK, - STATE(309), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23482] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(172), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23493] = 3, - ACTIONS(701), 1, + [23434] = 3, + ACTIONS(677), 1, anon_sym_QMARK, - ACTIONS(997), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23504] = 3, - ACTIONS(999), 1, - sym_identifier, - ACTIONS(1001), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23515] = 3, - ACTIONS(1003), 1, - sym_strip_marker, - ACTIONS(1005), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23526] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1007), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23537] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1009), 1, + ACTIONS(979), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23548] = 3, - ACTIONS(1011), 1, - anon_sym_RPAREN, - STATE(152), 1, - sym__function_call_end, + [23445] = 3, + ACTIONS(981), 1, + sym_strip_marker, + ACTIONS(983), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23559] = 3, + [23456] = 3, ACTIONS(102), 1, anon_sym_RBRACK, STATE(293), 1, @@ -31222,570 +31137,706 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23570] = 3, - ACTIONS(1013), 1, - anon_sym_COMMA, - ACTIONS(1015), 1, - anon_sym_in, + [23467] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(323), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23581] = 3, - ACTIONS(98), 1, - anon_sym_RBRACK, - STATE(160), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23592] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1017), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23603] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1019), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23614] = 3, - ACTIONS(1021), 1, + [23478] = 3, + ACTIONS(985), 1, anon_sym_RPAREN, - STATE(253), 1, + STATE(273), 1, sym__function_call_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23625] = 3, - ACTIONS(43), 1, + [23489] = 3, + ACTIONS(39), 1, anon_sym_RBRACE, - STATE(263), 1, + STATE(265), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23636] = 3, - ACTIONS(1023), 1, - sym_identifier, - ACTIONS(1025), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23647] = 3, - ACTIONS(1027), 1, - sym_strip_marker, - ACTIONS(1029), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23658] = 3, - ACTIONS(1031), 1, - sym_strip_marker, - ACTIONS(1033), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23669] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(314), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23680] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(320), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23691] = 3, - ACTIONS(701), 1, + [23500] = 3, + ACTIONS(677), 1, anon_sym_QMARK, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23702] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1037), 1, + ACTIONS(987), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23713] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1039), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23724] = 3, - ACTIONS(1041), 1, - sym_strip_marker, - ACTIONS(1043), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23735] = 3, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(189), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23746] = 3, - ACTIONS(1045), 1, - sym_strip_marker, - ACTIONS(1047), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23757] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1049), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23768] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(315), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23779] = 3, - ACTIONS(1051), 1, - sym_identifier, - ACTIONS(1053), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23790] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1055), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23801] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(195), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23812] = 3, - ACTIONS(1057), 1, + [23511] = 3, + ACTIONS(989), 1, anon_sym_COMMA, - ACTIONS(1059), 1, + ACTIONS(991), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23823] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1061), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23834] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1063), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23845] = 3, - ACTIONS(1065), 1, - anon_sym_RPAREN, - STATE(205), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23856] = 3, - ACTIONS(104), 1, - anon_sym_RBRACK, - STATE(268), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23867] = 3, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(533), 1, - sym_block_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23878] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1067), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23889] = 3, - ACTIONS(1069), 1, - sym_identifier, - ACTIONS(1071), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23900] = 3, - ACTIONS(41), 1, + [23522] = 3, + ACTIONS(45), 1, anon_sym_RBRACE, STATE(322), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23911] = 3, - ACTIONS(45), 1, + [23533] = 3, + ACTIONS(41), 1, anon_sym_RBRACE, - STATE(194), 1, + STATE(205), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23922] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1073), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23933] = 3, - ACTIONS(701), 1, - anon_sym_QMARK, - ACTIONS(1075), 1, + [23544] = 3, + ACTIONS(94), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23944] = 3, - ACTIONS(768), 1, - anon_sym_for, - ACTIONS(770), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23955] = 3, - ACTIONS(100), 1, - anon_sym_RBRACK, - STATE(319), 1, + STATE(320), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23966] = 2, - ACTIONS(1077), 1, + [23555] = 3, + ACTIONS(13), 1, + anon_sym_RBRACE, + STATE(150), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23566] = 3, + ACTIONS(13), 1, + anon_sym_RBRACE, + STATE(155), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23577] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(993), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23588] = 3, + ACTIONS(661), 1, + anon_sym_RBRACE, + STATE(550), 1, + sym_block_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23599] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23610] = 3, + ACTIONS(997), 1, sym_identifier, + ACTIONS(999), 1, + aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23974] = 2, - ACTIONS(1079), 1, + [23621] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1001), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23632] = 3, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23643] = 3, + ACTIONS(104), 1, + anon_sym_RBRACK, + STATE(173), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23654] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1003), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23665] = 3, + ACTIONS(1005), 1, + anon_sym_RPAREN, + STATE(314), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23676] = 3, + ACTIONS(92), 1, + anon_sym_RBRACK, + STATE(277), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23687] = 3, + ACTIONS(1007), 1, + anon_sym_RPAREN, + STATE(171), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23698] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1009), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23709] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23720] = 3, + ACTIONS(94), 1, + anon_sym_RBRACK, + STATE(312), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23731] = 3, + ACTIONS(1013), 1, + anon_sym_RPAREN, + STATE(299), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23742] = 3, + ACTIONS(100), 1, + anon_sym_RBRACK, + STATE(195), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23753] = 3, + ACTIONS(1015), 1, + sym_strip_marker, + ACTIONS(1017), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23982] = 2, - ACTIONS(1081), 1, + [23764] = 3, + ACTIONS(1019), 1, + sym_strip_marker, + ACTIONS(1021), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23990] = 2, - ACTIONS(1083), 1, - anon_sym_in, + [23775] = 3, + ACTIONS(39), 1, + anon_sym_RBRACE, + STATE(279), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23998] = 2, - ACTIONS(1085), 1, + [23786] = 3, + ACTIONS(1023), 1, + sym_strip_marker, + ACTIONS(1025), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24006] = 2, - ACTIONS(1087), 1, + [23797] = 3, + ACTIONS(102), 1, + anon_sym_RBRACK, + STATE(311), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23808] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(185), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23819] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1027), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23830] = 3, + ACTIONS(1029), 1, + sym_strip_marker, + ACTIONS(1031), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24014] = 2, - ACTIONS(1089), 1, + [23841] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1033), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23852] = 3, + ACTIONS(1035), 1, + sym_strip_marker, + ACTIONS(1037), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24022] = 2, - ACTIONS(1091), 1, - sym_template_directive_end, + [23863] = 3, + ACTIONS(39), 1, + anon_sym_RBRACE, + STATE(280), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24030] = 2, - ACTIONS(1047), 1, - sym_template_directive_end, + [23874] = 3, + ACTIONS(1039), 1, + sym_identifier, + ACTIONS(1041), 1, + aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24038] = 2, + [23885] = 3, ACTIONS(1043), 1, + sym_identifier, + ACTIONS(1045), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23896] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1047), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23907] = 3, + ACTIONS(104), 1, + anon_sym_RBRACK, + STATE(159), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23918] = 3, + ACTIONS(13), 1, + anon_sym_RBRACE, + STATE(167), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23929] = 3, + ACTIONS(1049), 1, + sym_strip_marker, + ACTIONS(1051), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24046] = 2, - ACTIONS(1093), 1, - sym_template_interpolation_end, + [23940] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(285), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24054] = 2, - ACTIONS(1095), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24062] = 2, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24070] = 2, - ACTIONS(1099), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24078] = 2, - ACTIONS(1101), 1, + [23951] = 3, + ACTIONS(1053), 1, + anon_sym_COMMA, + ACTIONS(1055), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24086] = 2, - ACTIONS(1103), 1, + [23962] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1057), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23973] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23984] = 3, + ACTIONS(1061), 1, + sym_identifier, + ACTIONS(1063), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23995] = 3, + ACTIONS(661), 1, + anon_sym_RBRACE, + STATE(494), 1, + sym_block_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24006] = 3, + ACTIONS(1065), 1, + anon_sym_COMMA, + ACTIONS(1067), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24017] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1069), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24028] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1071), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24039] = 3, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(1073), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24050] = 2, + ACTIONS(1075), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24058] = 2, + ACTIONS(1077), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24094] = 2, - ACTIONS(911), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24102] = 2, - ACTIONS(915), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24110] = 2, - ACTIONS(1105), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24118] = 2, - ACTIONS(1107), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24126] = 2, - ACTIONS(1109), 1, + [24066] = 2, + ACTIONS(1079), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24134] = 2, - ACTIONS(194), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24142] = 2, - ACTIONS(178), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24150] = 2, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24158] = 2, - ACTIONS(1113), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24166] = 2, - ACTIONS(887), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24174] = 2, - ACTIONS(1115), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24182] = 2, - ACTIONS(985), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24190] = 2, - ACTIONS(981), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24198] = 2, - ACTIONS(1117), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24206] = 2, + [24074] = 2, ACTIONS(872), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24214] = 2, - ACTIONS(1119), 1, + [24082] = 2, + ACTIONS(1081), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24222] = 2, - ACTIONS(1121), 1, + [24090] = 2, + ACTIONS(1083), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24230] = 2, - ACTIONS(1123), 1, + [24098] = 2, + ACTIONS(1085), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24106] = 2, + ACTIONS(1051), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24114] = 2, + ACTIONS(1087), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24122] = 2, + ACTIONS(1037), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24130] = 2, + ACTIONS(1031), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24138] = 2, + ACTIONS(1089), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24146] = 2, + ACTIONS(935), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24154] = 2, + ACTIONS(1025), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24162] = 2, + ACTIONS(1091), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24170] = 2, + ACTIONS(1093), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24178] = 2, + ACTIONS(1095), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24238] = 2, - ACTIONS(1125), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24246] = 2, - ACTIONS(1127), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24254] = 2, + [24186] = 2, ACTIONS(856), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24262] = 2, + [24194] = 2, + ACTIONS(164), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24202] = 2, + ACTIONS(1097), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24210] = 2, + ACTIONS(1099), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24218] = 2, + ACTIONS(1101), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24226] = 2, + ACTIONS(880), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24234] = 2, + ACTIONS(919), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24242] = 2, + ACTIONS(1103), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24250] = 2, + ACTIONS(1105), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24258] = 2, + ACTIONS(1107), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24266] = 2, + ACTIONS(899), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24274] = 2, + ACTIONS(1109), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24282] = 2, + ACTIONS(1111), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24290] = 2, + ACTIONS(1113), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24298] = 2, + ACTIONS(162), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24306] = 2, + ACTIONS(1115), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24314] = 2, + ACTIONS(1117), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24322] = 2, + ACTIONS(1119), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24330] = 2, + ACTIONS(983), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24338] = 2, + ACTIONS(977), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24346] = 2, + ACTIONS(1121), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24354] = 2, + ACTIONS(1123), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24362] = 2, + ACTIONS(1125), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24370] = 2, + ACTIONS(1127), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24378] = 2, + ACTIONS(915), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24386] = 2, ACTIONS(1129), 1, - sym_heredoc_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24270] = 2, + [24394] = 2, ACTIONS(1131), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24278] = 2, - ACTIONS(850), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24286] = 2, - ACTIONS(1133), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24294] = 2, - ACTIONS(953), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24302] = 2, - ACTIONS(961), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24310] = 2, - ACTIONS(941), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24318] = 2, - ACTIONS(901), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24326] = 2, - ACTIONS(1135), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym__whitespace, + [24402] = 2, + ACTIONS(1133), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24410] = 2, + ACTIONS(927), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, }; static const uint32_t ts_small_parse_table_map[] = { @@ -31795,676 +31846,676 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 321, [SMALL_STATE(6)] = 428, [SMALL_STATE(7)] = 535, - [SMALL_STATE(8)] = 639, - [SMALL_STATE(9)] = 741, + [SMALL_STATE(8)] = 637, + [SMALL_STATE(9)] = 739, [SMALL_STATE(10)] = 843, - [SMALL_STATE(11)] = 945, + [SMALL_STATE(11)] = 947, [SMALL_STATE(12)] = 1049, [SMALL_STATE(13)] = 1153, [SMALL_STATE(14)] = 1257, [SMALL_STATE(15)] = 1361, - [SMALL_STATE(16)] = 1459, - [SMALL_STATE(17)] = 1557, - [SMALL_STATE(18)] = 1655, - [SMALL_STATE(19)] = 1753, - [SMALL_STATE(20)] = 1851, - [SMALL_STATE(21)] = 1946, - [SMALL_STATE(22)] = 2041, - [SMALL_STATE(23)] = 2136, - [SMALL_STATE(24)] = 2231, - [SMALL_STATE(25)] = 2326, - [SMALL_STATE(26)] = 2421, - [SMALL_STATE(27)] = 2516, - [SMALL_STATE(28)] = 2611, - [SMALL_STATE(29)] = 2671, - [SMALL_STATE(30)] = 2763, - [SMALL_STATE(31)] = 2831, - [SMALL_STATE(32)] = 2923, - [SMALL_STATE(33)] = 3015, - [SMALL_STATE(34)] = 3073, - [SMALL_STATE(35)] = 3127, - [SMALL_STATE(36)] = 3205, - [SMALL_STATE(37)] = 3297, - [SMALL_STATE(38)] = 3361, - [SMALL_STATE(39)] = 3453, - [SMALL_STATE(40)] = 3519, - [SMALL_STATE(41)] = 3573, - [SMALL_STATE(42)] = 3662, - [SMALL_STATE(43)] = 3751, - [SMALL_STATE(44)] = 3840, - [SMALL_STATE(45)] = 3929, - [SMALL_STATE(46)] = 4018, - [SMALL_STATE(47)] = 4107, - [SMALL_STATE(48)] = 4196, - [SMALL_STATE(49)] = 4285, - [SMALL_STATE(50)] = 4374, - [SMALL_STATE(51)] = 4463, - [SMALL_STATE(52)] = 4552, - [SMALL_STATE(53)] = 4641, - [SMALL_STATE(54)] = 4730, - [SMALL_STATE(55)] = 4819, - [SMALL_STATE(56)] = 4908, - [SMALL_STATE(57)] = 4997, - [SMALL_STATE(58)] = 5086, - [SMALL_STATE(59)] = 5175, - [SMALL_STATE(60)] = 5264, - [SMALL_STATE(61)] = 5353, - [SMALL_STATE(62)] = 5442, - [SMALL_STATE(63)] = 5531, - [SMALL_STATE(64)] = 5620, - [SMALL_STATE(65)] = 5709, - [SMALL_STATE(66)] = 5798, - [SMALL_STATE(67)] = 5887, - [SMALL_STATE(68)] = 5976, - [SMALL_STATE(69)] = 6065, - [SMALL_STATE(70)] = 6154, - [SMALL_STATE(71)] = 6243, - [SMALL_STATE(72)] = 6332, - [SMALL_STATE(73)] = 6421, - [SMALL_STATE(74)] = 6510, - [SMALL_STATE(75)] = 6599, - [SMALL_STATE(76)] = 6688, - [SMALL_STATE(77)] = 6777, - [SMALL_STATE(78)] = 6866, - [SMALL_STATE(79)] = 6955, - [SMALL_STATE(80)] = 7044, - [SMALL_STATE(81)] = 7133, - [SMALL_STATE(82)] = 7222, - [SMALL_STATE(83)] = 7311, - [SMALL_STATE(84)] = 7400, - [SMALL_STATE(85)] = 7489, - [SMALL_STATE(86)] = 7578, - [SMALL_STATE(87)] = 7667, - [SMALL_STATE(88)] = 7756, - [SMALL_STATE(89)] = 7810, - [SMALL_STATE(90)] = 7864, - [SMALL_STATE(91)] = 7918, - [SMALL_STATE(92)] = 7972, - [SMALL_STATE(93)] = 8026, - [SMALL_STATE(94)] = 8109, - [SMALL_STATE(95)] = 8192, - [SMALL_STATE(96)] = 8275, - [SMALL_STATE(97)] = 8358, - [SMALL_STATE(98)] = 8441, - [SMALL_STATE(99)] = 8524, - [SMALL_STATE(100)] = 8607, - [SMALL_STATE(101)] = 8690, - [SMALL_STATE(102)] = 8773, - [SMALL_STATE(103)] = 8856, - [SMALL_STATE(104)] = 8939, - [SMALL_STATE(105)] = 9022, - [SMALL_STATE(106)] = 9105, - [SMALL_STATE(107)] = 9188, - [SMALL_STATE(108)] = 9271, - [SMALL_STATE(109)] = 9354, - [SMALL_STATE(110)] = 9437, - [SMALL_STATE(111)] = 9520, - [SMALL_STATE(112)] = 9603, - [SMALL_STATE(113)] = 9686, - [SMALL_STATE(114)] = 9769, - [SMALL_STATE(115)] = 9852, - [SMALL_STATE(116)] = 9935, - [SMALL_STATE(117)] = 10018, - [SMALL_STATE(118)] = 10101, - [SMALL_STATE(119)] = 10184, - [SMALL_STATE(120)] = 10267, - [SMALL_STATE(121)] = 10350, - [SMALL_STATE(122)] = 10433, - [SMALL_STATE(123)] = 10516, - [SMALL_STATE(124)] = 10599, - [SMALL_STATE(125)] = 10682, - [SMALL_STATE(126)] = 10765, - [SMALL_STATE(127)] = 10848, - [SMALL_STATE(128)] = 10931, - [SMALL_STATE(129)] = 11005, - [SMALL_STATE(130)] = 11055, - [SMALL_STATE(131)] = 11119, - [SMALL_STATE(132)] = 11181, - [SMALL_STATE(133)] = 11241, - [SMALL_STATE(134)] = 11297, - [SMALL_STATE(135)] = 11347, - [SMALL_STATE(136)] = 11401, - [SMALL_STATE(137)] = 11451, - [SMALL_STATE(138)] = 11501, - [SMALL_STATE(139)] = 11551, - [SMALL_STATE(140)] = 11601, - [SMALL_STATE(141)] = 11651, - [SMALL_STATE(142)] = 11697, - [SMALL_STATE(143)] = 11738, - [SMALL_STATE(144)] = 11779, - [SMALL_STATE(145)] = 11820, - [SMALL_STATE(146)] = 11861, - [SMALL_STATE(147)] = 11902, - [SMALL_STATE(148)] = 11943, - [SMALL_STATE(149)] = 11984, - [SMALL_STATE(150)] = 12025, - [SMALL_STATE(151)] = 12066, - [SMALL_STATE(152)] = 12107, - [SMALL_STATE(153)] = 12148, - [SMALL_STATE(154)] = 12189, - [SMALL_STATE(155)] = 12230, - [SMALL_STATE(156)] = 12271, - [SMALL_STATE(157)] = 12312, - [SMALL_STATE(158)] = 12353, - [SMALL_STATE(159)] = 12394, - [SMALL_STATE(160)] = 12435, - [SMALL_STATE(161)] = 12476, - [SMALL_STATE(162)] = 12517, - [SMALL_STATE(163)] = 12558, - [SMALL_STATE(164)] = 12599, - [SMALL_STATE(165)] = 12640, - [SMALL_STATE(166)] = 12681, - [SMALL_STATE(167)] = 12722, - [SMALL_STATE(168)] = 12763, - [SMALL_STATE(169)] = 12804, - [SMALL_STATE(170)] = 12845, - [SMALL_STATE(171)] = 12886, - [SMALL_STATE(172)] = 12927, - [SMALL_STATE(173)] = 12968, - [SMALL_STATE(174)] = 13009, - [SMALL_STATE(175)] = 13052, - [SMALL_STATE(176)] = 13108, - [SMALL_STATE(177)] = 13166, - [SMALL_STATE(178)] = 13220, - [SMALL_STATE(179)] = 13270, - [SMALL_STATE(180)] = 13314, - [SMALL_STATE(181)] = 13362, - [SMALL_STATE(182)] = 13406, - [SMALL_STATE(183)] = 13472, - [SMALL_STATE(184)] = 13509, - [SMALL_STATE(185)] = 13546, - [SMALL_STATE(186)] = 13583, - [SMALL_STATE(187)] = 13620, - [SMALL_STATE(188)] = 13657, - [SMALL_STATE(189)] = 13694, - [SMALL_STATE(190)] = 13731, - [SMALL_STATE(191)] = 13768, - [SMALL_STATE(192)] = 13805, - [SMALL_STATE(193)] = 13842, - [SMALL_STATE(194)] = 13879, - [SMALL_STATE(195)] = 13916, - [SMALL_STATE(196)] = 13953, - [SMALL_STATE(197)] = 13990, - [SMALL_STATE(198)] = 14027, - [SMALL_STATE(199)] = 14064, - [SMALL_STATE(200)] = 14101, - [SMALL_STATE(201)] = 14138, - [SMALL_STATE(202)] = 14175, - [SMALL_STATE(203)] = 14212, - [SMALL_STATE(204)] = 14249, - [SMALL_STATE(205)] = 14286, - [SMALL_STATE(206)] = 14323, - [SMALL_STATE(207)] = 14360, - [SMALL_STATE(208)] = 14397, - [SMALL_STATE(209)] = 14434, - [SMALL_STATE(210)] = 14471, - [SMALL_STATE(211)] = 14508, - [SMALL_STATE(212)] = 14545, - [SMALL_STATE(213)] = 14582, - [SMALL_STATE(214)] = 14619, - [SMALL_STATE(215)] = 14656, - [SMALL_STATE(216)] = 14720, - [SMALL_STATE(217)] = 14762, - [SMALL_STATE(218)] = 14806, - [SMALL_STATE(219)] = 14850, - [SMALL_STATE(220)] = 14894, - [SMALL_STATE(221)] = 14950, - [SMALL_STATE(222)] = 14994, - [SMALL_STATE(223)] = 15050, - [SMALL_STATE(224)] = 15102, - [SMALL_STATE(225)] = 15156, - [SMALL_STATE(226)] = 15208, - [SMALL_STATE(227)] = 15256, - [SMALL_STATE(228)] = 15298, - [SMALL_STATE(229)] = 15344, - [SMALL_STATE(230)] = 15386, - [SMALL_STATE(231)] = 15430, - [SMALL_STATE(232)] = 15472, - [SMALL_STATE(233)] = 15520, - [SMALL_STATE(234)] = 15584, - [SMALL_STATE(235)] = 15638, - [SMALL_STATE(236)] = 15684, - [SMALL_STATE(237)] = 15726, - [SMALL_STATE(238)] = 15768, - [SMALL_STATE(239)] = 15810, - [SMALL_STATE(240)] = 15852, - [SMALL_STATE(241)] = 15894, - [SMALL_STATE(242)] = 15936, - [SMALL_STATE(243)] = 15978, - [SMALL_STATE(244)] = 16020, - [SMALL_STATE(245)] = 16062, - [SMALL_STATE(246)] = 16104, - [SMALL_STATE(247)] = 16141, - [SMALL_STATE(248)] = 16172, - [SMALL_STATE(249)] = 16203, - [SMALL_STATE(250)] = 16234, - [SMALL_STATE(251)] = 16265, - [SMALL_STATE(252)] = 16296, - [SMALL_STATE(253)] = 16327, - [SMALL_STATE(254)] = 16358, - [SMALL_STATE(255)] = 16389, - [SMALL_STATE(256)] = 16420, - [SMALL_STATE(257)] = 16451, - [SMALL_STATE(258)] = 16482, - [SMALL_STATE(259)] = 16513, - [SMALL_STATE(260)] = 16548, - [SMALL_STATE(261)] = 16579, - [SMALL_STATE(262)] = 16610, - [SMALL_STATE(263)] = 16641, - [SMALL_STATE(264)] = 16672, - [SMALL_STATE(265)] = 16703, - [SMALL_STATE(266)] = 16734, - [SMALL_STATE(267)] = 16765, - [SMALL_STATE(268)] = 16800, - [SMALL_STATE(269)] = 16831, - [SMALL_STATE(270)] = 16862, - [SMALL_STATE(271)] = 16893, - [SMALL_STATE(272)] = 16924, - [SMALL_STATE(273)] = 16955, - [SMALL_STATE(274)] = 16986, - [SMALL_STATE(275)] = 17017, - [SMALL_STATE(276)] = 17048, - [SMALL_STATE(277)] = 17079, - [SMALL_STATE(278)] = 17110, - [SMALL_STATE(279)] = 17141, - [SMALL_STATE(280)] = 17172, - [SMALL_STATE(281)] = 17203, - [SMALL_STATE(282)] = 17232, - [SMALL_STATE(283)] = 17261, - [SMALL_STATE(284)] = 17290, - [SMALL_STATE(285)] = 17319, - [SMALL_STATE(286)] = 17348, - [SMALL_STATE(287)] = 17377, - [SMALL_STATE(288)] = 17406, - [SMALL_STATE(289)] = 17435, - [SMALL_STATE(290)] = 17464, - [SMALL_STATE(291)] = 17493, - [SMALL_STATE(292)] = 17522, - [SMALL_STATE(293)] = 17551, - [SMALL_STATE(294)] = 17580, - [SMALL_STATE(295)] = 17609, - [SMALL_STATE(296)] = 17638, - [SMALL_STATE(297)] = 17667, - [SMALL_STATE(298)] = 17696, - [SMALL_STATE(299)] = 17725, - [SMALL_STATE(300)] = 17754, - [SMALL_STATE(301)] = 17783, - [SMALL_STATE(302)] = 17812, - [SMALL_STATE(303)] = 17841, - [SMALL_STATE(304)] = 17870, - [SMALL_STATE(305)] = 17899, - [SMALL_STATE(306)] = 17928, - [SMALL_STATE(307)] = 17957, - [SMALL_STATE(308)] = 17986, - [SMALL_STATE(309)] = 18015, - [SMALL_STATE(310)] = 18044, - [SMALL_STATE(311)] = 18073, - [SMALL_STATE(312)] = 18102, - [SMALL_STATE(313)] = 18131, - [SMALL_STATE(314)] = 18160, - [SMALL_STATE(315)] = 18189, - [SMALL_STATE(316)] = 18218, - [SMALL_STATE(317)] = 18247, - [SMALL_STATE(318)] = 18276, - [SMALL_STATE(319)] = 18305, - [SMALL_STATE(320)] = 18334, - [SMALL_STATE(321)] = 18363, - [SMALL_STATE(322)] = 18392, - [SMALL_STATE(323)] = 18421, - [SMALL_STATE(324)] = 18450, - [SMALL_STATE(325)] = 18479, - [SMALL_STATE(326)] = 18508, - [SMALL_STATE(327)] = 18537, - [SMALL_STATE(328)] = 18566, - [SMALL_STATE(329)] = 18595, - [SMALL_STATE(330)] = 18624, - [SMALL_STATE(331)] = 18653, - [SMALL_STATE(332)] = 18682, - [SMALL_STATE(333)] = 18711, - [SMALL_STATE(334)] = 18740, - [SMALL_STATE(335)] = 18769, - [SMALL_STATE(336)] = 18798, - [SMALL_STATE(337)] = 18827, - [SMALL_STATE(338)] = 18856, - [SMALL_STATE(339)] = 18885, - [SMALL_STATE(340)] = 18914, - [SMALL_STATE(341)] = 18943, - [SMALL_STATE(342)] = 18972, - [SMALL_STATE(343)] = 19001, - [SMALL_STATE(344)] = 19030, - [SMALL_STATE(345)] = 19059, - [SMALL_STATE(346)] = 19087, - [SMALL_STATE(347)] = 19113, - [SMALL_STATE(348)] = 19139, - [SMALL_STATE(349)] = 19164, - [SMALL_STATE(350)] = 19189, - [SMALL_STATE(351)] = 19214, - [SMALL_STATE(352)] = 19253, - [SMALL_STATE(353)] = 19292, - [SMALL_STATE(354)] = 19331, - [SMALL_STATE(355)] = 19354, - [SMALL_STATE(356)] = 19377, - [SMALL_STATE(357)] = 19416, - [SMALL_STATE(358)] = 19455, - [SMALL_STATE(359)] = 19494, - [SMALL_STATE(360)] = 19530, - [SMALL_STATE(361)] = 19566, - [SMALL_STATE(362)] = 19604, - [SMALL_STATE(363)] = 19640, - [SMALL_STATE(364)] = 19676, - [SMALL_STATE(365)] = 19712, - [SMALL_STATE(366)] = 19748, - [SMALL_STATE(367)] = 19784, - [SMALL_STATE(368)] = 19820, - [SMALL_STATE(369)] = 19856, - [SMALL_STATE(370)] = 19894, - [SMALL_STATE(371)] = 19930, - [SMALL_STATE(372)] = 19968, - [SMALL_STATE(373)] = 20004, - [SMALL_STATE(374)] = 20040, - [SMALL_STATE(375)] = 20076, - [SMALL_STATE(376)] = 20112, - [SMALL_STATE(377)] = 20148, - [SMALL_STATE(378)] = 20186, - [SMALL_STATE(379)] = 20222, - [SMALL_STATE(380)] = 20258, - [SMALL_STATE(381)] = 20294, - [SMALL_STATE(382)] = 20330, - [SMALL_STATE(383)] = 20366, - [SMALL_STATE(384)] = 20402, - [SMALL_STATE(385)] = 20440, - [SMALL_STATE(386)] = 20476, - [SMALL_STATE(387)] = 20512, - [SMALL_STATE(388)] = 20548, - [SMALL_STATE(389)] = 20584, - [SMALL_STATE(390)] = 20620, - [SMALL_STATE(391)] = 20656, - [SMALL_STATE(392)] = 20692, - [SMALL_STATE(393)] = 20728, - [SMALL_STATE(394)] = 20764, - [SMALL_STATE(395)] = 20800, - [SMALL_STATE(396)] = 20836, - [SMALL_STATE(397)] = 20872, - [SMALL_STATE(398)] = 20908, - [SMALL_STATE(399)] = 20944, - [SMALL_STATE(400)] = 20977, - [SMALL_STATE(401)] = 20997, - [SMALL_STATE(402)] = 21017, - [SMALL_STATE(403)] = 21042, - [SMALL_STATE(404)] = 21067, - [SMALL_STATE(405)] = 21091, - [SMALL_STATE(406)] = 21110, - [SMALL_STATE(407)] = 21127, - [SMALL_STATE(408)] = 21150, - [SMALL_STATE(409)] = 21167, - [SMALL_STATE(410)] = 21184, - [SMALL_STATE(411)] = 21207, - [SMALL_STATE(412)] = 21230, - [SMALL_STATE(413)] = 21253, - [SMALL_STATE(414)] = 21276, - [SMALL_STATE(415)] = 21297, - [SMALL_STATE(416)] = 21320, - [SMALL_STATE(417)] = 21337, - [SMALL_STATE(418)] = 21357, - [SMALL_STATE(419)] = 21371, - [SMALL_STATE(420)] = 21391, - [SMALL_STATE(421)] = 21411, - [SMALL_STATE(422)] = 21431, - [SMALL_STATE(423)] = 21447, - [SMALL_STATE(424)] = 21465, - [SMALL_STATE(425)] = 21485, - [SMALL_STATE(426)] = 21501, - [SMALL_STATE(427)] = 21521, - [SMALL_STATE(428)] = 21541, - [SMALL_STATE(429)] = 21561, - [SMALL_STATE(430)] = 21573, - [SMALL_STATE(431)] = 21589, - [SMALL_STATE(432)] = 21601, - [SMALL_STATE(433)] = 21617, - [SMALL_STATE(434)] = 21637, - [SMALL_STATE(435)] = 21657, - [SMALL_STATE(436)] = 21672, - [SMALL_STATE(437)] = 21683, - [SMALL_STATE(438)] = 21700, - [SMALL_STATE(439)] = 21713, - [SMALL_STATE(440)] = 21730, - [SMALL_STATE(441)] = 21741, - [SMALL_STATE(442)] = 21758, - [SMALL_STATE(443)] = 21769, - [SMALL_STATE(444)] = 21786, - [SMALL_STATE(445)] = 21803, - [SMALL_STATE(446)] = 21820, - [SMALL_STATE(447)] = 21831, - [SMALL_STATE(448)] = 21842, - [SMALL_STATE(449)] = 21853, - [SMALL_STATE(450)] = 21864, - [SMALL_STATE(451)] = 21875, - [SMALL_STATE(452)] = 21886, - [SMALL_STATE(453)] = 21897, - [SMALL_STATE(454)] = 21908, - [SMALL_STATE(455)] = 21921, - [SMALL_STATE(456)] = 21932, - [SMALL_STATE(457)] = 21943, - [SMALL_STATE(458)] = 21954, - [SMALL_STATE(459)] = 21965, - [SMALL_STATE(460)] = 21976, - [SMALL_STATE(461)] = 21987, - [SMALL_STATE(462)] = 21998, - [SMALL_STATE(463)] = 22011, - [SMALL_STATE(464)] = 22022, - [SMALL_STATE(465)] = 22033, - [SMALL_STATE(466)] = 22050, - [SMALL_STATE(467)] = 22065, - [SMALL_STATE(468)] = 22076, - [SMALL_STATE(469)] = 22087, - [SMALL_STATE(470)] = 22100, - [SMALL_STATE(471)] = 22117, - [SMALL_STATE(472)] = 22134, - [SMALL_STATE(473)] = 22151, - [SMALL_STATE(474)] = 22162, - [SMALL_STATE(475)] = 22173, - [SMALL_STATE(476)] = 22190, - [SMALL_STATE(477)] = 22207, - [SMALL_STATE(478)] = 22220, - [SMALL_STATE(479)] = 22231, - [SMALL_STATE(480)] = 22248, - [SMALL_STATE(481)] = 22259, - [SMALL_STATE(482)] = 22276, - [SMALL_STATE(483)] = 22287, - [SMALL_STATE(484)] = 22304, - [SMALL_STATE(485)] = 22321, - [SMALL_STATE(486)] = 22332, - [SMALL_STATE(487)] = 22345, - [SMALL_STATE(488)] = 22356, - [SMALL_STATE(489)] = 22367, - [SMALL_STATE(490)] = 22378, - [SMALL_STATE(491)] = 22389, - [SMALL_STATE(492)] = 22400, - [SMALL_STATE(493)] = 22411, - [SMALL_STATE(494)] = 22425, - [SMALL_STATE(495)] = 22439, - [SMALL_STATE(496)] = 22449, - [SMALL_STATE(497)] = 22459, - [SMALL_STATE(498)] = 22469, - [SMALL_STATE(499)] = 22479, - [SMALL_STATE(500)] = 22489, - [SMALL_STATE(501)] = 22499, - [SMALL_STATE(502)] = 22509, - [SMALL_STATE(503)] = 22519, - [SMALL_STATE(504)] = 22529, - [SMALL_STATE(505)] = 22539, - [SMALL_STATE(506)] = 22553, - [SMALL_STATE(507)] = 22563, - [SMALL_STATE(508)] = 22573, - [SMALL_STATE(509)] = 22583, - [SMALL_STATE(510)] = 22593, - [SMALL_STATE(511)] = 22607, - [SMALL_STATE(512)] = 22617, - [SMALL_STATE(513)] = 22631, - [SMALL_STATE(514)] = 22641, - [SMALL_STATE(515)] = 22651, - [SMALL_STATE(516)] = 22661, - [SMALL_STATE(517)] = 22675, - [SMALL_STATE(518)] = 22685, - [SMALL_STATE(519)] = 22699, - [SMALL_STATE(520)] = 22713, - [SMALL_STATE(521)] = 22727, - [SMALL_STATE(522)] = 22739, - [SMALL_STATE(523)] = 22749, - [SMALL_STATE(524)] = 22759, - [SMALL_STATE(525)] = 22769, - [SMALL_STATE(526)] = 22783, - [SMALL_STATE(527)] = 22797, - [SMALL_STATE(528)] = 22807, - [SMALL_STATE(529)] = 22817, - [SMALL_STATE(530)] = 22827, - [SMALL_STATE(531)] = 22837, - [SMALL_STATE(532)] = 22851, - [SMALL_STATE(533)] = 22861, - [SMALL_STATE(534)] = 22871, - [SMALL_STATE(535)] = 22885, - [SMALL_STATE(536)] = 22899, - [SMALL_STATE(537)] = 22913, - [SMALL_STATE(538)] = 22923, - [SMALL_STATE(539)] = 22937, - [SMALL_STATE(540)] = 22951, - [SMALL_STATE(541)] = 22963, - [SMALL_STATE(542)] = 22973, - [SMALL_STATE(543)] = 22983, - [SMALL_STATE(544)] = 22993, - [SMALL_STATE(545)] = 23007, - [SMALL_STATE(546)] = 23017, - [SMALL_STATE(547)] = 23031, - [SMALL_STATE(548)] = 23041, - [SMALL_STATE(549)] = 23055, - [SMALL_STATE(550)] = 23065, - [SMALL_STATE(551)] = 23075, - [SMALL_STATE(552)] = 23089, - [SMALL_STATE(553)] = 23099, - [SMALL_STATE(554)] = 23109, - [SMALL_STATE(555)] = 23119, - [SMALL_STATE(556)] = 23130, - [SMALL_STATE(557)] = 23141, - [SMALL_STATE(558)] = 23152, - [SMALL_STATE(559)] = 23163, - [SMALL_STATE(560)] = 23174, - [SMALL_STATE(561)] = 23185, - [SMALL_STATE(562)] = 23196, - [SMALL_STATE(563)] = 23207, - [SMALL_STATE(564)] = 23218, - [SMALL_STATE(565)] = 23229, - [SMALL_STATE(566)] = 23240, - [SMALL_STATE(567)] = 23251, - [SMALL_STATE(568)] = 23262, - [SMALL_STATE(569)] = 23273, - [SMALL_STATE(570)] = 23284, - [SMALL_STATE(571)] = 23295, - [SMALL_STATE(572)] = 23306, - [SMALL_STATE(573)] = 23317, - [SMALL_STATE(574)] = 23328, - [SMALL_STATE(575)] = 23339, - [SMALL_STATE(576)] = 23350, - [SMALL_STATE(577)] = 23361, - [SMALL_STATE(578)] = 23372, - [SMALL_STATE(579)] = 23383, - [SMALL_STATE(580)] = 23394, - [SMALL_STATE(581)] = 23405, - [SMALL_STATE(582)] = 23416, - [SMALL_STATE(583)] = 23427, - [SMALL_STATE(584)] = 23438, - [SMALL_STATE(585)] = 23449, - [SMALL_STATE(586)] = 23460, - [SMALL_STATE(587)] = 23471, - [SMALL_STATE(588)] = 23482, - [SMALL_STATE(589)] = 23493, - [SMALL_STATE(590)] = 23504, - [SMALL_STATE(591)] = 23515, - [SMALL_STATE(592)] = 23526, - [SMALL_STATE(593)] = 23537, - [SMALL_STATE(594)] = 23548, - [SMALL_STATE(595)] = 23559, - [SMALL_STATE(596)] = 23570, - [SMALL_STATE(597)] = 23581, - [SMALL_STATE(598)] = 23592, - [SMALL_STATE(599)] = 23603, - [SMALL_STATE(600)] = 23614, - [SMALL_STATE(601)] = 23625, - [SMALL_STATE(602)] = 23636, - [SMALL_STATE(603)] = 23647, - [SMALL_STATE(604)] = 23658, - [SMALL_STATE(605)] = 23669, - [SMALL_STATE(606)] = 23680, - [SMALL_STATE(607)] = 23691, - [SMALL_STATE(608)] = 23702, - [SMALL_STATE(609)] = 23713, - [SMALL_STATE(610)] = 23724, - [SMALL_STATE(611)] = 23735, - [SMALL_STATE(612)] = 23746, - [SMALL_STATE(613)] = 23757, - [SMALL_STATE(614)] = 23768, - [SMALL_STATE(615)] = 23779, - [SMALL_STATE(616)] = 23790, - [SMALL_STATE(617)] = 23801, - [SMALL_STATE(618)] = 23812, - [SMALL_STATE(619)] = 23823, - [SMALL_STATE(620)] = 23834, - [SMALL_STATE(621)] = 23845, - [SMALL_STATE(622)] = 23856, - [SMALL_STATE(623)] = 23867, - [SMALL_STATE(624)] = 23878, - [SMALL_STATE(625)] = 23889, - [SMALL_STATE(626)] = 23900, - [SMALL_STATE(627)] = 23911, - [SMALL_STATE(628)] = 23922, - [SMALL_STATE(629)] = 23933, - [SMALL_STATE(630)] = 23944, - [SMALL_STATE(631)] = 23955, - [SMALL_STATE(632)] = 23966, - [SMALL_STATE(633)] = 23974, - [SMALL_STATE(634)] = 23982, - [SMALL_STATE(635)] = 23990, - [SMALL_STATE(636)] = 23998, - [SMALL_STATE(637)] = 24006, - [SMALL_STATE(638)] = 24014, - [SMALL_STATE(639)] = 24022, - [SMALL_STATE(640)] = 24030, - [SMALL_STATE(641)] = 24038, - [SMALL_STATE(642)] = 24046, - [SMALL_STATE(643)] = 24054, - [SMALL_STATE(644)] = 24062, - [SMALL_STATE(645)] = 24070, - [SMALL_STATE(646)] = 24078, - [SMALL_STATE(647)] = 24086, - [SMALL_STATE(648)] = 24094, - [SMALL_STATE(649)] = 24102, - [SMALL_STATE(650)] = 24110, - [SMALL_STATE(651)] = 24118, - [SMALL_STATE(652)] = 24126, - [SMALL_STATE(653)] = 24134, - [SMALL_STATE(654)] = 24142, - [SMALL_STATE(655)] = 24150, - [SMALL_STATE(656)] = 24158, - [SMALL_STATE(657)] = 24166, - [SMALL_STATE(658)] = 24174, - [SMALL_STATE(659)] = 24182, - [SMALL_STATE(660)] = 24190, - [SMALL_STATE(661)] = 24198, - [SMALL_STATE(662)] = 24206, - [SMALL_STATE(663)] = 24214, - [SMALL_STATE(664)] = 24222, - [SMALL_STATE(665)] = 24230, - [SMALL_STATE(666)] = 24238, - [SMALL_STATE(667)] = 24246, - [SMALL_STATE(668)] = 24254, - [SMALL_STATE(669)] = 24262, - [SMALL_STATE(670)] = 24270, - [SMALL_STATE(671)] = 24278, - [SMALL_STATE(672)] = 24286, - [SMALL_STATE(673)] = 24294, - [SMALL_STATE(674)] = 24302, - [SMALL_STATE(675)] = 24310, - [SMALL_STATE(676)] = 24318, - [SMALL_STATE(677)] = 24326, + [SMALL_STATE(16)] = 1462, + [SMALL_STATE(17)] = 1560, + [SMALL_STATE(18)] = 1658, + [SMALL_STATE(19)] = 1756, + [SMALL_STATE(20)] = 1854, + [SMALL_STATE(21)] = 1952, + [SMALL_STATE(22)] = 2047, + [SMALL_STATE(23)] = 2142, + [SMALL_STATE(24)] = 2237, + [SMALL_STATE(25)] = 2332, + [SMALL_STATE(26)] = 2427, + [SMALL_STATE(27)] = 2522, + [SMALL_STATE(28)] = 2617, + [SMALL_STATE(29)] = 2712, + [SMALL_STATE(30)] = 2766, + [SMALL_STATE(31)] = 2858, + [SMALL_STATE(32)] = 2950, + [SMALL_STATE(33)] = 3008, + [SMALL_STATE(34)] = 3062, + [SMALL_STATE(35)] = 3122, + [SMALL_STATE(36)] = 3186, + [SMALL_STATE(37)] = 3252, + [SMALL_STATE(38)] = 3330, + [SMALL_STATE(39)] = 3398, + [SMALL_STATE(40)] = 3490, + [SMALL_STATE(41)] = 3582, + [SMALL_STATE(42)] = 3674, + [SMALL_STATE(43)] = 3763, + [SMALL_STATE(44)] = 3852, + [SMALL_STATE(45)] = 3941, + [SMALL_STATE(46)] = 4030, + [SMALL_STATE(47)] = 4119, + [SMALL_STATE(48)] = 4208, + [SMALL_STATE(49)] = 4297, + [SMALL_STATE(50)] = 4386, + [SMALL_STATE(51)] = 4475, + [SMALL_STATE(52)] = 4564, + [SMALL_STATE(53)] = 4653, + [SMALL_STATE(54)] = 4742, + [SMALL_STATE(55)] = 4831, + [SMALL_STATE(56)] = 4920, + [SMALL_STATE(57)] = 5009, + [SMALL_STATE(58)] = 5098, + [SMALL_STATE(59)] = 5187, + [SMALL_STATE(60)] = 5276, + [SMALL_STATE(61)] = 5365, + [SMALL_STATE(62)] = 5454, + [SMALL_STATE(63)] = 5543, + [SMALL_STATE(64)] = 5632, + [SMALL_STATE(65)] = 5721, + [SMALL_STATE(66)] = 5810, + [SMALL_STATE(67)] = 5899, + [SMALL_STATE(68)] = 5988, + [SMALL_STATE(69)] = 6077, + [SMALL_STATE(70)] = 6166, + [SMALL_STATE(71)] = 6255, + [SMALL_STATE(72)] = 6344, + [SMALL_STATE(73)] = 6433, + [SMALL_STATE(74)] = 6522, + [SMALL_STATE(75)] = 6611, + [SMALL_STATE(76)] = 6700, + [SMALL_STATE(77)] = 6789, + [SMALL_STATE(78)] = 6878, + [SMALL_STATE(79)] = 6967, + [SMALL_STATE(80)] = 7056, + [SMALL_STATE(81)] = 7145, + [SMALL_STATE(82)] = 7234, + [SMALL_STATE(83)] = 7323, + [SMALL_STATE(84)] = 7412, + [SMALL_STATE(85)] = 7501, + [SMALL_STATE(86)] = 7590, + [SMALL_STATE(87)] = 7679, + [SMALL_STATE(88)] = 7768, + [SMALL_STATE(89)] = 7857, + [SMALL_STATE(90)] = 7911, + [SMALL_STATE(91)] = 7965, + [SMALL_STATE(92)] = 8019, + [SMALL_STATE(93)] = 8073, + [SMALL_STATE(94)] = 8127, + [SMALL_STATE(95)] = 8210, + [SMALL_STATE(96)] = 8293, + [SMALL_STATE(97)] = 8376, + [SMALL_STATE(98)] = 8459, + [SMALL_STATE(99)] = 8542, + [SMALL_STATE(100)] = 8625, + [SMALL_STATE(101)] = 8708, + [SMALL_STATE(102)] = 8791, + [SMALL_STATE(103)] = 8874, + [SMALL_STATE(104)] = 8957, + [SMALL_STATE(105)] = 9040, + [SMALL_STATE(106)] = 9123, + [SMALL_STATE(107)] = 9206, + [SMALL_STATE(108)] = 9289, + [SMALL_STATE(109)] = 9372, + [SMALL_STATE(110)] = 9455, + [SMALL_STATE(111)] = 9538, + [SMALL_STATE(112)] = 9621, + [SMALL_STATE(113)] = 9704, + [SMALL_STATE(114)] = 9787, + [SMALL_STATE(115)] = 9870, + [SMALL_STATE(116)] = 9953, + [SMALL_STATE(117)] = 10036, + [SMALL_STATE(118)] = 10119, + [SMALL_STATE(119)] = 10202, + [SMALL_STATE(120)] = 10285, + [SMALL_STATE(121)] = 10368, + [SMALL_STATE(122)] = 10451, + [SMALL_STATE(123)] = 10534, + [SMALL_STATE(124)] = 10617, + [SMALL_STATE(125)] = 10700, + [SMALL_STATE(126)] = 10783, + [SMALL_STATE(127)] = 10866, + [SMALL_STATE(128)] = 10949, + [SMALL_STATE(129)] = 11032, + [SMALL_STATE(130)] = 11106, + [SMALL_STATE(131)] = 11170, + [SMALL_STATE(132)] = 11232, + [SMALL_STATE(133)] = 11292, + [SMALL_STATE(134)] = 11348, + [SMALL_STATE(135)] = 11398, + [SMALL_STATE(136)] = 11452, + [SMALL_STATE(137)] = 11502, + [SMALL_STATE(138)] = 11552, + [SMALL_STATE(139)] = 11602, + [SMALL_STATE(140)] = 11652, + [SMALL_STATE(141)] = 11702, + [SMALL_STATE(142)] = 11748, + [SMALL_STATE(143)] = 11798, + [SMALL_STATE(144)] = 11839, + [SMALL_STATE(145)] = 11880, + [SMALL_STATE(146)] = 11921, + [SMALL_STATE(147)] = 11962, + [SMALL_STATE(148)] = 12003, + [SMALL_STATE(149)] = 12044, + [SMALL_STATE(150)] = 12085, + [SMALL_STATE(151)] = 12126, + [SMALL_STATE(152)] = 12167, + [SMALL_STATE(153)] = 12208, + [SMALL_STATE(154)] = 12249, + [SMALL_STATE(155)] = 12290, + [SMALL_STATE(156)] = 12331, + [SMALL_STATE(157)] = 12372, + [SMALL_STATE(158)] = 12413, + [SMALL_STATE(159)] = 12454, + [SMALL_STATE(160)] = 12495, + [SMALL_STATE(161)] = 12536, + [SMALL_STATE(162)] = 12577, + [SMALL_STATE(163)] = 12618, + [SMALL_STATE(164)] = 12659, + [SMALL_STATE(165)] = 12700, + [SMALL_STATE(166)] = 12741, + [SMALL_STATE(167)] = 12782, + [SMALL_STATE(168)] = 12823, + [SMALL_STATE(169)] = 12864, + [SMALL_STATE(170)] = 12905, + [SMALL_STATE(171)] = 12946, + [SMALL_STATE(172)] = 12987, + [SMALL_STATE(173)] = 13028, + [SMALL_STATE(174)] = 13069, + [SMALL_STATE(175)] = 13110, + [SMALL_STATE(176)] = 13153, + [SMALL_STATE(177)] = 13211, + [SMALL_STATE(178)] = 13267, + [SMALL_STATE(179)] = 13311, + [SMALL_STATE(180)] = 13377, + [SMALL_STATE(181)] = 13431, + [SMALL_STATE(182)] = 13475, + [SMALL_STATE(183)] = 13525, + [SMALL_STATE(184)] = 13573, + [SMALL_STATE(185)] = 13610, + [SMALL_STATE(186)] = 13647, + [SMALL_STATE(187)] = 13684, + [SMALL_STATE(188)] = 13721, + [SMALL_STATE(189)] = 13758, + [SMALL_STATE(190)] = 13795, + [SMALL_STATE(191)] = 13832, + [SMALL_STATE(192)] = 13869, + [SMALL_STATE(193)] = 13906, + [SMALL_STATE(194)] = 13943, + [SMALL_STATE(195)] = 13980, + [SMALL_STATE(196)] = 14017, + [SMALL_STATE(197)] = 14054, + [SMALL_STATE(198)] = 14091, + [SMALL_STATE(199)] = 14128, + [SMALL_STATE(200)] = 14165, + [SMALL_STATE(201)] = 14202, + [SMALL_STATE(202)] = 14239, + [SMALL_STATE(203)] = 14276, + [SMALL_STATE(204)] = 14313, + [SMALL_STATE(205)] = 14350, + [SMALL_STATE(206)] = 14387, + [SMALL_STATE(207)] = 14424, + [SMALL_STATE(208)] = 14461, + [SMALL_STATE(209)] = 14498, + [SMALL_STATE(210)] = 14535, + [SMALL_STATE(211)] = 14572, + [SMALL_STATE(212)] = 14609, + [SMALL_STATE(213)] = 14646, + [SMALL_STATE(214)] = 14683, + [SMALL_STATE(215)] = 14720, + [SMALL_STATE(216)] = 14757, + [SMALL_STATE(217)] = 14799, + [SMALL_STATE(218)] = 14847, + [SMALL_STATE(219)] = 14889, + [SMALL_STATE(220)] = 14953, + [SMALL_STATE(221)] = 14995, + [SMALL_STATE(222)] = 15039, + [SMALL_STATE(223)] = 15103, + [SMALL_STATE(224)] = 15147, + [SMALL_STATE(225)] = 15203, + [SMALL_STATE(226)] = 15257, + [SMALL_STATE(227)] = 15313, + [SMALL_STATE(228)] = 15367, + [SMALL_STATE(229)] = 15419, + [SMALL_STATE(230)] = 15471, + [SMALL_STATE(231)] = 15519, + [SMALL_STATE(232)] = 15563, + [SMALL_STATE(233)] = 15605, + [SMALL_STATE(234)] = 15651, + [SMALL_STATE(235)] = 15695, + [SMALL_STATE(236)] = 15739, + [SMALL_STATE(237)] = 15785, + [SMALL_STATE(238)] = 15827, + [SMALL_STATE(239)] = 15869, + [SMALL_STATE(240)] = 15911, + [SMALL_STATE(241)] = 15953, + [SMALL_STATE(242)] = 15995, + [SMALL_STATE(243)] = 16037, + [SMALL_STATE(244)] = 16079, + [SMALL_STATE(245)] = 16121, + [SMALL_STATE(246)] = 16163, + [SMALL_STATE(247)] = 16205, + [SMALL_STATE(248)] = 16242, + [SMALL_STATE(249)] = 16273, + [SMALL_STATE(250)] = 16304, + [SMALL_STATE(251)] = 16339, + [SMALL_STATE(252)] = 16370, + [SMALL_STATE(253)] = 16401, + [SMALL_STATE(254)] = 16432, + [SMALL_STATE(255)] = 16463, + [SMALL_STATE(256)] = 16494, + [SMALL_STATE(257)] = 16525, + [SMALL_STATE(258)] = 16556, + [SMALL_STATE(259)] = 16587, + [SMALL_STATE(260)] = 16618, + [SMALL_STATE(261)] = 16649, + [SMALL_STATE(262)] = 16680, + [SMALL_STATE(263)] = 16711, + [SMALL_STATE(264)] = 16746, + [SMALL_STATE(265)] = 16777, + [SMALL_STATE(266)] = 16808, + [SMALL_STATE(267)] = 16839, + [SMALL_STATE(268)] = 16870, + [SMALL_STATE(269)] = 16901, + [SMALL_STATE(270)] = 16932, + [SMALL_STATE(271)] = 16963, + [SMALL_STATE(272)] = 16994, + [SMALL_STATE(273)] = 17025, + [SMALL_STATE(274)] = 17056, + [SMALL_STATE(275)] = 17087, + [SMALL_STATE(276)] = 17118, + [SMALL_STATE(277)] = 17149, + [SMALL_STATE(278)] = 17180, + [SMALL_STATE(279)] = 17211, + [SMALL_STATE(280)] = 17242, + [SMALL_STATE(281)] = 17273, + [SMALL_STATE(282)] = 17304, + [SMALL_STATE(283)] = 17333, + [SMALL_STATE(284)] = 17362, + [SMALL_STATE(285)] = 17391, + [SMALL_STATE(286)] = 17420, + [SMALL_STATE(287)] = 17449, + [SMALL_STATE(288)] = 17478, + [SMALL_STATE(289)] = 17507, + [SMALL_STATE(290)] = 17536, + [SMALL_STATE(291)] = 17565, + [SMALL_STATE(292)] = 17594, + [SMALL_STATE(293)] = 17623, + [SMALL_STATE(294)] = 17652, + [SMALL_STATE(295)] = 17681, + [SMALL_STATE(296)] = 17710, + [SMALL_STATE(297)] = 17739, + [SMALL_STATE(298)] = 17768, + [SMALL_STATE(299)] = 17797, + [SMALL_STATE(300)] = 17826, + [SMALL_STATE(301)] = 17855, + [SMALL_STATE(302)] = 17884, + [SMALL_STATE(303)] = 17913, + [SMALL_STATE(304)] = 17942, + [SMALL_STATE(305)] = 17971, + [SMALL_STATE(306)] = 18000, + [SMALL_STATE(307)] = 18029, + [SMALL_STATE(308)] = 18058, + [SMALL_STATE(309)] = 18087, + [SMALL_STATE(310)] = 18116, + [SMALL_STATE(311)] = 18145, + [SMALL_STATE(312)] = 18174, + [SMALL_STATE(313)] = 18203, + [SMALL_STATE(314)] = 18232, + [SMALL_STATE(315)] = 18261, + [SMALL_STATE(316)] = 18290, + [SMALL_STATE(317)] = 18319, + [SMALL_STATE(318)] = 18348, + [SMALL_STATE(319)] = 18377, + [SMALL_STATE(320)] = 18406, + [SMALL_STATE(321)] = 18435, + [SMALL_STATE(322)] = 18464, + [SMALL_STATE(323)] = 18493, + [SMALL_STATE(324)] = 18522, + [SMALL_STATE(325)] = 18551, + [SMALL_STATE(326)] = 18580, + [SMALL_STATE(327)] = 18609, + [SMALL_STATE(328)] = 18638, + [SMALL_STATE(329)] = 18667, + [SMALL_STATE(330)] = 18696, + [SMALL_STATE(331)] = 18725, + [SMALL_STATE(332)] = 18754, + [SMALL_STATE(333)] = 18783, + [SMALL_STATE(334)] = 18812, + [SMALL_STATE(335)] = 18841, + [SMALL_STATE(336)] = 18870, + [SMALL_STATE(337)] = 18899, + [SMALL_STATE(338)] = 18928, + [SMALL_STATE(339)] = 18957, + [SMALL_STATE(340)] = 18986, + [SMALL_STATE(341)] = 19015, + [SMALL_STATE(342)] = 19044, + [SMALL_STATE(343)] = 19073, + [SMALL_STATE(344)] = 19102, + [SMALL_STATE(345)] = 19131, + [SMALL_STATE(346)] = 19160, + [SMALL_STATE(347)] = 19186, + [SMALL_STATE(348)] = 19214, + [SMALL_STATE(349)] = 19240, + [SMALL_STATE(350)] = 19265, + [SMALL_STATE(351)] = 19290, + [SMALL_STATE(352)] = 19315, + [SMALL_STATE(353)] = 19339, + [SMALL_STATE(354)] = 19378, + [SMALL_STATE(355)] = 19401, + [SMALL_STATE(356)] = 19440, + [SMALL_STATE(357)] = 19479, + [SMALL_STATE(358)] = 19518, + [SMALL_STATE(359)] = 19557, + [SMALL_STATE(360)] = 19580, + [SMALL_STATE(361)] = 19619, + [SMALL_STATE(362)] = 19655, + [SMALL_STATE(363)] = 19691, + [SMALL_STATE(364)] = 19727, + [SMALL_STATE(365)] = 19763, + [SMALL_STATE(366)] = 19801, + [SMALL_STATE(367)] = 19837, + [SMALL_STATE(368)] = 19873, + [SMALL_STATE(369)] = 19909, + [SMALL_STATE(370)] = 19947, + [SMALL_STATE(371)] = 19983, + [SMALL_STATE(372)] = 20019, + [SMALL_STATE(373)] = 20057, + [SMALL_STATE(374)] = 20093, + [SMALL_STATE(375)] = 20129, + [SMALL_STATE(376)] = 20165, + [SMALL_STATE(377)] = 20201, + [SMALL_STATE(378)] = 20237, + [SMALL_STATE(379)] = 20273, + [SMALL_STATE(380)] = 20309, + [SMALL_STATE(381)] = 20345, + [SMALL_STATE(382)] = 20381, + [SMALL_STATE(383)] = 20417, + [SMALL_STATE(384)] = 20453, + [SMALL_STATE(385)] = 20489, + [SMALL_STATE(386)] = 20527, + [SMALL_STATE(387)] = 20563, + [SMALL_STATE(388)] = 20599, + [SMALL_STATE(389)] = 20635, + [SMALL_STATE(390)] = 20671, + [SMALL_STATE(391)] = 20707, + [SMALL_STATE(392)] = 20743, + [SMALL_STATE(393)] = 20779, + [SMALL_STATE(394)] = 20815, + [SMALL_STATE(395)] = 20851, + [SMALL_STATE(396)] = 20887, + [SMALL_STATE(397)] = 20925, + [SMALL_STATE(398)] = 20961, + [SMALL_STATE(399)] = 20997, + [SMALL_STATE(400)] = 21033, + [SMALL_STATE(401)] = 21069, + [SMALL_STATE(402)] = 21102, + [SMALL_STATE(403)] = 21122, + [SMALL_STATE(404)] = 21142, + [SMALL_STATE(405)] = 21164, + [SMALL_STATE(406)] = 21186, + [SMALL_STATE(407)] = 21210, + [SMALL_STATE(408)] = 21233, + [SMALL_STATE(409)] = 21256, + [SMALL_STATE(410)] = 21279, + [SMALL_STATE(411)] = 21302, + [SMALL_STATE(412)] = 21321, + [SMALL_STATE(413)] = 21338, + [SMALL_STATE(414)] = 21359, + [SMALL_STATE(415)] = 21376, + [SMALL_STATE(416)] = 21399, + [SMALL_STATE(417)] = 21422, + [SMALL_STATE(418)] = 21440, + [SMALL_STATE(419)] = 21460, + [SMALL_STATE(420)] = 21480, + [SMALL_STATE(421)] = 21494, + [SMALL_STATE(422)] = 21514, + [SMALL_STATE(423)] = 21534, + [SMALL_STATE(424)] = 21550, + [SMALL_STATE(425)] = 21570, + [SMALL_STATE(426)] = 21586, + [SMALL_STATE(427)] = 21598, + [SMALL_STATE(428)] = 21618, + [SMALL_STATE(429)] = 21638, + [SMALL_STATE(430)] = 21654, + [SMALL_STATE(431)] = 21674, + [SMALL_STATE(432)] = 21694, + [SMALL_STATE(433)] = 21706, + [SMALL_STATE(434)] = 21726, + [SMALL_STATE(435)] = 21742, + [SMALL_STATE(436)] = 21759, + [SMALL_STATE(437)] = 21770, + [SMALL_STATE(438)] = 21787, + [SMALL_STATE(439)] = 21804, + [SMALL_STATE(440)] = 21815, + [SMALL_STATE(441)] = 21826, + [SMALL_STATE(442)] = 21839, + [SMALL_STATE(443)] = 21856, + [SMALL_STATE(444)] = 21867, + [SMALL_STATE(445)] = 21878, + [SMALL_STATE(446)] = 21893, + [SMALL_STATE(447)] = 21904, + [SMALL_STATE(448)] = 21915, + [SMALL_STATE(449)] = 21926, + [SMALL_STATE(450)] = 21943, + [SMALL_STATE(451)] = 21960, + [SMALL_STATE(452)] = 21971, + [SMALL_STATE(453)] = 21982, + [SMALL_STATE(454)] = 21999, + [SMALL_STATE(455)] = 22016, + [SMALL_STATE(456)] = 22029, + [SMALL_STATE(457)] = 22040, + [SMALL_STATE(458)] = 22057, + [SMALL_STATE(459)] = 22068, + [SMALL_STATE(460)] = 22079, + [SMALL_STATE(461)] = 22090, + [SMALL_STATE(462)] = 22101, + [SMALL_STATE(463)] = 22118, + [SMALL_STATE(464)] = 22129, + [SMALL_STATE(465)] = 22146, + [SMALL_STATE(466)] = 22157, + [SMALL_STATE(467)] = 22168, + [SMALL_STATE(468)] = 22179, + [SMALL_STATE(469)] = 22192, + [SMALL_STATE(470)] = 22207, + [SMALL_STATE(471)] = 22218, + [SMALL_STATE(472)] = 22229, + [SMALL_STATE(473)] = 22240, + [SMALL_STATE(474)] = 22257, + [SMALL_STATE(475)] = 22268, + [SMALL_STATE(476)] = 22279, + [SMALL_STATE(477)] = 22290, + [SMALL_STATE(478)] = 22301, + [SMALL_STATE(479)] = 22312, + [SMALL_STATE(480)] = 22325, + [SMALL_STATE(481)] = 22342, + [SMALL_STATE(482)] = 22355, + [SMALL_STATE(483)] = 22372, + [SMALL_STATE(484)] = 22383, + [SMALL_STATE(485)] = 22394, + [SMALL_STATE(486)] = 22405, + [SMALL_STATE(487)] = 22422, + [SMALL_STATE(488)] = 22435, + [SMALL_STATE(489)] = 22446, + [SMALL_STATE(490)] = 22463, + [SMALL_STATE(491)] = 22474, + [SMALL_STATE(492)] = 22485, + [SMALL_STATE(493)] = 22496, + [SMALL_STATE(494)] = 22506, + [SMALL_STATE(495)] = 22516, + [SMALL_STATE(496)] = 22530, + [SMALL_STATE(497)] = 22544, + [SMALL_STATE(498)] = 22558, + [SMALL_STATE(499)] = 22568, + [SMALL_STATE(500)] = 22578, + [SMALL_STATE(501)] = 22588, + [SMALL_STATE(502)] = 22598, + [SMALL_STATE(503)] = 22608, + [SMALL_STATE(504)] = 22622, + [SMALL_STATE(505)] = 22632, + [SMALL_STATE(506)] = 22642, + [SMALL_STATE(507)] = 22652, + [SMALL_STATE(508)] = 22662, + [SMALL_STATE(509)] = 22676, + [SMALL_STATE(510)] = 22686, + [SMALL_STATE(511)] = 22696, + [SMALL_STATE(512)] = 22706, + [SMALL_STATE(513)] = 22716, + [SMALL_STATE(514)] = 22730, + [SMALL_STATE(515)] = 22744, + [SMALL_STATE(516)] = 22758, + [SMALL_STATE(517)] = 22768, + [SMALL_STATE(518)] = 22782, + [SMALL_STATE(519)] = 22792, + [SMALL_STATE(520)] = 22802, + [SMALL_STATE(521)] = 22812, + [SMALL_STATE(522)] = 22826, + [SMALL_STATE(523)] = 22836, + [SMALL_STATE(524)] = 22846, + [SMALL_STATE(525)] = 22860, + [SMALL_STATE(526)] = 22874, + [SMALL_STATE(527)] = 22884, + [SMALL_STATE(528)] = 22896, + [SMALL_STATE(529)] = 22906, + [SMALL_STATE(530)] = 22920, + [SMALL_STATE(531)] = 22930, + [SMALL_STATE(532)] = 22944, + [SMALL_STATE(533)] = 22954, + [SMALL_STATE(534)] = 22966, + [SMALL_STATE(535)] = 22980, + [SMALL_STATE(536)] = 22990, + [SMALL_STATE(537)] = 23004, + [SMALL_STATE(538)] = 23018, + [SMALL_STATE(539)] = 23028, + [SMALL_STATE(540)] = 23038, + [SMALL_STATE(541)] = 23048, + [SMALL_STATE(542)] = 23062, + [SMALL_STATE(543)] = 23072, + [SMALL_STATE(544)] = 23082, + [SMALL_STATE(545)] = 23092, + [SMALL_STATE(546)] = 23106, + [SMALL_STATE(547)] = 23120, + [SMALL_STATE(548)] = 23130, + [SMALL_STATE(549)] = 23140, + [SMALL_STATE(550)] = 23150, + [SMALL_STATE(551)] = 23160, + [SMALL_STATE(552)] = 23170, + [SMALL_STATE(553)] = 23184, + [SMALL_STATE(554)] = 23194, + [SMALL_STATE(555)] = 23205, + [SMALL_STATE(556)] = 23216, + [SMALL_STATE(557)] = 23227, + [SMALL_STATE(558)] = 23238, + [SMALL_STATE(559)] = 23249, + [SMALL_STATE(560)] = 23260, + [SMALL_STATE(561)] = 23271, + [SMALL_STATE(562)] = 23282, + [SMALL_STATE(563)] = 23293, + [SMALL_STATE(564)] = 23304, + [SMALL_STATE(565)] = 23315, + [SMALL_STATE(566)] = 23326, + [SMALL_STATE(567)] = 23337, + [SMALL_STATE(568)] = 23348, + [SMALL_STATE(569)] = 23359, + [SMALL_STATE(570)] = 23370, + [SMALL_STATE(571)] = 23379, + [SMALL_STATE(572)] = 23390, + [SMALL_STATE(573)] = 23401, + [SMALL_STATE(574)] = 23412, + [SMALL_STATE(575)] = 23423, + [SMALL_STATE(576)] = 23434, + [SMALL_STATE(577)] = 23445, + [SMALL_STATE(578)] = 23456, + [SMALL_STATE(579)] = 23467, + [SMALL_STATE(580)] = 23478, + [SMALL_STATE(581)] = 23489, + [SMALL_STATE(582)] = 23500, + [SMALL_STATE(583)] = 23511, + [SMALL_STATE(584)] = 23522, + [SMALL_STATE(585)] = 23533, + [SMALL_STATE(586)] = 23544, + [SMALL_STATE(587)] = 23555, + [SMALL_STATE(588)] = 23566, + [SMALL_STATE(589)] = 23577, + [SMALL_STATE(590)] = 23588, + [SMALL_STATE(591)] = 23599, + [SMALL_STATE(592)] = 23610, + [SMALL_STATE(593)] = 23621, + [SMALL_STATE(594)] = 23632, + [SMALL_STATE(595)] = 23643, + [SMALL_STATE(596)] = 23654, + [SMALL_STATE(597)] = 23665, + [SMALL_STATE(598)] = 23676, + [SMALL_STATE(599)] = 23687, + [SMALL_STATE(600)] = 23698, + [SMALL_STATE(601)] = 23709, + [SMALL_STATE(602)] = 23720, + [SMALL_STATE(603)] = 23731, + [SMALL_STATE(604)] = 23742, + [SMALL_STATE(605)] = 23753, + [SMALL_STATE(606)] = 23764, + [SMALL_STATE(607)] = 23775, + [SMALL_STATE(608)] = 23786, + [SMALL_STATE(609)] = 23797, + [SMALL_STATE(610)] = 23808, + [SMALL_STATE(611)] = 23819, + [SMALL_STATE(612)] = 23830, + [SMALL_STATE(613)] = 23841, + [SMALL_STATE(614)] = 23852, + [SMALL_STATE(615)] = 23863, + [SMALL_STATE(616)] = 23874, + [SMALL_STATE(617)] = 23885, + [SMALL_STATE(618)] = 23896, + [SMALL_STATE(619)] = 23907, + [SMALL_STATE(620)] = 23918, + [SMALL_STATE(621)] = 23929, + [SMALL_STATE(622)] = 23940, + [SMALL_STATE(623)] = 23951, + [SMALL_STATE(624)] = 23962, + [SMALL_STATE(625)] = 23973, + [SMALL_STATE(626)] = 23984, + [SMALL_STATE(627)] = 23995, + [SMALL_STATE(628)] = 24006, + [SMALL_STATE(629)] = 24017, + [SMALL_STATE(630)] = 24028, + [SMALL_STATE(631)] = 24039, + [SMALL_STATE(632)] = 24050, + [SMALL_STATE(633)] = 24058, + [SMALL_STATE(634)] = 24066, + [SMALL_STATE(635)] = 24074, + [SMALL_STATE(636)] = 24082, + [SMALL_STATE(637)] = 24090, + [SMALL_STATE(638)] = 24098, + [SMALL_STATE(639)] = 24106, + [SMALL_STATE(640)] = 24114, + [SMALL_STATE(641)] = 24122, + [SMALL_STATE(642)] = 24130, + [SMALL_STATE(643)] = 24138, + [SMALL_STATE(644)] = 24146, + [SMALL_STATE(645)] = 24154, + [SMALL_STATE(646)] = 24162, + [SMALL_STATE(647)] = 24170, + [SMALL_STATE(648)] = 24178, + [SMALL_STATE(649)] = 24186, + [SMALL_STATE(650)] = 24194, + [SMALL_STATE(651)] = 24202, + [SMALL_STATE(652)] = 24210, + [SMALL_STATE(653)] = 24218, + [SMALL_STATE(654)] = 24226, + [SMALL_STATE(655)] = 24234, + [SMALL_STATE(656)] = 24242, + [SMALL_STATE(657)] = 24250, + [SMALL_STATE(658)] = 24258, + [SMALL_STATE(659)] = 24266, + [SMALL_STATE(660)] = 24274, + [SMALL_STATE(661)] = 24282, + [SMALL_STATE(662)] = 24290, + [SMALL_STATE(663)] = 24298, + [SMALL_STATE(664)] = 24306, + [SMALL_STATE(665)] = 24314, + [SMALL_STATE(666)] = 24322, + [SMALL_STATE(667)] = 24330, + [SMALL_STATE(668)] = 24338, + [SMALL_STATE(669)] = 24346, + [SMALL_STATE(670)] = 24354, + [SMALL_STATE(671)] = 24362, + [SMALL_STATE(672)] = 24370, + [SMALL_STATE(673)] = 24378, + [SMALL_STATE(674)] = 24386, + [SMALL_STATE(675)] = 24394, + [SMALL_STATE(676)] = 24402, + [SMALL_STATE(677)] = 24410, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -32472,552 +32523,551 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(349), - [52] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(174), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(67), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(209), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(209), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(210), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(213), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(32), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(350), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(94), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(669), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(669), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(361), - [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 1), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 2), - [96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(351), + [50] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), + [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(175), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(83), + [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(186), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(186), + [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(187), + [67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(192), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(40), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(350), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(110), + [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(658), + [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(658), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(365), + [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 1), + [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 2), + [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 3), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), - [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 3), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 3), + [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), + [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), + [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), + [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 2), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 2), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 2), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(80), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(615), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 1), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 1), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 1), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 2), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 3), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 1), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 1), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 2), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 2), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 1), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 1), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(67), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(592), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(56), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(602), - [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), - [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(61), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(556), [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 3), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 3), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numeric_lit, 1), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numeric_lit, 1), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_end, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_end, 1), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numeric_lit, 1), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numeric_lit, 1), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_index, 2), [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_index, 2), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_index, 3), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_index, 3), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 4), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 4), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_end, 1), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_end, 1), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 1), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 1), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_end, 1), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_end, 1), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(52), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(590), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(62), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(625), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(41), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(562), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 1), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 1), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 4), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 4), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_end, 1), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_end, 1), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_index, 3), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_index, 3), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), + [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 3), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 3), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(85), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(626), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(66), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(617), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(68), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(616), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3, .production_id = 1), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_elem, 3, .production_id = 1), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_start, 1), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_start, 1), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_start, 1), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_start, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_start, 1), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_start, 1), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_start, 1), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_start, 1), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(430), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(27), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(520), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(432), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(25), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(423), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(26), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(517), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(425), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(27), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(466), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(26), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(445), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(23), [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(42), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(404), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(422), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(423), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(425), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(435), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 4), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 5), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 5), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 5), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 4), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 4), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 3), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 3), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 1), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 3), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 3), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_directive, 1), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 2), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 2), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_start, 1), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_end, 1), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 10), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 9), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 8), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(516), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 7), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 5), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 6), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 6), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(70), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(406), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(417), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(429), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(434), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 3), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 3), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 3), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 1), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 5), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 5), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_directive, 1), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 4), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 5), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 4), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 2), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(469), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 4), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 3), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 2), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 7), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_end, 1), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 4), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 8), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 9), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(525), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 5), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 4), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 5), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 3), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 4), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1105] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 5), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 10), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 6), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 6), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_start, 1), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_start, 1), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_start, 1), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), + [1133] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus diff --git a/src/scanner.cc b/src/scanner.cc index 7008596..74296e6 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -20,7 +20,6 @@ enum TokenType { TEMPLATE_DIRECTIVE_START, TEMPLATE_DIRECTIVE_END, HEREDOC_IDENTIFIER, - SHIM, }; enum ContextType { @@ -97,13 +96,6 @@ public: if (lexer->lookahead == '\0') { return false; } - if (valid_symbols[SHIM]) { - lexer->mark_end(lexer); - while(skip_comment(lexer)); - if (lexer->lookahead != '}') { - return accept_inplace(lexer, SHIM); - } - } // manage quoted context if (valid_symbols[QUOTED_TEMPLATE_START] && !in_quoted_context() && lexer->lookahead == '"') { diff --git a/test/corpus/comments.txt b/test/corpus/comments.txt index f2d3beb..4f64ca6 100644 --- a/test/corpus/comments.txt +++ b/test/corpus/comments.txt @@ -33,7 +33,6 @@ block { (block (identifier) (block_start) - (body) (comment) (block_end)))) @@ -55,8 +54,8 @@ block { (block (identifier) (block_start) + (comment) (body - (comment) (attribute (identifier) (expression @@ -80,8 +79,8 @@ block { (block (identifier) (block_start) + (comment) (body - (comment) (attribute (identifier) (expression @@ -153,5 +152,4 @@ comment at end of file -------------------------------------------------------------------------------- (config_file - (body) (comment)) diff --git a/test/corpus/json.txt b/test/corpus/json.txt new file mode 100644 index 0000000..0a1ad51 --- /dev/null +++ b/test/corpus/json.txt @@ -0,0 +1,27 @@ +================================================================================ +top level object +================================================================================ + +{ + "foo": "bar" +} + +-------------------------------------------------------------------------------- + +(config_file + (object + (object_start) + (object_elem + (expression + (literal_value + (string_lit + (quoted_template_start) + (template_literal) + (quoted_template_end)))) + (expression + (literal_value + (string_lit + (quoted_template_start) + (template_literal) + (quoted_template_end))))) + (object_end)))