diff --git a/CHANGELOG.md b/CHANGELOG.md index 8076e61..00867f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ feature * add dialects so we can have different queries in `nvim-treesitter` +* fix structure of comments in block bodies housekeeping: * reformat using LSPs, ditch editorconfig diff --git a/dialects/terraform/src/grammar.json b/dialects/terraform/src/grammar.json index aae8b23..442d6a3 100644 --- a/dialects/terraform/src/grammar.json +++ b/dialects/terraform/src/grammar.json @@ -23,20 +23,46 @@ ] }, "body": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - } + "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" + } + ] + } + } + ] + } + ] }, "attribute": { "type": "SEQ", @@ -1779,6 +1805,10 @@ { "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 4580495..ed54921 100644 --- a/dialects/terraform/src/node-types.json +++ b/dialects/terraform/src/node-types.json @@ -139,7 +139,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "attribute", diff --git a/dialects/terraform/src/parser.c b/dialects/terraform/src/parser.c index ce17928..80e122d 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 678 +#define STATE_COUNT 680 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 121 +#define SYMBOL_COUNT 122 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 56 -#define EXTERNAL_TOKEN_COUNT 8 +#define TOKEN_COUNT 57 +#define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 2 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 2 @@ -72,71 +72,72 @@ enum { sym_template_directive_start = 53, sym_template_directive_end = 54, sym_heredoc_identifier = 55, - 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, + 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, }; static const char * const ts_symbol_names[] = { @@ -196,6 +197,7 @@ 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", @@ -320,6 +322,7 @@ 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, @@ -612,6 +615,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__shim] = { + .visible = false, + .named = true, + }, [sym_config_file] = { .visible = true, .named = true, @@ -915,10 +922,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 9, - [11] = 11, + [11] = 9, [12] = 9, [13] = 9, - [14] = 9, + [14] = 14, [15] = 15, [16] = 16, [17] = 16, @@ -927,12 +934,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [20] = 16, [21] = 21, [22] = 22, - [23] = 23, - [24] = 21, - [25] = 21, - [26] = 23, - [27] = 23, - [28] = 28, + [23] = 21, + [24] = 24, + [25] = 24, + [26] = 26, + [27] = 24, + [28] = 21, [29] = 29, [30] = 30, [31] = 31, @@ -948,51 +955,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, - [45] = 43, - [46] = 46, - [47] = 44, + [44] = 42, + [45] = 45, + [46] = 43, + [47] = 47, [48] = 48, [49] = 49, - [50] = 50, - [51] = 49, - [52] = 50, - [53] = 49, - [54] = 54, - [55] = 50, - [56] = 49, - [57] = 50, - [58] = 54, - [59] = 59, - [60] = 43, + [50] = 45, + [51] = 51, + [52] = 48, + [53] = 51, + [54] = 48, + [55] = 51, + [56] = 56, + [57] = 48, + [58] = 51, + [59] = 45, + [60] = 60, [61] = 61, [62] = 62, - [63] = 54, - [64] = 64, - [65] = 49, - [66] = 61, - [67] = 61, - [68] = 61, - [69] = 69, - [70] = 70, + [63] = 62, + [64] = 61, + [65] = 65, + [66] = 66, + [67] = 48, + [68] = 43, + [69] = 42, + [70] = 62, [71] = 71, - [72] = 54, - [73] = 44, + [72] = 45, + [73] = 61, [74] = 74, - [75] = 75, - [76] = 44, - [77] = 50, - [78] = 54, - [79] = 79, - [80] = 42, - [81] = 43, - [82] = 44, - [83] = 42, - [84] = 42, - [85] = 61, - [86] = 86, + [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] = 42, + [88] = 62, [89] = 89, [90] = 90, [91] = 91, @@ -1000,50 +1007,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 93, [94] = 94, [95] = 95, - [96] = 94, + [96] = 96, [97] = 97, - [98] = 95, + [98] = 94, [99] = 99, [100] = 100, [101] = 95, - [102] = 102, - [103] = 102, - [104] = 99, - [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] = 100, - [119] = 102, + [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, + [119] = 96, [120] = 99, [121] = 100, - [122] = 99, - [123] = 97, - [124] = 94, - [125] = 107, - [126] = 102, - [127] = 97, - [128] = 95, - [129] = 37, - [130] = 38, + [122] = 105, + [123] = 95, + [124] = 96, + [125] = 97, + [126] = 94, + [127] = 99, + [128] = 100, + [129] = 38, + [130] = 37, [131] = 36, - [132] = 35, - [133] = 34, - [134] = 33, - [135] = 32, - [136] = 29, + [132] = 29, + [133] = 35, + [134] = 34, + [135] = 33, + [136] = 31, [137] = 89, - [138] = 90, - [139] = 91, + [138] = 91, + [139] = 90, [140] = 92, [141] = 141, [142] = 93, @@ -1081,507 +1088,509 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [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, + [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] = 143, - [192] = 151, - [193] = 152, - [194] = 153, - [195] = 159, - [196] = 156, + [191] = 169, + [192] = 153, + [193] = 154, + [194] = 143, + [195] = 157, + [196] = 155, [197] = 158, - [198] = 149, - [199] = 170, + [198] = 151, + [199] = 144, [200] = 173, - [201] = 161, - [202] = 164, - [203] = 155, - [204] = 169, + [201] = 160, + [202] = 150, + [203] = 171, + [204] = 162, [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, + [206] = 159, + [207] = 161, + [208] = 172, + [209] = 146, + [210] = 170, + [211] = 166, + [212] = 165, + [213] = 168, + [214] = 152, + [215] = 164, + [216] = 35, + [217] = 90, + [218] = 34, + [219] = 93, + [220] = 31, + [221] = 29, + [222] = 31, [223] = 91, - [224] = 38, - [225] = 36, + [224] = 89, + [225] = 38, [226] = 38, - [227] = 36, - [228] = 35, + [227] = 37, + [228] = 36, [229] = 35, - [230] = 34, - [231] = 89, + [230] = 37, + [231] = 34, [232] = 33, - [233] = 32, + [233] = 36, [234] = 92, - [235] = 90, - [236] = 32, + [235] = 33, + [236] = 29, [237] = 92, - [238] = 90, - [239] = 91, - [240] = 93, + [238] = 93, + [239] = 90, + [240] = 89, [241] = 93, - [242] = 92, - [243] = 89, - [244] = 89, - [245] = 91, - [246] = 90, + [242] = 89, + [243] = 91, + [244] = 91, + [245] = 90, + [246] = 92, [247] = 141, - [248] = 163, - [249] = 148, - [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, + [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] = 165, - [265] = 167, - [266] = 144, + [264] = 164, + [265] = 165, + [266] = 171, [267] = 143, - [268] = 174, - [269] = 145, - [270] = 154, - [271] = 173, - [272] = 172, - [273] = 171, - [274] = 168, - [275] = 166, - [276] = 162, - [277] = 159, + [268] = 169, + [269] = 174, + [270] = 145, + [271] = 156, + [272] = 173, + [273] = 172, + [274] = 170, + [275] = 168, + [276] = 161, + [277] = 150, [278] = 157, - [279] = 155, - [280] = 150, + [279] = 152, + [280] = 151, [281] = 149, - [282] = 166, - [283] = 157, - [284] = 154, - [285] = 167, - [286] = 165, - [287] = 163, - [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] = 170, - [301] = 168, - [302] = 152, - [303] = 166, + [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, + [297] = 172, + [298] = 143, + [299] = 155, + [300] = 154, + [301] = 170, + [302] = 169, + [303] = 168, [304] = 174, - [305] = 162, - [306] = 151, - [307] = 148, - [308] = 147, - [309] = 146, + [305] = 161, + [306] = 159, + [307] = 159, + [308] = 171, + [309] = 155, [310] = 145, - [311] = 159, - [312] = 154, - [313] = 173, - [314] = 172, - [315] = 171, - [316] = 168, - [317] = 165, - [318] = 174, - [319] = 145, - [320] = 155, - [321] = 162, - [322] = 150, - [323] = 153, - [324] = 163, - [325] = 159, - [326] = 157, - [327] = 155, - [328] = 150, - [329] = 156, - [330] = 149, - [331] = 144, - [332] = 158, - [333] = 161, - [334] = 167, - [335] = 160, - [336] = 164, - [337] = 152, - [338] = 169, - [339] = 143, - [340] = 151, - [341] = 148, - [342] = 147, - [343] = 146, - [344] = 149, - [345] = 144, + [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, + [334] = 151, + [335] = 148, + [336] = 154, + [337] = 153, + [338] = 147, + [339] = 163, + [340] = 148, + [341] = 162, + [342] = 149, + [343] = 160, + [344] = 153, + [345] = 158, [346] = 346, [347] = 347, [348] = 348, [349] = 349, [350] = 350, [351] = 351, - [352] = 349, + [352] = 350, [353] = 353, [354] = 354, - [355] = 355, - [356] = 356, + [355] = 354, + [356] = 353, [357] = 353, - [358] = 356, - [359] = 353, - [360] = 356, + [358] = 358, + [359] = 359, + [360] = 354, [361] = 361, - [362] = 361, - [363] = 361, + [362] = 362, + [363] = 363, [364] = 364, [365] = 365, - [366] = 366, - [367] = 364, + [366] = 362, + [367] = 363, [368] = 368, - [369] = 361, - [370] = 370, - [371] = 364, - [372] = 368, + [369] = 369, + [370] = 361, + [371] = 369, + [372] = 362, [373] = 373, - [374] = 374, - [375] = 366, + [374] = 365, + [375] = 365, [376] = 376, - [377] = 370, - [378] = 368, - [379] = 379, - [380] = 379, + [377] = 361, + [378] = 378, + [379] = 368, + [380] = 378, [381] = 373, - [382] = 376, - [383] = 365, - [384] = 370, - [385] = 364, - [386] = 366, - [387] = 366, - [388] = 361, - [389] = 389, + [382] = 382, + [383] = 382, + [384] = 378, + [385] = 378, + [386] = 362, + [387] = 382, + [388] = 362, + [389] = 373, [390] = 364, - [391] = 374, - [392] = 373, - [393] = 389, - [394] = 376, - [395] = 366, - [396] = 379, - [397] = 370, - [398] = 374, - [399] = 389, - [400] = 370, - [401] = 365, + [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, [404] = 404, [405] = 405, [406] = 406, [407] = 407, - [408] = 408, + [408] = 407, [409] = 409, - [410] = 409, + [410] = 410, [411] = 411, - [412] = 409, - [413] = 409, + [412] = 412, + [413] = 407, [414] = 414, - [415] = 409, + [415] = 407, [416] = 416, - [417] = 417, + [417] = 407, [418] = 418, [419] = 419, [420] = 420, - [421] = 419, - [422] = 347, - [423] = 417, - [424] = 419, - [425] = 419, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 420, + [425] = 348, [426] = 426, - [427] = 426, - [428] = 419, - [429] = 429, - [430] = 348, - [431] = 426, - [432] = 432, - [433] = 433, - [434] = 432, + [427] = 420, + [428] = 421, + [429] = 419, + [430] = 347, + [431] = 419, + [432] = 420, + [433] = 420, + [434] = 434, [435] = 435, - [436] = 436, + [436] = 423, [437] = 437, [438] = 438, [439] = 439, [440] = 440, - [441] = 441, + [441] = 438, [442] = 442, [443] = 443, [444] = 444, - [445] = 417, + [445] = 445, [446] = 446, [447] = 447, [448] = 448, - [449] = 438, - [450] = 442, + [449] = 442, + [450] = 450, [451] = 451, - [452] = 446, + [452] = 450, [453] = 453, - [454] = 442, - [455] = 441, + [454] = 454, + [455] = 440, [456] = 456, - [457] = 438, - [458] = 458, - [459] = 448, - [460] = 444, - [461] = 461, - [462] = 442, - [463] = 443, - [464] = 453, - [465] = 447, - [466] = 451, - [467] = 458, - [468] = 441, - [469] = 432, - [470] = 461, - [471] = 471, + [457] = 444, + [458] = 454, + [459] = 456, + [460] = 460, + [461] = 439, + [462] = 462, + [463] = 442, + [464] = 464, + [465] = 448, + [466] = 466, + [467] = 467, + [468] = 453, + [469] = 447, + [470] = 444, + [471] = 444, [472] = 472, - [473] = 442, - [474] = 440, - [475] = 475, + [473] = 446, + [474] = 474, + [475] = 453, [476] = 476, [477] = 477, - [478] = 476, - [479] = 441, - [480] = 480, - [481] = 481, - [482] = 453, - [483] = 471, - [484] = 472, - [485] = 475, - [486] = 435, - [487] = 441, + [478] = 462, + [479] = 423, + [480] = 437, + [481] = 437, + [482] = 444, + [483] = 445, + [484] = 476, + [485] = 453, + [486] = 439, + [487] = 443, [488] = 477, - [489] = 435, - [490] = 436, - [491] = 439, - [492] = 456, - [493] = 436, - [494] = 494, - [495] = 495, - [496] = 496, + [489] = 474, + [490] = 467, + [491] = 472, + [492] = 460, + [493] = 453, + [494] = 421, + [495] = 421, + [496] = 151, [497] = 497, - [498] = 439, - [499] = 456, - [500] = 476, + [498] = 498, + [499] = 498, + [500] = 500, [501] = 501, [502] = 502, [503] = 503, [504] = 504, - [505] = 440, + [505] = 505, [506] = 506, [507] = 507, - [508] = 495, - [509] = 472, - [510] = 471, - [511] = 348, - [512] = 512, - [513] = 417, - [514] = 497, - [515] = 515, - [516] = 348, - [517] = 517, - [518] = 458, - [519] = 451, - [520] = 520, - [521] = 497, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 460, + [512] = 477, + [513] = 498, + [514] = 348, + [515] = 467, + [516] = 516, + [517] = 438, + [518] = 443, + [519] = 445, + [520] = 348, + [521] = 521, [522] = 522, - [523] = 447, + [523] = 523, [524] = 524, - [525] = 432, - [526] = 443, - [527] = 527, - [528] = 477, - [529] = 496, - [530] = 149, - [531] = 531, - [532] = 532, + [525] = 423, + [526] = 510, + [527] = 446, + [528] = 447, + [529] = 529, + [530] = 448, + [531] = 450, + [532] = 347, [533] = 533, - [534] = 503, - [535] = 444, - [536] = 536, - [537] = 495, - [538] = 538, - [539] = 475, - [540] = 448, - [541] = 496, - [542] = 461, + [534] = 347, + [535] = 454, + [536] = 440, + [537] = 456, + [538] = 523, + [539] = 539, + [540] = 540, + [541] = 523, + [542] = 542, [543] = 543, [544] = 544, - [545] = 503, + [545] = 545, [546] = 546, - [547] = 446, - [548] = 347, - [549] = 347, - [550] = 550, - [551] = 551, - [552] = 552, + [547] = 474, + [548] = 476, + [549] = 521, + [550] = 462, + [551] = 510, + [552] = 521, [553] = 553, [554] = 554, - [555] = 555, + [555] = 472, [556] = 556, [557] = 557, [558] = 558, [559] = 559, [560] = 560, - [561] = 558, + [561] = 559, [562] = 562, - [563] = 563, + [563] = 558, [564] = 564, [565] = 565, [566] = 566, - [567] = 560, + [567] = 567, [568] = 568, - [569] = 559, + [569] = 569, [570] = 570, [571] = 571, [572] = 572, - [573] = 571, - [574] = 568, - [575] = 575, - [576] = 566, + [573] = 569, + [574] = 574, + [575] = 569, + [576] = 574, [577] = 577, - [578] = 560, - [579] = 562, - [580] = 554, - [581] = 565, - [582] = 566, - [583] = 583, - [584] = 562, - [585] = 565, - [586] = 586, - [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, + [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, + [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] = 571, - [616] = 556, - [617] = 556, - [618] = 558, - [619] = 586, + [615] = 582, + [616] = 579, + [617] = 593, + [618] = 566, + [619] = 567, [620] = 565, - [621] = 575, - [622] = 565, - [623] = 623, - [624] = 563, - [625] = 558, - [626] = 556, - [627] = 627, - [628] = 628, - [629] = 563, - [630] = 564, - [631] = 564, - [632] = 632, - [633] = 633, + [621] = 567, + [622] = 622, + [623] = 593, + [624] = 559, + [625] = 625, + [626] = 582, + [627] = 565, + [628] = 566, + [629] = 629, + [630] = 579, + [631] = 574, + [632] = 593, + [633] = 559, [634] = 634, [635] = 635, [636] = 636, [637] = 637, - [638] = 638, + [638] = 634, [639] = 639, [640] = 640, [641] = 641, - [642] = 639, - [643] = 636, + [642] = 642, + [643] = 643, [644] = 644, - [645] = 641, + [645] = 645, [646] = 646, [647] = 647, - [648] = 647, - [649] = 649, + [648] = 648, + [649] = 647, [650] = 650, [651] = 651, [652] = 652, - [653] = 653, - [654] = 654, + [653] = 645, + [654] = 641, [655] = 655, - [656] = 641, + [656] = 639, [657] = 657, - [658] = 658, - [659] = 649, - [660] = 633, - [661] = 637, + [658] = 647, + [659] = 640, + [660] = 660, + [661] = 661, [662] = 662, [663] = 663, - [664] = 633, - [665] = 647, - [666] = 666, + [664] = 664, + [665] = 663, + [666] = 639, [667] = 647, - [668] = 639, - [669] = 636, - [670] = 647, - [671] = 637, - [672] = 672, - [673] = 649, - [674] = 674, + [668] = 645, + [669] = 669, + [670] = 634, + [671] = 671, + [672] = 647, + [673] = 641, + [674] = 640, [675] = 675, [676] = 676, [677] = 677, + [678] = 678, + [679] = 663, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -11803,134 +11812,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}, - [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 = 2}, - [23] = {.lex_state = 1, .external_lex_state = 3}, - [24] = {.lex_state = 1, .external_lex_state = 3}, - [25] = {.lex_state = 1, .external_lex_state = 3}, + [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}, + [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}, [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}, + [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}, [129] = {.lex_state = 41}, [130] = {.lex_state = 41}, [131] = {.lex_state = 41}, @@ -11943,40 +11952,40 @@ 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 = 2}, + [141] = {.lex_state = 1, .external_lex_state = 3}, [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}, + [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}, [176] = {.lex_state = 2}, [177] = {.lex_state = 2}, @@ -12018,41 +12027,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 41}, [214] = {.lex_state = 41}, [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 = 4}, + [216] = {.lex_state = 41, .external_lex_state = 5}, + [217] = {.lex_state = 2}, + [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}, + [222] = {.lex_state = 41, .external_lex_state = 5}, [223] = {.lex_state = 2}, - [224] = {.lex_state = 41, .external_lex_state = 4}, - [225] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [228] = {.lex_state = 41, .external_lex_state = 4}, - [229] = {.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 = 2}, - [232] = {.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 = 2}, - [236] = {.lex_state = 41, .external_lex_state = 4}, - [237] = {.lex_state = 41, .external_lex_state = 5}, + [235] = {.lex_state = 41, .external_lex_state = 5}, + [236] = {.lex_state = 41, .external_lex_state = 5}, + [237] = {.lex_state = 41, .external_lex_state = 6}, [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 = 4}, - [243] = {.lex_state = 41, .external_lex_state = 5}, - [244] = {.lex_state = 41, .external_lex_state = 4}, + [239] = {.lex_state = 41, .external_lex_state = 6}, + [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}, [245] = {.lex_state = 41, .external_lex_state = 5}, - [246] = {.lex_state = 41, .external_lex_state = 4}, + [246] = {.lex_state = 41, .external_lex_state = 5}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, [249] = {.lex_state = 2}, - [250] = {.lex_state = 41, .external_lex_state = 4}, + [250] = {.lex_state = 2}, [251] = {.lex_state = 2}, [252] = {.lex_state = 2}, [253] = {.lex_state = 2}, @@ -12061,11 +12070,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 2}, [257] = {.lex_state = 2}, [258] = {.lex_state = 2}, - [259] = {.lex_state = 2}, + [259] = {.lex_state = 41, .external_lex_state = 5}, [260] = {.lex_state = 2}, [261] = {.lex_state = 2}, [262] = {.lex_state = 2}, - [263] = {.lex_state = 41, .external_lex_state = 5}, + [263] = {.lex_state = 41, .external_lex_state = 6}, [264] = {.lex_state = 2}, [265] = {.lex_state = 2}, [266] = {.lex_state = 2}, @@ -12084,307 +12093,307 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 2}, [280] = {.lex_state = 2}, [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 = 5}, - [285] = {.lex_state = 41, .external_lex_state = 4}, - [286] = {.lex_state = 41, .external_lex_state = 4}, - [287] = {.lex_state = 41, .external_lex_state = 4}, - [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}, + [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}, + [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}, + [291] = {.lex_state = 41, .external_lex_state = 5}, + [292] = {.lex_state = 41, .external_lex_state = 5}, [293] = {.lex_state = 41, .external_lex_state = 5}, - [294] = {.lex_state = 41, .external_lex_state = 4}, + [294] = {.lex_state = 41, .external_lex_state = 5}, [295] = {.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}, + [296] = {.lex_state = 41, .external_lex_state = 6}, + [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}, - [301] = {.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 = 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 = 4}, - [309] = {.lex_state = 41, .external_lex_state = 4}, - [310] = {.lex_state = 41, .external_lex_state = 4}, + [301] = {.lex_state = 41, .external_lex_state = 6}, + [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}, + [310] = {.lex_state = 41, .external_lex_state = 5}, [311] = {.lex_state = 41, .external_lex_state = 5}, - [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 = 4}, + [312] = {.lex_state = 41, .external_lex_state = 6}, + [313] = {.lex_state = 41, .external_lex_state = 6}, + [314] = {.lex_state = 41, .external_lex_state = 5}, + [315] = {.lex_state = 41, .external_lex_state = 6}, + [316] = {.lex_state = 41, .external_lex_state = 6}, [317] = {.lex_state = 41, .external_lex_state = 5}, - [318] = {.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 = 5}, - [321] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [325] = {.lex_state = 41, .external_lex_state = 4}, - [326] = {.lex_state = 41, .external_lex_state = 4}, - [327] = {.lex_state = 41, .external_lex_state = 4}, - [328] = {.lex_state = 41, .external_lex_state = 4}, - [329] = {.lex_state = 41, .external_lex_state = 5}, + [324] = {.lex_state = 41, .external_lex_state = 6}, + [325] = {.lex_state = 41, .external_lex_state = 5}, + [326] = {.lex_state = 41, .external_lex_state = 6}, + [327] = {.lex_state = 41, .external_lex_state = 5}, + [328] = {.lex_state = 41, .external_lex_state = 6}, + [329] = {.lex_state = 41, .external_lex_state = 6}, [330] = {.lex_state = 41, .external_lex_state = 5}, - [331] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [337] = {.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 = 5}, + [339] = {.lex_state = 41, .external_lex_state = 6}, [340] = {.lex_state = 41, .external_lex_state = 5}, - [341] = {.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 = 5}, - [344] = {.lex_state = 41, .external_lex_state = 4}, - [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 = 3, .external_lex_state = 2}, - [350] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, - [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 = 0, .external_lex_state = 6}, - [360] = {.lex_state = 0, .external_lex_state = 6}, - [361] = {.lex_state = 0, .external_lex_state = 7}, - [362] = {.lex_state = 0, .external_lex_state = 7}, + [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}, [363] = {.lex_state = 0, .external_lex_state = 7}, [364] = {.lex_state = 0, .external_lex_state = 7}, - [365] = {.lex_state = 0, .external_lex_state = 7}, - [366] = {.lex_state = 0, .external_lex_state = 8}, + [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 = 6}, + [368] = {.lex_state = 0, .external_lex_state = 8}, [369] = {.lex_state = 0, .external_lex_state = 7}, [370] = {.lex_state = 0, .external_lex_state = 8}, [371] = {.lex_state = 0, .external_lex_state = 7}, - [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 = 8}, - [376] = {.lex_state = 0, .external_lex_state = 6}, + [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}, [377] = {.lex_state = 0, .external_lex_state = 8}, - [378] = {.lex_state = 0, .external_lex_state = 6}, - [379] = {.lex_state = 0, .external_lex_state = 6}, - [380] = {.lex_state = 0, .external_lex_state = 6}, - [381] = {.lex_state = 0, .external_lex_state = 6}, - [382] = {.lex_state = 0, .external_lex_state = 6}, - [383] = {.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}, + [383] = {.lex_state = 0, .external_lex_state = 7}, [384] = {.lex_state = 0, .external_lex_state = 8}, - [385] = {.lex_state = 0, .external_lex_state = 7}, - [386] = {.lex_state = 0, .external_lex_state = 8}, - [387] = {.lex_state = 0, .external_lex_state = 8}, - [388] = {.lex_state = 0, .external_lex_state = 7}, - [389] = {.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 = 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}, + [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}, [395] = {.lex_state = 0, .external_lex_state = 8}, - [396] = {.lex_state = 0, .external_lex_state = 6}, - [397] = {.lex_state = 0, .external_lex_state = 8}, - [398] = {.lex_state = 0, .external_lex_state = 6}, - [399] = {.lex_state = 0, .external_lex_state = 6}, - [400] = {.lex_state = 0, .external_lex_state = 8}, - [401] = {.lex_state = 0, .external_lex_state = 6}, + [396] = {.lex_state = 0, .external_lex_state = 7}, + [397] = {.lex_state = 0, .external_lex_state = 9}, + [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}, [403] = {.lex_state = 41}, - [404] = {.lex_state = 41}, - [405] = {.lex_state = 4, .external_lex_state = 2}, - [406] = {.lex_state = 41}, - [407] = {.lex_state = 41, .external_lex_state = 2}, + [404] = {.lex_state = 41, .external_lex_state = 2}, + [405] = {.lex_state = 41, .external_lex_state = 2}, + [406] = {.lex_state = 4, .external_lex_state = 3}, + [407] = {.lex_state = 0}, [408] = {.lex_state = 0}, - [409] = {.lex_state = 0}, + [409] = {.lex_state = 41, .external_lex_state = 3}, [410] = {.lex_state = 0}, [411] = {.lex_state = 41}, [412] = {.lex_state = 0}, [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, + [414] = {.lex_state = 41}, [415] = {.lex_state = 0}, [416] = {.lex_state = 41}, - [417] = {.lex_state = 0, .external_lex_state = 7}, - [418] = {.lex_state = 41, .external_lex_state = 2}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 41}, [419] = {.lex_state = 0}, [420] = {.lex_state = 0}, - [421] = {.lex_state = 0}, + [421] = {.lex_state = 0, .external_lex_state = 9}, [422] = {.lex_state = 0}, - [423] = {.lex_state = 0, .external_lex_state = 8}, + [423] = {.lex_state = 0, .external_lex_state = 9}, [424] = {.lex_state = 0}, [425] = {.lex_state = 0}, [426] = {.lex_state = 0}, [427] = {.lex_state = 0}, - [428] = {.lex_state = 0}, + [428] = {.lex_state = 0, .external_lex_state = 8}, [429] = {.lex_state = 0}, [430] = {.lex_state = 0}, [431] = {.lex_state = 0}, - [432] = {.lex_state = 0, .external_lex_state = 8}, + [432] = {.lex_state = 0}, [433] = {.lex_state = 0}, - [434] = {.lex_state = 0, .external_lex_state = 7}, - [435] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 41, .external_lex_state = 3}, [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}, + [437] = {.lex_state = 0}, + [438] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 8}, - [445] = {.lex_state = 0, .external_lex_state = 6}, - [446] = {.lex_state = 0, .external_lex_state = 7}, + [444] = {.lex_state = 0, .external_lex_state = 9}, + [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}, - [451] = {.lex_state = 0, .external_lex_state = 8}, - [452] = {.lex_state = 0, .external_lex_state = 8}, + [450] = {.lex_state = 0, .external_lex_state = 8}, + [451] = {.lex_state = 0, .external_lex_state = 10}, + [452] = {.lex_state = 0, .external_lex_state = 9}, [453] = {.lex_state = 0}, - [454] = {.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}, - [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}, - [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 = 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}, + [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}, + [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}, + [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}, + [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 = 8}, + [479] = {.lex_state = 0, .external_lex_state = 7}, [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}, + [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 = 8}, + [487] = {.lex_state = 0, .external_lex_state = 9}, [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 = 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 = 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 = 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 = 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}, + [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}, + [513] = {.lex_state = 0}, [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}, + [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 = 5}, - [522] = {.lex_state = 41, .external_lex_state = 2}, + [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 = 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}, + [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}, [532] = {.lex_state = 0, .external_lex_state = 6}, - [533] = {.lex_state = 3}, + [533] = {.lex_state = 0}, [534] = {.lex_state = 0, .external_lex_state = 5}, - [535] = {.lex_state = 0, .external_lex_state = 6}, - [536] = {.lex_state = 0, .external_lex_state = 4}, - [537] = {.lex_state = 0}, + [535] = {.lex_state = 0, .external_lex_state = 7}, + [536] = {.lex_state = 0, .external_lex_state = 7}, + [537] = {.lex_state = 0, .external_lex_state = 7}, [538] = {.lex_state = 0, .external_lex_state = 6}, - [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}, + [539] = {.lex_state = 41}, + [540] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 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 = 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}, + [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}, + [556] = {.lex_state = 0, .external_lex_state = 5}, + [557] = {.lex_state = 0}, [558] = {.lex_state = 0}, - [559] = {.lex_state = 0, .external_lex_state = 4}, + [559] = {.lex_state = 41}, [560] = {.lex_state = 0}, - [561] = {.lex_state = 0}, + [561] = {.lex_state = 41}, [562] = {.lex_state = 0}, [563] = {.lex_state = 0}, [564] = {.lex_state = 0}, [565] = {.lex_state = 0}, - [566] = {.lex_state = 1}, + [566] = {.lex_state = 0}, [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}, + [568] = {.lex_state = 1}, + [569] = {.lex_state = 0}, + [570] = {.lex_state = 0, .external_lex_state = 5}, + [571] = {.lex_state = 0, .external_lex_state = 5}, [572] = {.lex_state = 0}, [573] = {.lex_state = 0}, - [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}, + [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}, [580] = {.lex_state = 0}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 1}, + [581] = {.lex_state = 0, .external_lex_state = 5}, + [582] = {.lex_state = 0}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, [585] = {.lex_state = 0}, @@ -12394,92 +12403,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, [591] = {.lex_state = 0}, - [592] = {.lex_state = 41}, - [593] = {.lex_state = 1}, - [594] = {.lex_state = 0}, + [592] = {.lex_state = 1}, + [593] = {.lex_state = 0}, + [594] = {.lex_state = 41}, [595] = {.lex_state = 0}, - [596] = {.lex_state = 1}, + [596] = {.lex_state = 0}, [597] = {.lex_state = 0}, [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 0}, + [600] = {.lex_state = 1}, + [601] = {.lex_state = 0, .external_lex_state = 5}, [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 = 0, .external_lex_state = 4}, + [604] = {.lex_state = 0, .external_lex_state = 5}, + [605] = {.lex_state = 0}, + [606] = {.lex_state = 0, .external_lex_state = 5}, + [607] = {.lex_state = 0, .external_lex_state = 5}, + [608] = {.lex_state = 0, .external_lex_state = 5}, [609] = {.lex_state = 0}, [610] = {.lex_state = 0}, [611] = {.lex_state = 0}, - [612] = {.lex_state = 0, .external_lex_state = 4}, - [613] = {.lex_state = 0}, - [614] = {.lex_state = 0, .external_lex_state = 4}, + [612] = {.lex_state = 0}, + [613] = {.lex_state = 1}, + [614] = {.lex_state = 0, .external_lex_state = 5}, [615] = {.lex_state = 0}, - [616] = {.lex_state = 41}, - [617] = {.lex_state = 41}, + [616] = {.lex_state = 0, .external_lex_state = 5}, + [617] = {.lex_state = 0}, [618] = {.lex_state = 0}, [619] = {.lex_state = 0}, [620] = {.lex_state = 0}, - [621] = {.lex_state = 0, .external_lex_state = 4}, + [621] = {.lex_state = 0}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, - [624] = {.lex_state = 0}, + [624] = {.lex_state = 41}, [625] = {.lex_state = 0}, - [626] = {.lex_state = 41}, + [626] = {.lex_state = 0}, [627] = {.lex_state = 0}, [628] = {.lex_state = 0}, - [629] = {.lex_state = 0}, - [630] = {.lex_state = 0}, + [629] = {.lex_state = 0, .external_lex_state = 5}, + [630] = {.lex_state = 0, .external_lex_state = 5}, [631] = {.lex_state = 0}, - [632] = {.lex_state = 41}, - [633] = {.lex_state = 0, .external_lex_state = 4}, - [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 = 10}, - [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 = 11}, - [648] = {.lex_state = 0, .external_lex_state = 11}, - [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 = 0, .external_lex_state = 4}, - [656] = {.lex_state = 0, .external_lex_state = 4}, - [657] = {.lex_state = 41}, - [658] = {.lex_state = 0, .external_lex_state = 11}, - [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 = 11}, - [666] = {.lex_state = 0, .external_lex_state = 4}, - [667] = {.lex_state = 0, .external_lex_state = 11}, - [668] = {.lex_state = 0, .external_lex_state = 4}, + [632] = {.lex_state = 0}, + [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}, + [639] = {.lex_state = 0, .external_lex_state = 5}, + [640] = {.lex_state = 0, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [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 = 11}, - [671] = {.lex_state = 0, .external_lex_state = 4}, - [672] = {.lex_state = 41}, + [670] = {.lex_state = 0, .external_lex_state = 5}, + [671] = {.lex_state = 0, .external_lex_state = 5}, + [672] = {.lex_state = 0, .external_lex_state = 12}, [673] = {.lex_state = 0, .external_lex_state = 5}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 0, .external_lex_state = 4}, - [677] = {.lex_state = 0, .external_lex_state = 4}, + [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}, }; enum { @@ -12491,6 +12502,7 @@ 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] = { @@ -12502,9 +12514,10 @@ 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[12][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_quoted_template_start] = true, [ts_external_token_quoted_template_end] = true, @@ -12514,45 +12527,49 @@ static const bool ts_external_scanner_states[12][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_quoted_template_start] = true, + [ts_external_token__shim] = true, }, [3] = { [ts_external_token_quoted_template_start] = true, - [ts_external_token_template_interpolation_end] = true, }, [4] = { - [ts_external_token_template_directive_end] = true, - }, - [5] = { + [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_literal_chunk] = true, - [ts_external_token_template_interpolation_start] = true, - [ts_external_token_template_directive_start] = true, + [ts_external_token_template_interpolation_end] = 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__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, }, - [9] = { + [10] = { [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, }, - [10] = { + [11] = { [ts_external_token_quoted_template_end] = true, }, - [11] = { + [12] = { [ts_external_token_heredoc_identifier] = true, }, }; @@ -12613,93 +12630,95 @@ 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(654), - [sym_body] = STATE(675), - [sym_attribute] = STATE(411), - [sym_block] = STATE(411), - [sym_object] = STATE(675), + [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(411), + [aux_sym_body_repeat1] = STATE(416), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym__whitespace] = ACTIONS(3), + [sym__shim] = ACTIONS(11), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 30, - ACTIONS(11), 1, - anon_sym_LBRACE, ACTIONS(13), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(15), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(58), 1, + STATE(80), 1, sym_for_intro, - STATE(153), 1, + STATE(196), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(620), 1, + STATE(615), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12709,74 +12728,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [107] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, - sym_quoted_template_start, + anon_sym_LT_LT_DASH, ACTIONS(39), 1, + sym_quoted_template_start, + ACTIONS(41), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(54), 1, + STATE(50), 1, sym_for_intro, - STATE(255), 1, + STATE(155), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(581), 1, + STATE(610), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12786,74 +12805,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [214] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(78), 1, + STATE(45), 1, sym_for_intro, - STATE(194), 1, + STATE(255), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(585), 1, + STATE(609), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12863,74 +12882,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [321] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(72), 1, + STATE(59), 1, sym_for_intro, - STATE(298), 1, + STATE(299), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(622), 1, + STATE(626), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12940,74 +12959,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [428] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(63), 1, + STATE(72), 1, sym_for_intro, - STATE(323), 1, + STATE(309), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(565), 1, + STATE(582), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13017,71 +13036,71 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [535] = 28, - ACTIONS(47), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(50), 1, - anon_sym_RBRACE, - ACTIONS(52), 1, + ACTIONS(17), 1, sym_identifier, - ACTIONS(55), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(58), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(61), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(67), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(70), 1, - anon_sym_COMMA, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(79), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(82), 1, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(85), 1, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + ACTIONS(49), 1, + anon_sym_RBRACE, + ACTIONS(51), 1, + anon_sym_COMMA, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(40), 1, + STATE(22), 1, sym__comma, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(64), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(76), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(7), 2, + STATE(8), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13091,71 +13110,71 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [637] = 28, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(88), 1, + ACTIONS(53), 1, anon_sym_RBRACE, - ACTIONS(90), 1, + ACTIONS(55), 1, anon_sym_COMMA, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(22), 1, + STATE(26), 1, sym__comma, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(11), 2, + STATE(14), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13165,72 +13184,72 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [739] = 29, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(92), 1, + ACTIONS(57), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(52), 1, + STATE(51), 1, sym_for_intro, - STATE(264), 1, + STATE(294), 1, sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(420), 1, + STATE(426), 1, sym_expression, - STATE(560), 1, + STATE(575), 1, sym__tuple_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13240,72 +13259,72 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [843] = 29, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(94), 1, + ACTIONS(59), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(50), 1, + STATE(79), 1, sym_for_intro, - STATE(286), 1, + STATE(205), 1, sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(420), 1, + STATE(426), 1, sym_expression, - STATE(602), 1, + STATE(569), 1, sym__tuple_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13314,297 +13333,297 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [947] = 28, - ACTIONS(11), 1, + [947] = 29, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, + ACTIONS(31), 1, + anon_sym_for, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(96), 1, - anon_sym_RBRACE, - ACTIONS(98), 1, - anon_sym_COMMA, - STATE(4), 1, + ACTIONS(61), 1, + anon_sym_RBRACK, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(28), 1, - sym__comma, + STATE(58), 1, + sym_for_intro, + STATE(312), 1, + sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(426), 1, sym_expression, - STATE(648), 1, + STATE(573), 1, + sym__tuple_elems, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(7), 2, + 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, + [1051] = 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(63), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(55), 1, + sym_for_intro, + STATE(167), 1, + sym_tuple_end, + STATE(403), 1, + sym_conditional, + STATE(426), 1, + sym_expression, + STATE(596), 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, + [1155] = 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(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, + anon_sym_RBRACE, + ACTIONS(72), 1, + sym_identifier, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(78), 1, + aux_sym_numeric_lit_token1, + ACTIONS(81), 1, + aux_sym_numeric_lit_token2, + ACTIONS(87), 1, + sym_null_lit, + ACTIONS(90), 1, + anon_sym_COMMA, + ACTIONS(93), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_LT_LT, + ACTIONS(102), 1, + anon_sym_LT_LT_DASH, + ACTIONS(105), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(40), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(500), 1, + sym_expression, + STATE(647), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(84), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(96), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(14), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 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, - [1049] = 29, - 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(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(100), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(77), 1, - sym_for_intro, - STATE(213), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(567), 1, - sym__tuple_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, - [1153] = 29, - 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(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(102), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(57), 1, - sym_for_intro, - STATE(317), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(578), 1, - sym__tuple_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, - [1257] = 29, - 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(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(104), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(55), 1, - sym_for_intro, - STATE(165), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(595), 1, - sym__tuple_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, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13614,70 +13633,70 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1361] = 28, - ACTIONS(11), 1, + ACTIONS(13), 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, + 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(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(194), 1, + STATE(196), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(585), 1, + STATE(615), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13687,68 +13706,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1462] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(106), 1, + ACTIONS(108), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(297), 1, + STATE(191), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(597), 1, + STATE(585), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13758,68 +13777,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1560] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(108), 1, + ACTIONS(110), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(143), 1, + STATE(169), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(599), 1, + STATE(631), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13829,68 +13848,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1658] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(110), 1, + ACTIONS(112), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(191), 1, + STATE(286), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(554), 1, + STATE(576), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13900,68 +13919,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1756] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(112), 1, + ACTIONS(114), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(339), 1, + STATE(268), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(603), 1, + STATE(597), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13971,68 +13990,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1854] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(114), 1, + ACTIONS(116), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(267), 1, + STATE(302), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(580), 1, + STATE(574), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14042,66 +14061,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1952] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(130), 1, - sym_strip_marker, ACTIONS(132), 1, - sym_quoted_template_start, + sym_strip_marker, ACTIONS(134), 1, + sym_quoted_template_start, + ACTIONS(136), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(534), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(538), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14111,66 +14130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2047] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(96), 1, + ACTIONS(53), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(350), 1, + STATE(351), 1, sym_object_elem, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14180,66 +14199,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2142] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(136), 1, - sym_strip_marker, ACTIONS(138), 1, + sym_strip_marker, + ACTIONS(140), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(497), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(541), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14249,66 +14268,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2237] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(140), 1, - sym_strip_marker, ACTIONS(142), 1, + sym_strip_marker, + ACTIONS(144), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(545), 1, + STATE(521), 1, sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14318,66 +14337,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2332] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(144), 1, - sym_strip_marker, ACTIONS(146), 1, + sym_strip_marker, + ACTIONS(148), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(503), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(552), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14387,66 +14406,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2427] = 26, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(118), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(120), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(122), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(132), 1, + 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(148), 1, - sym_strip_marker, ACTIONS(150), 1, - sym_template_interpolation_end, - STATE(6), 1, + anon_sym_RBRACE, + STATE(2), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(521), 1, - sym_expression, - STATE(548), 1, + 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(124), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14456,66 +14475,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2522] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, ACTIONS(152), 1, sym_strip_marker, ACTIONS(154), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(514), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(549), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14525,66 +14544,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2617] = 26, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + 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(156), 1, - anon_sym_RBRACE, - STATE(4), 1, + sym_strip_marker, + ACTIONS(158), 1, + sym_template_interpolation_end, + STATE(5), 1, sym_object_start, - STATE(12), 1, + STATE(11), 1, sym_tuple_start, - STATE(350), 1, - sym_object_elem, - STATE(403), 1, - sym_conditional, - STATE(533), 1, + STATE(523), 1, sym_expression, - STATE(648), 1, + STATE(532), 1, + sym_conditional, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(336), 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, + STATE(341), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + 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(129), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14597,17 +14616,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(160), 2, + STATE(144), 2, sym_new_index, sym_legacy_index, - STATE(170), 2, + STATE(164), 2, sym_attr_splat, sym_full_splat, - STATE(169), 3, + STATE(166), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 12, + ACTIONS(162), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14620,7 +14639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(158), 20, + ACTIONS(160), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14642,5023 +14661,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [2766] = 25, - ACTIONS(11), 1, + ACTIONS(13), 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(162), 1, - anon_sym_RPAREN, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [2858] = 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, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, ACTIONS(164), 1, anon_sym_RPAREN, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [2950] = 8, - ACTIONS(172), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(170), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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, - 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_DASH, - anon_sym_PLUS, - 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, - anon_sym_LT_LT, - ACTIONS(166), 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, - [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, - 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(198), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [3490] = 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(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(350), 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, - 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, - [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(429), 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, - 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, + STATE(2), 1, sym_object_start, STATE(10), 1, sym_tuple_start, - STATE(515), 1, - sym_expression, - STATE(549), 1, + STATE(403), 1, sym_conditional, - 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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [4119] = 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(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(511), 1, + STATE(434), 1, sym_expression, - STATE(548), 1, - sym_conditional, STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, - [4208] = 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(589), 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, + ACTIONS(33), 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, + sym_for_tuple_expr, + sym_for_object_expr, 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, - [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(412), 1, - sym_expression, - STATE(422), 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(422), 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(409), 1, - sym_expression, - STATE(422), 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(421), 1, - sym_expression, - STATE(422), 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(422), 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(422), 1, - sym_conditional, - STATE(425), 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(413), 1, - sym_expression, - STATE(422), 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(422), 1, - sym_conditional, - STATE(424), 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, - [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(346), 1, - sym_expression, - STATE(347), 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(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, - 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(524), 1, - sym_expression, - STATE(549), 1, - sym_conditional, - 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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [5543] = 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(593), 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, - [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(422), 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(429), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(422), 1, - sym_conditional, - STATE(430), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - 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_conditional, - STATE(348), 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(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(422), 1, - sym_conditional, - STATE(428), 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, - [6878] = 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(596), 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, - [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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - 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(591), 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, - [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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(160), 2, - sym_new_index, - sym_legacy_index, - STATE(90), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(252), 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(250), 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(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(256), 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(254), 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(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(92), 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, - [8019] = 7, - ACTIONS(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 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, - [8073] = 7, - ACTIONS(270), 1, - anon_sym_LBRACK, - ACTIONS(273), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 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, - [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, - 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(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(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(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, - [8293] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8376] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8459] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8542] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(218), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8625] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(236), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8708] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, - [8791] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(226), 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(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(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(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(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, - [8957] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(216), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [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(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(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, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -19674,59 +14727,125 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9538] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, + [2858] = 18, + ACTIONS(170), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(172), 1, + anon_sym_DOT, + ACTIONS(174), 1, + anon_sym_DOT_STAR, + ACTIONS(176), 1, + anon_sym_LBRACK_STAR_RBRACK, + ACTIONS(182), 1, + anon_sym_SLASH, + ACTIONS(190), 1, + anon_sym_AMP_AMP, + ACTIONS(192), 1, + anon_sym_PIPE_PIPE, + 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(168), 7, 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, + anon_sym_true, + anon_sym_false, sym_null_lit, - ACTIONS(232), 1, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(166), 8, sym_quoted_template_start, - STATE(3), 1, + 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, + [2936] = 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(194), 1, + anon_sym_RPAREN, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19735,59 +14854,376 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9621] = 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, + [3028] = 8, + ACTIONS(182), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + 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, - 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, + anon_sym_true, + anon_sym_false, sym_null_lit, - ACTIONS(232), 1, + 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, - STATE(3), 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_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, + 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), 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, + [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, + 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, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + 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, + 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(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(183), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19796,59 +15232,65 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9704] = 22, - ACTIONS(11), 1, + [3490] = 25, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + 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(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(178), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19857,59 +15299,65 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9787] = 22, - ACTIONS(11), 1, + [3582] = 25, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + ACTIONS(202), 1, + anon_sym_RBRACK, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(182), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19918,40 +15366,434 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9870] = 22, - ACTIONS(11), 1, + [3674] = 24, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(118), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(120), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(134), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(9), 1, + STATE(11), 1, sym_tuple_start, - STATE(665), 1, + STATE(520), 1, + sym_expression, + STATE(532), 1, + sym_conditional, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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, @@ -19979,40 +15821,4217 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9953] = 22, - ACTIONS(11), 1, + [4297] = 24, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(557), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(346), 1, + sym_expression, + STATE(347), 1, + sym_conditional, + 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, + [5365] = 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(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, + sym_conditional, + STATE(592), 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, + [7145] = 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(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, + 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(425), 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, + [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, + 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, + [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, + 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, + [8293] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(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, + [8376] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(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, + [8459] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(216), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8542] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(218), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8625] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(235), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8708] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(226), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8791] = 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(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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(236), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9372] = 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(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, + 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, + 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(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, @@ -20041,39 +20060,39 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10036] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, ACTIONS(220), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(222), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(224), 1, + aux_sym_numeric_lit_token1, + ACTIONS(226), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(230), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(234), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym_object_start, - STATE(9), 1, + STATE(13), 1, sym_tuple_start, - STATE(665), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, STATE(254), 2, @@ -20092,7 +20111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(176), 8, + STATE(181), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20102,58 +20121,58 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10119] = 22, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + 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(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(648), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(135), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20163,58 +20182,58 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10202] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(220), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(222), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(226), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(230), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(234), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(4), 1, sym_object_start, - STATE(10), 1, + STATE(13), 1, sym_tuple_start, - STATE(670), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(232), 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(302), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(306), 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(224), 8, + STATE(178), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20224,54 +20243,115 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10285] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(118), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(120), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(134), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(14), 1, + STATE(11), 1, sym_tuple_start, - STATE(667), 1, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(152), 2, + STATE(336), 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, + STATE(341), 2, sym_quoted_template, sym_heredoc_template, - STATE(151), 3, + 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, + sym_quoted_template, + sym_heredoc_template, + STATE(153), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20284,418 +20364,52 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [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(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(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, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, + ACTIONS(39), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(14), 1, + STATE(10), 1, sym_tuple_start, - STATE(667), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(25), 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, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 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, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -20711,52 +20425,235 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10949] = 22, - ACTIONS(11), 1, + [10534] = 22, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + 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(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, + [10617] = 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, + 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(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, + [10700] = 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, + 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(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, + [10783] = 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, + sym_unary_operation, + sym_binary_operation, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -20772,52 +20669,505 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [11032] = 18, - ACTIONS(184), 1, - anon_sym_EQ, - ACTIONS(276), 1, + [10866] = 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(278), 1, - anon_sym_DOT, - ACTIONS(280), 1, - anon_sym_DOT_STAR, + 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, + 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(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, + [10949] = 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, + 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(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, + [11032] = 13, ACTIONS(282), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(288), 1, anon_sym_SLASH, - ACTIONS(296), 1, + 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, + ACTIONS(294), 1, + anon_sym_DOT, + 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, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(280), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_GT, + anon_sym_LT, ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(294), 2, + ACTIONS(288), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(204), 3, + STATE(215), 2, + sym_attr_splat, + sym_full_splat, + STATE(211), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(182), 10, + ACTIONS(166), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20828,358 +21178,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [11106] = 13, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(296), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11170] = 12, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11232] = 11, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11292] = 9, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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), 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, - [11348] = 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, - 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, - ACTIONS(160), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 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, [11502] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(138), 3, + STATE(139), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(252), 4, + ACTIONS(254), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(250), 22, + ACTIONS(252), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21203,26 +21222,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11552] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(142), 3, + STATE(140), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(256), 4, + ACTIONS(262), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(254), 22, + ACTIONS(260), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21246,26 +21265,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11602] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(140), 3, + STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(260), 4, + ACTIONS(258), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(258), 22, + ACTIONS(256), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21289,26 +21308,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11652] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(264), 4, + ACTIONS(266), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(262), 22, + ACTIONS(264), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21332,14 +21351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11702] = 5, - ACTIONS(304), 1, + ACTIONS(306), 1, anon_sym_LPAREN, STATE(17), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 12, + ACTIONS(304), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21352,7 +21371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(300), 19, + ACTIONS(302), 19, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21373,26 +21392,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [11748] = 7, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(311), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(268), 4, + ACTIONS(270), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(266), 22, + ACTIONS(268), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21419,7 +21438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 12, + ACTIONS(316), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21432,7 +21451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(312), 20, + ACTIONS(314), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21457,7 +21476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 12, + ACTIONS(320), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21470,7 +21489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(316), 20, + ACTIONS(318), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21495,7 +21514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 12, + ACTIONS(324), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21508,7 +21527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(320), 20, + ACTIONS(322), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21533,7 +21552,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 12, + ACTIONS(328), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21546,7 +21565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(324), 20, + ACTIONS(326), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21571,7 +21590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 12, + ACTIONS(332), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21584,7 +21603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(328), 20, + ACTIONS(330), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21609,7 +21628,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 12, + ACTIONS(336), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21622,7 +21641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(332), 20, + ACTIONS(334), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21647,7 +21666,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 12, + ACTIONS(340), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21660,7 +21679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(336), 20, + ACTIONS(338), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21685,7 +21704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 12, + ACTIONS(344), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21698,7 +21717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(340), 20, + ACTIONS(342), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21723,7 +21742,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 12, + ACTIONS(348), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21736,7 +21755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(344), 20, + ACTIONS(346), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21761,7 +21780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 12, + ACTIONS(352), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21774,7 +21793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(348), 20, + ACTIONS(350), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21799,7 +21818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 12, + ACTIONS(356), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21812,7 +21831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(352), 20, + ACTIONS(354), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21837,7 +21856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 12, + ACTIONS(360), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21850,7 +21869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(356), 20, + ACTIONS(358), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21875,7 +21894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 12, + ACTIONS(364), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21888,7 +21907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(360), 20, + ACTIONS(362), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21913,7 +21932,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 12, + ACTIONS(368), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21926,7 +21945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(364), 20, + ACTIONS(366), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21951,7 +21970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 12, + ACTIONS(372), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21964,7 +21983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(368), 20, + ACTIONS(370), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21989,7 +22008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 12, + ACTIONS(376), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22002,7 +22021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(372), 20, + ACTIONS(374), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22027,7 +22046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 12, + ACTIONS(380), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22040,7 +22059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(376), 20, + ACTIONS(378), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22065,7 +22084,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 12, + ACTIONS(384), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22078,7 +22097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(380), 20, + ACTIONS(382), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22103,7 +22122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 12, + ACTIONS(388), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22116,7 +22135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(384), 20, + ACTIONS(386), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22141,7 +22160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 12, + ACTIONS(392), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22154,7 +22173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(388), 20, + ACTIONS(390), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22179,7 +22198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 12, + ACTIONS(396), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22192,7 +22211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(392), 20, + ACTIONS(394), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22217,7 +22236,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 12, + ACTIONS(400), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22230,7 +22249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(396), 20, + ACTIONS(398), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22255,7 +22274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 12, + ACTIONS(404), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22268,7 +22287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(400), 20, + ACTIONS(402), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22293,7 +22312,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 12, + ACTIONS(408), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22306,7 +22325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(404), 20, + ACTIONS(406), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22331,7 +22350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 12, + ACTIONS(412), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22344,7 +22363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(408), 20, + ACTIONS(410), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22369,7 +22388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 12, + ACTIONS(416), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22382,7 +22401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(412), 20, + ACTIONS(414), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22407,7 +22426,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 12, + ACTIONS(420), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22420,7 +22439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(416), 20, + ACTIONS(418), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22445,7 +22464,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 12, + ACTIONS(424), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22458,7 +22477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(420), 20, + ACTIONS(422), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22483,7 +22502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 12, + ACTIONS(428), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22496,7 +22515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(424), 20, + ACTIONS(426), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22521,7 +22540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 12, + ACTIONS(432), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22534,7 +22553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(428), 20, + ACTIONS(430), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22559,7 +22578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 12, + ACTIONS(436), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22572,7 +22591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(432), 20, + ACTIONS(434), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22597,7 +22616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 12, + ACTIONS(440), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22610,7 +22629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(436), 20, + ACTIONS(438), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22632,21 +22651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [13110] = 5, - ACTIONS(440), 1, + ACTIONS(442), 1, anon_sym_LPAREN, - STATE(18), 1, + STATE(16), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 6, + ACTIONS(304), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 22, + ACTIONS(302), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22670,245 +22689,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [13153] = 13, - ACTIONS(446), 1, + ACTIONS(448), 1, anon_sym_SLASH, - ACTIONS(454), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(452), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_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), 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, - [13211] = 12, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(452), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_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), 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, - [13267] = 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(168), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(166), 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, - [13311] = 17, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(454), 1, - anon_sym_AMP_AMP, ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_DOT, - ACTIONS(460), 1, - anon_sym_DOT_STAR, - ACTIONS(462), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(464), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(442), 2, + ACTIONS(198), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(444), 2, + ACTIONS(446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(448), 2, + ACTIONS(450), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(450), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(452), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(182), 5, + ACTIONS(196), 8, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [13377] = 11, - ACTIONS(446), 1, + 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, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(442), 2, + ACTIONS(444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(444), 2, + ACTIONS(446), 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(158), 17, + 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, anon_sym_DOT_STAR, @@ -22916,44 +22813,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13475] = 9, - ACTIONS(446), 1, + [13311] = 11, + ACTIONS(448), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, + 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, - STATE(261), 2, + 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(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 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, + ACTIONS(196), 11, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22961,6 +22854,132 @@ 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, + [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, + 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, + 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(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, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, + sym_attr_splat, + sym_full_splat, + STATE(261), 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), 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, @@ -22968,30 +22987,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [13525] = 8, - ACTIONS(446), 1, + ACTIONS(448), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(444), 2, + ACTIONS(446), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(166), 15, + ACTIONS(196), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -23011,14 +23030,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 6, + ACTIONS(396), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 22, + ACTIONS(394), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23045,14 +23064,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 6, + ACTIONS(340), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 22, + ACTIONS(338), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23079,14 +23098,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 6, + ACTIONS(368), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 22, + ACTIONS(366), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23113,14 +23132,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 6, + ACTIONS(324), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 22, + ACTIONS(322), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23147,14 +23166,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 6, + ACTIONS(332), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 22, + ACTIONS(330), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23181,14 +23200,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 6, + ACTIONS(336), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 22, + ACTIONS(334), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23215,14 +23234,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 6, + ACTIONS(440), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 22, + ACTIONS(438), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23249,14 +23268,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 6, + ACTIONS(420), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 22, + ACTIONS(418), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23283,14 +23302,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 6, + ACTIONS(356), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 22, + ACTIONS(354), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23317,14 +23336,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 6, + ACTIONS(360), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 22, + ACTIONS(358), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23351,14 +23370,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 6, + ACTIONS(316), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 22, + ACTIONS(314), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23385,14 +23404,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 6, + ACTIONS(372), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 22, + ACTIONS(370), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23419,14 +23438,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 6, + ACTIONS(364), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 22, + ACTIONS(362), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23453,14 +23472,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 6, + ACTIONS(376), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 22, + ACTIONS(374), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23487,14 +23506,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 6, + ACTIONS(348), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 22, + ACTIONS(346), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23521,14 +23540,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 6, + ACTIONS(320), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 22, + ACTIONS(318), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23555,14 +23574,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 6, + ACTIONS(436), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 22, + ACTIONS(434), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23589,14 +23608,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 6, + ACTIONS(384), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 22, + ACTIONS(382), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23623,14 +23642,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 6, + ACTIONS(344), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 22, + ACTIONS(342), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23657,14 +23676,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 6, + ACTIONS(428), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 22, + ACTIONS(426), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23691,14 +23710,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 6, + ACTIONS(392), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 22, + ACTIONS(390), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23725,14 +23744,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 6, + ACTIONS(412), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 22, + ACTIONS(410), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23759,14 +23778,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 6, + ACTIONS(380), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 22, + ACTIONS(378), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23793,14 +23812,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 6, + ACTIONS(388), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 22, + ACTIONS(386), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23827,14 +23846,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 6, + ACTIONS(432), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 22, + ACTIONS(430), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23861,14 +23880,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 6, + ACTIONS(328), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 22, + ACTIONS(326), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23895,14 +23914,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 6, + ACTIONS(424), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 22, + ACTIONS(422), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23929,14 +23948,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 6, + ACTIONS(408), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 22, + ACTIONS(406), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23963,14 +23982,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 6, + ACTIONS(404), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 22, + ACTIONS(402), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23997,14 +24016,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 6, + ACTIONS(416), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 22, + ACTIONS(414), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24031,14 +24050,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 6, + ACTIONS(352), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 22, + ACTIONS(350), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24065,14 +24084,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 6, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 22, + ACTIONS(398), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24095,193 +24114,38 @@ static const uint16_t ts_small_parse_table[] = { 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(289), 2, - sym_new_index, - sym_legacy_index, - STATE(290), 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_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, - [14799] = 9, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - 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, - 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, - [14889] = 17, + [14757] = 9, ACTIONS(472), 1, - anon_sym_LBRACK, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_DOT_STAR, - ACTIONS(478), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(484), 1, anon_sym_SLASH, - ACTIONS(492), 1, - anon_sym_AMP_AMP, - ACTIONS(494), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(480), 2, + ACTIONS(468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(470), 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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(182), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(338), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - [14953] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 5, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(158), 15, - sym_template_interpolation_end, + ACTIONS(196), 11, + 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, @@ -24289,26 +24153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14995] = 7, - ACTIONS(496), 1, + [14805] = 7, + ACTIONS(458), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(460), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(258), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(221), 3, + STATE(219), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 17, + ACTIONS(256), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24326,65 +24190,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15039] = 17, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(502), 1, + [14849] = 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(198), 5, anon_sym_LBRACK, - ACTIONS(504), 1, anon_sym_DOT, - ACTIONS(506), 1, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 15, + sym_template_directive_end, anon_sym_DOT_STAR, - ACTIONS(508), 1, anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(516), 1, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_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(518), 1, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14891] = 7, + 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, + 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, + 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(466), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(468), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(510), 2, + ACTIONS(494), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 2, + ACTIONS(496), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(514), 2, + ACTIONS(498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(182), 3, - sym_template_directive_end, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(166), 3, + sym_template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - STATE(290), 3, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - [15103] = 7, - ACTIONS(456), 1, + [14999] = 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(162), 5, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(160), 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, + [15041] = 17, + ACTIONS(472), 1, + anon_sym_SLASH, + ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_DOT_STAR, + 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(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - ACTIONS(260), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -24392,7 +24412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(258), 17, + ACTIONS(260), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24410,249 +24430,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15147] = 13, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(516), 1, - anon_sym_AMP_AMP, + [15149] = 7, + ACTIONS(458), 1, + anon_sym_LBRACK, + ACTIONS(460), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - 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(289), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(290), 3, - sym_index, - sym_get_attr, - sym_splat, - 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, + ACTIONS(254), 3, anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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(289), 2, - sym_new_index, - sym_legacy_index, - STATE(290), 3, + STATE(217), 3, sym_index, sym_get_attr, - sym_splat, - ACTIONS(166), 7, - sym_template_directive_end, + 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, - sym_strip_marker, - [15257] = 13, - ACTIONS(484), 1, - anon_sym_SLASH, + [15193] = 13, ACTIONS(492), 1, + anon_sym_SLASH, + ACTIONS(500), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(480), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(486), 2, + ACTIONS(494), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(488), 2, + ACTIONS(496), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(490), 2, + ACTIONS(498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 6, + 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, - [15313] = 12, - ACTIONS(484), 1, + [15249] = 13, + ACTIONS(472), 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_EQ_EQ, - anon_sym_BANG_EQ, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 7, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, + ACTIONS(518), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15367] = 11, - ACTIONS(470), 1, - anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(466), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(510), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(512), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(514), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + ACTIONS(516), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(291), 2, sym_new_index, sym_legacy_index, - STATE(290), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 9, + ACTIONS(196), 6, 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, - [15419] = 11, - ACTIONS(484), 1, + [15305] = 12, + ACTIONS(492), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 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_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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + ACTIONS(498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 9, + 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, @@ -24662,34 +24636,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15471] = 9, - ACTIONS(484), 1, + [15411] = 9, + ACTIONS(492), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(480), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(166), 11, + ACTIONS(196), 11, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24701,216 +24675,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15519] = 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(252), 3, + [15459] = 12, + ACTIONS(472), 1, anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(235), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [15563] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(168), 5, + ACTIONS(198), 2, 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, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - 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, - [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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 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_DASH, + anon_sym_PLUS, + ACTIONS(470), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + 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(290), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + 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(166), 13, + 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, @@ -24924,18 +24907,54 @@ static const uint16_t ts_small_parse_table[] = { 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(472), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(264), 3, + ACTIONS(266), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -24943,7 +24962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(262), 15, + ACTIONS(264), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24960,60 +24979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15827] = 7, - ACTIONS(472), 1, + ACTIONS(522), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(525), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(256), 3, + ACTIONS(270), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(241), 3, + STATE(238), 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, + ACTIONS(268), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25029,26 +25013,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15911] = 7, - ACTIONS(520), 1, + [15869] = 7, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(523), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(258), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(241), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, + ACTIONS(256), 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, + [15911] = 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(254), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(245), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(252), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25065,17 +25084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15953] = 7, - ACTIONS(526), 1, + ACTIONS(528), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(531), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(270), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25083,7 +25102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, + ACTIONS(268), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25100,26 +25119,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15995] = 7, - ACTIONS(502), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(504), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(264), 3, + ACTIONS(254), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(239), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(262), 15, - sym_template_directive_end, + ACTIONS(252), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25135,25 +25154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16037] = 7, - ACTIONS(472), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(238), 3, + STATE(237), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(260), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25170,17 +25189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16079] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25188,7 +25207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(260), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25205,26 +25224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16121] = 7, - ACTIONS(472), 1, + ACTIONS(504), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(260), 3, + ACTIONS(258), 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(258), 15, - sym_template_interpolation_end, + ACTIONS(256), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25240,25 +25259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16163] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(256), 3, + ACTIONS(266), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(238), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(254), 15, + ACTIONS(264), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25275,20 +25294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16205] = 5, - ACTIONS(532), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - STATE(20), 1, + STATE(19), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(304), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 17, + ACTIONS(302), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25310,13 +25329,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 17, + ACTIONS(410), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25338,13 +25357,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 17, + ACTIONS(378), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25362,21 +25381,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16304] = 5, - ACTIONS(534), 1, - anon_sym_LPAREN, - STATE(16), 1, - sym__function_call_start, + [16304] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 15, + 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, + 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), 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(384), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(382), 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(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, @@ -25392,269 +25663,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [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, - ACTIONS(418), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 17, + ACTIONS(394), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25676,13 +25695,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 17, + ACTIONS(406), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25704,13 +25723,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 17, + ACTIONS(318), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25729,20 +25748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [16711] = 5, - ACTIONS(536), 1, + ACTIONS(538), 1, anon_sym_LPAREN, - STATE(19), 1, + STATE(18), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(304), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 15, + ACTIONS(302), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25762,13 +25781,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 17, + ACTIONS(398), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25790,13 +25809,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 17, + ACTIONS(402), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25818,13 +25837,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 17, + ACTIONS(426), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25846,13 +25865,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 17, + ACTIONS(314), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25874,13 +25893,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 17, + ACTIONS(418), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25902,13 +25921,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 17, + ACTIONS(438), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25930,13 +25949,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 17, + ACTIONS(322), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25958,13 +25977,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 17, + ACTIONS(366), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25986,13 +26005,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 17, + ACTIONS(434), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26014,13 +26033,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 17, + ACTIONS(430), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26042,13 +26061,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 17, + ACTIONS(422), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26070,13 +26089,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 17, + ACTIONS(414), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26098,13 +26117,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 17, + ACTIONS(386), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26126,13 +26145,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 17, + ACTIONS(342), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26154,13 +26173,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 17, + ACTIONS(370), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26182,13 +26201,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 17, + ACTIONS(350), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26210,13 +26229,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 17, + ACTIONS(346), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26238,13 +26257,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 17, + ACTIONS(338), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26266,13 +26285,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(392), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 15, + ACTIONS(390), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26292,13 +26311,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 15, + ACTIONS(318), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26318,13 +26337,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 15, + ACTIONS(314), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26344,13 +26363,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 15, + ACTIONS(406), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26370,14 +26389,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 15, - sym_template_directive_end, + ACTIONS(418), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26396,13 +26415,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(370), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26422,14 +26441,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 15, - sym_template_directive_end, + ACTIONS(438), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26448,14 +26467,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 15, - sym_template_directive_end, + ACTIONS(322), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26474,14 +26493,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 15, - sym_template_directive_end, + ACTIONS(366), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26500,13 +26519,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 15, + ACTIONS(318), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26526,13 +26545,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 15, + ACTIONS(398), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26552,14 +26571,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 15, - sym_template_interpolation_end, + ACTIONS(402), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26578,13 +26597,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 15, + ACTIONS(410), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26604,14 +26623,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 15, - sym_template_interpolation_end, + ACTIONS(426), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26630,14 +26649,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 15, - sym_template_directive_end, + ACTIONS(434), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26656,14 +26675,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 15, - sym_template_directive_end, + ACTIONS(430), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26682,13 +26701,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 15, + ACTIONS(314), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26708,13 +26727,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(364), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 15, + ACTIONS(362), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26734,14 +26753,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(360), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 15, - sym_template_interpolation_end, + ACTIONS(358), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26760,13 +26779,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 15, + ACTIONS(422), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26786,13 +26805,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, + ACTIONS(418), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26812,13 +26831,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 15, + ACTIONS(414), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26838,13 +26857,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 15, + ACTIONS(438), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26864,13 +26883,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 15, + ACTIONS(386), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26890,13 +26909,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, + ACTIONS(378), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26916,14 +26935,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, - sym_template_directive_end, + ACTIONS(378), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26942,14 +26961,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 15, - sym_template_directive_end, + ACTIONS(426), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26968,13 +26987,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(364), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 15, + ACTIONS(362), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26994,13 +27013,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 15, + ACTIONS(322), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27020,14 +27039,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 15, - sym_template_interpolation_end, + ACTIONS(366), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27046,14 +27065,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 15, - sym_template_directive_end, + ACTIONS(410), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27072,14 +27091,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 15, - sym_template_directive_end, + ACTIONS(370), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27098,13 +27117,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 15, + ACTIONS(350), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27124,14 +27143,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 15, - sym_template_directive_end, + ACTIONS(402), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27150,14 +27169,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 15, - sym_template_directive_end, + ACTIONS(398), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27176,14 +27195,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 15, - sym_template_interpolation_end, + ACTIONS(394), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27202,13 +27221,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 15, + ACTIONS(406), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27228,14 +27247,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 15, - sym_template_interpolation_end, + ACTIONS(346), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27254,13 +27273,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 15, + ACTIONS(350), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27280,13 +27299,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(384), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 15, + ACTIONS(382), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27306,14 +27325,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, - sym_template_interpolation_end, + ACTIONS(434), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27332,14 +27351,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 15, - sym_template_interpolation_end, + ACTIONS(326), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27358,13 +27377,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(342), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27384,13 +27403,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 15, + ACTIONS(430), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27410,14 +27429,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 15, - sym_template_directive_end, + ACTIONS(338), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27436,13 +27455,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 15, + ACTIONS(342), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27462,14 +27481,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, - sym_template_directive_end, + ACTIONS(326), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27488,13 +27507,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 5, + ACTIONS(332), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 15, + ACTIONS(330), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27514,14 +27533,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 15, - sym_template_interpolation_end, + ACTIONS(422), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27540,13 +27559,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(414), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27566,14 +27585,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 15, - sym_template_interpolation_end, + ACTIONS(386), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27592,14 +27611,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 5, + ACTIONS(376), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 15, - sym_template_interpolation_end, + ACTIONS(374), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27618,13 +27637,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 15, + ACTIONS(346), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27644,13 +27663,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(336), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 15, + ACTIONS(334), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27670,13 +27689,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 5, + ACTIONS(360), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 15, + ACTIONS(358), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27696,13 +27715,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(356), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, + ACTIONS(354), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27722,14 +27741,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 5, + ACTIONS(332), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 15, - sym_template_interpolation_end, + ACTIONS(330), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27748,13 +27767,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 15, + ACTIONS(394), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27774,14 +27793,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(336), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, - sym_template_interpolation_end, + ACTIONS(334), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27800,13 +27819,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(392), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, + ACTIONS(390), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27826,14 +27845,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 15, - sym_template_interpolation_end, + ACTIONS(338), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27852,13 +27871,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(384), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 15, + ACTIONS(382), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27878,13 +27897,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(356), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 15, + ACTIONS(354), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27904,13 +27923,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(376), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(374), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27927,19 +27946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [19160] = 4, - ACTIONS(542), 1, + ACTIONS(544), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(540), 6, + ACTIONS(542), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(538), 10, + ACTIONS(540), 10, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27954,14 +27973,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(184), 6, + ACTIONS(168), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(182), 11, + ACTIONS(166), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27977,14 +27996,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(546), 6, + ACTIONS(548), 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(546), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28000,7 +28019,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(550), 7, + ACTIONS(552), 7, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -28008,39 +28027,17 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, anon_sym_for, anon_sym_LT_LT, - ACTIONS(548), 9, + 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, [19265] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(552), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(50), 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, - [19290] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -28055,10 +28052,32 @@ 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, + [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, @@ -28066,14 +28085,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(550), 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(548), 9, + ACTIONS(554), 9, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28084,94 +28103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LT_LT_DASH, [19339] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, ACTIONS(560), 1, - sym_template_interpolation_start, + sym__template_literal_chunk, ACTIONS(562), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(376), 1, - sym_template_else_intro, - STATE(389), 1, - sym_template_for_start, - 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(360), 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, - aux_sym_numeric_lit_token2, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19401] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(570), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(568), 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, - [19424] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(572), 1, + ACTIONS(564), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, STATE(381), 1, - sym_template_else_intro, - STATE(389), 1, sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(490), 1, + STATE(387), 1, + sym_template_else_intro, + STATE(458), 1, sym_template_if_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -28179,27 +28130,27 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [19463] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19378] = 11, ACTIONS(560), 1, + sym__template_literal_chunk, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(572), 1, + ACTIONS(566), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(382), 1, - sym_template_else_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(477), 1, + STATE(396), 1, + sym_template_else_intro, + STATE(474), 1, sym_template_if_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(356), 4, @@ -28207,83 +28158,55 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [19502] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19417] = 11, ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(574), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(392), 1, - sym_template_else_intro, - 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, - [19541] = 11, - ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(574), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(394), 1, - sym_template_else_intro, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(528), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(358), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19580] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, ACTIONS(562), 1, + sym_template_interpolation_start, + ACTIONS(568), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(373), 1, + STATE(363), 1, sym_template_else_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(436), 1, + STATE(494), 1, + aux_sym_template_literal_repeat1, + STATE(547), 1, sym_template_if_end, - STATE(445), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(555), 2, + sym_template_for, + sym_template_if, + STATE(357), 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(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -28291,834 +28214,121 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(572), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(570), 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, + [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, + sym__template_literal_chunk, + ACTIONS(562), 1, + sym_template_interpolation_start, + ACTIONS(564), 1, + sym_template_directive_start, + STATE(355), 1, + sym_template_if_intro, + STATE(367), 1, + sym_template_else_intro, + STATE(381), 1, + sym_template_for_start, + STATE(489), 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(353), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, [19619] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, ACTIONS(578), 1, - sym_template_interpolation_start, + sym__template_literal_chunk, ACTIONS(580), 1, - sym_template_directive_start, + sym_template_interpolation_start, ACTIONS(582), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19655] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, sym_template_directive_start, ACTIONS(584), 1, sym_heredoc_identifier, - STATE(357), 1, + STATE(354), 1, sym_template_if_intro, - STATE(393), 1, + STATE(373), 1, sym_template_for_start, - STATE(417), 1, + STATE(428), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19691] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(586), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19727] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(363), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19763] = 10, - ACTIONS(590), 1, - sym__template_literal_chunk, - ACTIONS(593), 1, - sym_template_interpolation_start, - ACTIONS(596), 1, - sym_template_directive_start, - ACTIONS(599), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19799] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(601), 1, - sym_quoted_template_end, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19835] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(607), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(388), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19871] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [19907] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(611), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19943] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(613), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - 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(386), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [19981] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(615), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(369), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20017] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(443), 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, - [20053] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(372), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20089] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(619), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(439), 1, - sym_template_for_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, - [20125] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(621), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20161] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - 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(380), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20197] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(623), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, - STATE(487), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(452), 2, - sym_template_for, - sym_template_if, - STATE(375), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20235] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20271] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20307] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20343] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(378), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20379] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20415] = 10, - ACTIONS(596), 1, - sym_template_directive_start, - ACTIONS(599), 1, - sym_quoted_template_end, - ACTIONS(627), 1, - sym__template_literal_chunk, - ACTIONS(630), 1, - sym_template_interpolation_start, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20451] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(633), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, - STATE(441), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(452), 2, - sym_template_for, - sym_template_if, - STATE(387), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20489] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(635), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(362), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20525] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20561] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(639), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20597] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(641), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20633] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(643), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(539), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(391), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20669] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(645), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(361), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20705] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(643), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(498), 1, - sym_template_for_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, - [20741] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, + STATE(491), 2, sym_template_for, sym_template_if, STATE(368), 4, @@ -29126,103 +28336,77 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20777] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(647), 1, + [19655] = 10, + ACTIONS(582), 1, sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(475), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(398), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20813] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(396), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20849] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(649), 1, + ACTIONS(586), 1, sym_quoted_template_end, - STATE(353), 1, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + STATE(360), 1, sym_template_if_intro, - STATE(399), 1, + STATE(389), 1, sym_template_for_start, - STATE(423), 1, + STATE(421), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + STATE(472), 2, sym_template_for, sym_template_if, - STATE(383), 4, + STATE(379), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20885] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19691] = 10, ACTIONS(560), 1, + sym__template_literal_chunk, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(609), 1, + ACTIONS(592), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, + STATE(494), 1, aux_sym_template_literal_repeat1, - STATE(510), 1, + STATE(535), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + 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, @@ -29230,52 +28414,914 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20921] = 11, - ACTIONS(580), 1, + [19763] = 11, + ACTIONS(582), 1, sym_template_directive_start, - ACTIONS(603), 1, + ACTIONS(588), 1, sym__template_literal_chunk, - ACTIONS(605), 1, + ACTIONS(590), 1, sym_template_interpolation_start, - ACTIONS(651), 1, + ACTIONS(596), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(360), 1, sym_template_if_intro, - STATE(399), 1, + STATE(389), 1, sym_template_for_start, - STATE(423), 1, + STATE(421), 1, aux_sym_template_literal_repeat1, - STATE(479), 1, + STATE(457), 1, sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + 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, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20381] = 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(392), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20417] = 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(527), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(555), 2, + sym_template_for, + sym_template_if, + STATE(369), 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, + sym_template_directive_start, + ACTIONS(639), 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(394), 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, + sym_template_directive_start, + ACTIONS(641), 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(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20525] = 10, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(643), 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, + [20561] = 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(371), 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, + sym__template_literal_chunk, + ACTIONS(590), 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, + sym_template_directive_start, + STATE(355), 1, + sym_template_if_intro, + STATE(381), 1, + sym_template_for_start, + STATE(484), 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(376), 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, + 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, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(647), 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(444), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(472), 2, + sym_template_for, + sym_template_if, + STATE(386), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [20743] = 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(467), 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, + [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, - [20959] = 10, - ACTIONS(558), 1, + [20961] = 10, + ACTIONS(578), 1, sym__template_literal_chunk, - ACTIONS(560), 1, + ACTIONS(580), 1, sym_template_interpolation_start, - ACTIONS(647), 1, + ACTIONS(582), 1, sym_template_directive_start, - STATE(359), 1, + ACTIONS(655), 1, + sym_heredoc_identifier, + STATE(354), 1, sym_template_if_intro, - STATE(389), 1, + STATE(373), 1, sym_template_for_start, - STATE(445), 1, + STATE(428), 1, aux_sym_template_literal_repeat1, - STATE(491), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(491), 2, + sym_template_for, + sym_template_if, + STATE(370), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20997] = 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(536), 1, sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -29283,76 +29329,49 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20995] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, + [21033] = 10, ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(619), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(485), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(374), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [21031] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, sym__template_literal_chunk, - ACTIONS(605), 1, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(653), 1, - sym_quoted_template_end, - STATE(353), 1, + ACTIONS(615), 1, + sym_template_directive_start, + STATE(355), 1, sym_template_if_intro, - STATE(399), 1, + STATE(381), 1, sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, STATE(455), 1, - sym_template_literal, + sym_template_for_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + STATE(555), 2, sym_template_for, sym_template_if, - STATE(395), 3, + STATE(401), 4, aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, [21069] = 9, - ACTIONS(596), 1, + ACTIONS(606), 1, sym_template_directive_start, - ACTIONS(655), 1, + ACTIONS(657), 1, sym__template_literal_chunk, - ACTIONS(658), 1, + ACTIONS(660), 1, sym_template_interpolation_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, + STATE(494), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -29361,12 +29380,12 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation, sym_template_directive, [21102] = 3, - ACTIONS(546), 1, + ACTIONS(548), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(544), 10, + ACTIONS(546), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29378,12 +29397,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_QMARK, [21122] = 3, - ACTIONS(184), 1, + ACTIONS(168), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(182), 10, + ACTIONS(166), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29394,493 +29413,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [21142] = 6, + [21142] = 7, ACTIONS(9), 1, sym_identifier, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(494), 1, - sym_block_end, - STATE(590), 1, - sym_body, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(411), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21164] = 7, + ACTIONS(11), 1, + sym__shim, ACTIONS(663), 1, - anon_sym_EQ, - ACTIONS(665), 1, - anon_sym_LBRACE, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, - sym_quoted_template_start, - STATE(406), 1, - sym_block_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(407), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21188] = 6, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(661), 1, anon_sym_RBRACE, - STATE(502), 1, + STATE(501), 1, sym_block_end, - STATE(627), 1, + STATE(622), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(411), 3, + STATE(416), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21210] = 6, + [21167] = 7, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + sym__shim, + ACTIONS(663), 1, + anon_sym_RBRACE, + STATE(524), 1, + sym_block_end, + STATE(572), 1, + sym_body, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(416), 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, - sym_quoted_template_start, - ACTIONS(671), 1, sym_identifier, + ACTIONS(671), 1, + sym_quoted_template_start, STATE(404), 1, sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(418), 2, + STATE(409), 2, sym_string_lit, aux_sym_block_repeat1, - [21231] = 5, + [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, anon_sym_COMMA, - STATE(70), 1, + STATE(77), 1, sym__comma, - STATE(408), 1, + STATE(410), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(673), 3, + ACTIONS(683), 3, anon_sym_RPAREN, anon_sym_RBRACK, sym_ellipsis, - [21250] = 7, - ACTIONS(39), 1, + [21302] = 4, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(688), 2, + ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(680), 1, + 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(682), 1, + ACTIONS(699), 1, anon_sym_QMARK, - STATE(278), 1, + 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, + anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(701), 1, + sym_ellipsis, + STATE(214), 1, sym_object_end, - STATE(607), 1, + STATE(605), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21273] = 7, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(684), 1, - sym_ellipsis, - STATE(212), 1, - sym_object_end, - STATE(562), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21296] = 4, + [21365] = 4, ACTIONS(9), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(686), 2, + ACTIONS(703), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(416), 3, + STATE(411), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21313] = 7, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(688), 1, - sym_ellipsis, - STATE(326), 1, - sym_object_end, - STATE(579), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21336] = 7, + [21382] = 7, ACTIONS(45), 1, anon_sym_RBRACE, - ACTIONS(678), 1, + ACTIONS(673), 1, anon_sym_if, - ACTIONS(682), 1, + ACTIONS(677), 1, anon_sym_QMARK, - ACTIONS(690), 1, + ACTIONS(705), 1, sym_ellipsis, - STATE(283), 1, + STATE(320), 1, sym_object_end, STATE(584), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21359] = 7, - ACTIONS(692), 1, - anon_sym_RPAREN, - ACTIONS(694), 1, - anon_sym_COMMA, - ACTIONS(696), 1, - sym_ellipsis, - ACTIONS(698), 1, - anon_sym_QMARK, - STATE(30), 1, - sym__comma, - STATE(433), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21382] = 7, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - sym_ellipsis, - STATE(157), 1, - sym_object_end, - STATE(588), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, [21405] = 4, - ACTIONS(704), 1, + ACTIONS(9), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(702), 2, + ACTIONS(707), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(416), 3, + STATE(411), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21422] = 4, - ACTIONS(707), 1, - sym__template_literal_chunk, - STATE(434), 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, - [21438] = 5, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - sym_identifier, - ACTIONS(716), 1, - sym_quoted_template_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(418), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21456] = 6, - ACTIONS(94), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(282), 1, - sym_tuple_end, - STATE(586), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21476] = 6, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(719), 1, - anon_sym_COMMA, - ACTIONS(721), 1, - anon_sym_RBRACK, - STATE(39), 1, - sym__comma, - STATE(480), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21496] = 6, - ACTIONS(92), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(275), 1, - sym_tuple_end, - STATE(598), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21516] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(182), 5, + [21422] = 7, + ACTIONS(43), 1, anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(673), 1, anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(709), 1, sym_ellipsis, - anon_sym_QMARK, - [21528] = 4, - ACTIONS(723), 1, - sym__template_literal_chunk, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(709), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21544] = 6, - ACTIONS(102), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(303), 1, - sym_tuple_end, - STATE(609), 1, + STATE(279), 1, + sym_object_end, + STATE(589), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21564] = 6, - ACTIONS(104), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, + [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(682), 1, + 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(166), 1, + STATE(161), 1, sym_tuple_end, STATE(619), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21584] = 6, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(729), 1, - sym_strip_marker, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(733), 1, - anon_sym_endif, + [21502] = 4, + ACTIONS(723), 1, + sym__template_literal_chunk, + STATE(423), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21604] = 6, + 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_for, + anon_sym_COMMA, ACTIONS(727), 1, - anon_sym_if, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(735), 1, - sym_strip_marker, - ACTIONS(737), 1, - anon_sym_endif, + sym_ellipsis, + STATE(32), 1, + sym__comma, + STATE(410), 1, + aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21624] = 6, - ACTIONS(100), 1, + [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(678), 1, + ACTIONS(673), 1, anon_sym_if, - ACTIONS(682), 1, + ACTIONS(677), 1, anon_sym_QMARK, - STATE(208), 1, + STATE(305), 1, sym_tuple_end, - STATE(604), 1, + STATE(583), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21644] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, + [21574] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(673), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_ellipsis, - [21658] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 5, + ACTIONS(546), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [21670] = 6, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(739), 1, - sym_strip_marker, - ACTIONS(741), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21690] = 4, - ACTIONS(745), 1, - sym__template_literal_chunk, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(743), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21706] = 6, - ACTIONS(162), 1, - anon_sym_RPAREN, - ACTIONS(748), 1, + [21586] = 6, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(734), 1, anon_sym_COMMA, - ACTIONS(750), 1, - sym_ellipsis, - STATE(31), 1, + ACTIONS(736), 1, + anon_sym_RBRACK, + STATE(39), 1, sym__comma, - STATE(408), 1, + STATE(466), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21726] = 4, - ACTIONS(752), 1, + [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, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21626] = 4, + ACTIONS(738), 1, sym__template_literal_chunk, - STATE(434), 1, + STATE(436), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(743), 3, + ACTIONS(721), 3, sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [21742] = 5, - ACTIONS(725), 1, + [21642] = 6, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(737), 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, + ACTIONS(717), 1, anon_sym_else, - ACTIONS(769), 1, + ACTIONS(740), 1, + sym_strip_marker, + ACTIONS(742), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21804] = 2, + [21662] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(771), 4, + ACTIONS(166), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [21674] = 6, + ACTIONS(711), 1, + anon_sym_for, + ACTIONS(713), 1, + anon_sym_if, + ACTIONS(717), 1, + anon_sym_else, + ACTIONS(744), 1, + sym_strip_marker, + ACTIONS(746), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21694] = 6, + ACTIONS(65), 1, + anon_sym_RBRACK, + ACTIONS(673), 1, + anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + STATE(276), 1, + sym_tuple_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, + anon_sym_for, + ACTIONS(713), 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, - [21815] = 2, + [21810] = 5, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 1, + anon_sym_if, + ACTIONS(769), 1, + anon_sym_else, + ACTIONS(771), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21827] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -29889,58 +29917,56 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21826] = 3, - ACTIONS(775), 1, - sym_quoted_template_end, + [21838] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(777), 3, + ACTIONS(763), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21839] = 5, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, + sym_heredoc_identifier, + [21849] = 5, + ACTIONS(711), 1, + anon_sym_for, + ACTIONS(713), 1, anon_sym_if, - STATE(203), 1, - sym_object_end, - STATE(610), 1, - sym_for_cond, + ACTIONS(719), 1, + anon_sym_endif, + ACTIONS(775), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21856] = 2, + [21866] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(779), 4, + 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, - 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, + ACTIONS(781), 3, 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, + [21890] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(709), 2, + ACTIONS(783), 4, + sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21893] = 2, + sym_heredoc_identifier, + [21901] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -29949,49 +29975,58 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [21904] = 2, + [21912] = 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, + sym_heredoc_identifier, + [21923] = 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, + sym_heredoc_identifier, + [21934] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(767), 1, - anon_sym_else, - ACTIONS(791), 1, + ACTIONS(742), 1, anon_sym_endif, + ACTIONS(791), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21943] = 5, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - STATE(327), 1, - sym_object_end, - STATE(571), 1, - sym_for_cond, + [21951] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21960] = 2, + 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, @@ -30000,50 +30035,65 @@ static const uint16_t ts_small_parse_table[] = { 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(725), 1, - anon_sym_for, - ACTIONS(727), 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, + [21990] = 5, + ACTIONS(47), 1, anon_sym_RBRACE, - ACTIONS(678), 1, + ACTIONS(673), 1, anon_sym_if, - STATE(320), 1, + STATE(327), 1, sym_object_end, - STATE(573), 1, + STATE(563), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22016] = 3, - ACTIONS(799), 1, + [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, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(777), 3, + ACTIONS(781), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22029] = 2, + [22053] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(799), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22064] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30052,255 +30102,210 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22040] = 5, - ACTIONS(763), 1, - anon_sym_for, + [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, + [22086] = 5, ACTIONS(765), 1, - anon_sym_if, + anon_sym_for, ACTIONS(767), 1, + anon_sym_if, + ACTIONS(769), 1, anon_sym_else, - ACTIONS(803), 1, + ACTIONS(807), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22057] = 2, + [22103] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(805), 4, + ACTIONS(809), 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(678), 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(725), 1, + [22114] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(809), 1, - sym_strip_marker, + ACTIONS(746), 1, + anon_sym_endif, ACTIONS(811), 1, - anon_sym_endfor, + sym_strip_marker, 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(743), 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(678), 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(408), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22342] = 3, - ACTIONS(698), 1, + [22131] = 3, + ACTIONS(699), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(832), 3, + ACTIONS(813), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [22355] = 5, - ACTIONS(725), 1, + [22144] = 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, + [22155] = 5, + ACTIONS(200), 1, + anon_sym_RBRACK, + ACTIONS(815), 1, + anon_sym_COMMA, + STATE(41), 1, + sym__comma, + STATE(410), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22172] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(817), 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22200] = 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, + [22211] = 3, + ACTIONS(819), 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, + [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, + 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22287] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(827), 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, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, ACTIONS(834), 1, sym_strip_marker, @@ -30309,472 +30314,21 @@ static const uint16_t ts_small_parse_table[] = { 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(725), 1, + [22352] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(741), 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, + anon_sym_endfor, 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(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(733), 1, - anon_sym_endif, + [22369] = 3, 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, - ACTIONS(856), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22622] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(858), 3, - 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, - [22652] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(862), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [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, - [22676] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(820), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22686] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(818), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22696] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - [22706] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(864), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22716] = 4, - ACTIONS(709), 1, sym_quoted_template_end, - ACTIONS(866), 1, - sym__template_literal_chunk, - 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, - ACTIONS(872), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22758] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [22768] = 4, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 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, - ACTIONS(876), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22812] = 4, - ACTIONS(130), 1, - sym_strip_marker, - ACTIONS(134), 1, - sym_template_interpolation_end, - ACTIONS(848), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22826] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(880), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22860] = 4, - ACTIONS(743), 1, - sym_quoted_template_end, - ACTIONS(882), 1, - sym__template_literal_chunk, - STATE(525), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22874] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(779), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22884] = 3, - ACTIONS(698), 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(765), 1, - anon_sym_if, - 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(698), 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, @@ -30782,43 +30336,432 @@ static const uint16_t ts_small_parse_table[] = { 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, + [22382] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23004] = 4, - ACTIONS(763), 1, - anon_sym_for, - ACTIONS(765), 1, + 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, - ACTIONS(803), 1, + 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, + ACTIONS(844), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23018] = 2, + [22438] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(905), 3, + ACTIONS(777), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23028] = 2, + [22449] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(822), 3, + ACTIONS(829), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23038] = 2, + 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, + 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, + ACTIONS(848), 1, + sym__template_literal_chunk, + STATE(525), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22550] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 3, + sym_quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [22560] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(850), 3, + 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, + 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, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(856), 2, + anon_sym_EQ, + anon_sym_COLON, + [22610] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(858), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22620] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(860), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22630] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(862), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22640] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(866), 1, + sym_strip_marker, + ACTIONS(868), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22654] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(870), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [22666] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(872), 1, + sym_strip_marker, + ACTIONS(874), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22680] = 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, + sym_identifier, + [22700] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(878), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22710] = 4, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 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, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22758] = 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, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22778] = 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, + sym_identifier, + [22880] = 4, + ACTIONS(729), 1, + sym_quoted_template_end, + ACTIONS(896), 1, + sym__template_literal_chunk, + STATE(525), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22894] = 4, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 1, + anon_sym_if, + ACTIONS(844), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22908] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 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, @@ -30826,42 +30769,94 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23048] = 4, - ACTIONS(763), 1, + [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, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(907), 1, - anon_sym_endfor, + ACTIONS(901), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23062] = 2, + [22982] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(807), 3, + ACTIONS(166), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + [22992] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(799), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23072] = 2, + [23002] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(909), 3, + ACTIONS(773), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23082] = 2, + [23012] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(911), 3, + ACTIONS(801), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23092] = 4, - ACTIONS(848), 1, + [23022] = 4, + ACTIONS(884), 1, + anon_sym_QMARK, + ACTIONS(903), 1, + sym_strip_marker, + ACTIONS(905), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23036] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(907), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [23046] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(909), 1, + sym_strip_marker, + ACTIONS(911), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23060] = 4, + ACTIONS(884), 1, anon_sym_QMARK, ACTIONS(913), 1, sym_strip_marker, @@ -30870,67 +30865,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23106] = 4, - ACTIONS(868), 1, - anon_sym_QMARK, - ACTIONS(917), 1, - sym_strip_marker, - ACTIONS(919), 1, - sym_template_directive_end, + [23074] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23120] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(785), 3, + ACTIONS(917), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23130] = 2, + [23084] = 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(182), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [23150] = 2, + 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, - ts_builtin_sym_end, + sym__shim, anon_sym_RBRACE, sym_identifier, - [23160] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(923), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23170] = 4, - ACTIONS(868), 1, + [23104] = 4, + ACTIONS(864), 1, anon_sym_QMARK, - ACTIONS(925), 1, + ACTIONS(923), 1, sym_strip_marker, - ACTIONS(927), 1, + ACTIONS(925), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23184] = 2, + [23118] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(927), 3, + 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, + anon_sym_for, + ACTIONS(767), 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, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23200] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30938,15 +30969,25 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23194] = 3, - ACTIONS(931), 1, - anon_sym_RPAREN, - STATE(209), 1, - sym__function_call_end, + [23210] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23205] = 3, + 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, ACTIONS(933), 1, sym_strip_marker, ACTIONS(935), 1, @@ -30954,103 +30995,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23216] = 3, + [23244] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, ACTIONS(937), 1, - sym_identifier, - ACTIONS(939), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23227] = 3, - ACTIONS(941), 1, - sym_strip_marker, - ACTIONS(943), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23238] = 3, - ACTIONS(698), 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(271), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23271] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(951), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23282] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(203), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23293] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(953), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23304] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23315] = 3, + [23255] = 3, ACTIONS(45), 1, anon_sym_RBRACE, - STATE(334), 1, + STATE(326), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23326] = 3, - ACTIONS(698), 1, + [23266] = 3, + ACTIONS(939), 1, + sym_identifier, + ACTIONS(941), 1, + aux_sym_legacy_index_token1, + 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, + 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(957), 1, + 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, - [23337] = 3, - ACTIONS(100), 1, + [23376] = 3, + ACTIONS(59), 1, anon_sym_RBRACK, STATE(200), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23348] = 3, + [23387] = 3, + ACTIONS(955), 1, + sym_strip_marker, + ACTIONS(957), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23398] = 3, ACTIONS(959), 1, sym_strip_marker, ACTIONS(961), 1, @@ -31058,350 +31115,295 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [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, + [23409] = 3, + ACTIONS(663), 1, anon_sym_RBRACE, - sym_identifier, - [23379] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(328), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23390] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(969), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23401] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(322), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23412] = 3, - ACTIONS(971), 1, - sym_strip_marker, - ACTIONS(973), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23423] = 3, - ACTIONS(975), 1, - sym_strip_marker, - ACTIONS(977), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23434] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(979), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23445] = 3, - ACTIONS(981), 1, - sym_strip_marker, - ACTIONS(983), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23456] = 3, - ACTIONS(102), 1, - anon_sym_RBRACK, - STATE(293), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23467] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(327), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23478] = 3, - ACTIONS(985), 1, - anon_sym_RPAREN, - STATE(273), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23489] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(265), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23500] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(987), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23511] = 3, - ACTIONS(989), 1, - anon_sym_COMMA, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23522] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(320), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23533] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(205), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23544] = 3, - ACTIONS(94), 1, - anon_sym_RBRACK, - STATE(325), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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(698), 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, + STATE(539), 1, sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23599] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(995), 1, + [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, - [23610] = 3, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - aux_sym_legacy_index_token1, + [23442] = 3, + ACTIONS(57), 1, + anon_sym_RBRACK, + STATE(322), 1, + sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23621] = 3, - ACTIONS(698), 1, + [23453] = 3, + ACTIONS(965), 1, + anon_sym_RPAREN, + STATE(301), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23464] = 3, + ACTIONS(967), 1, + sym_strip_marker, + ACTIONS(969), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23475] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1001), 1, + ACTIONS(971), 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(698), 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(315), 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(698), 1, - anon_sym_QMARK, - ACTIONS(1009), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23709] = 3, - ACTIONS(698), 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(313), 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, + [23486] = 3, + ACTIONS(973), 1, sym_strip_marker, - ACTIONS(1017), 1, + ACTIONS(975), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23764] = 3, - ACTIONS(1019), 1, - sym_strip_marker, - ACTIONS(1021), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23775] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(279), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23786] = 3, - ACTIONS(1023), 1, - sym_strip_marker, - ACTIONS(1025), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [23497] = 3, + ACTIONS(15), 1, anon_sym_RBRACE, STATE(185), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23819] = 3, - ACTIONS(698), 1, + [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, anon_sym_QMARK, - ACTIONS(1027), 1, + ACTIONS(983), 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, - [23830] = 3, + [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, + anon_sym_COMMA, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23629] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(991), 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23651] = 3, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(997), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23662] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23673] = 3, + ACTIONS(63), 1, + anon_sym_RBRACK, + STATE(173), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23684] = 3, + ACTIONS(1001), 1, + anon_sym_RPAREN, + STATE(274), 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, + anon_sym_QMARK, + ACTIONS(1007), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23728] = 3, + ACTIONS(1009), 1, + sym_strip_marker, + ACTIONS(1011), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23739] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1013), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23750] = 3, + ACTIONS(699), 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, + 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, + ACTIONS(1021), 1, + sym_strip_marker, + ACTIONS(1023), 1, + sym_template_directive_end, + 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, @@ -31409,15 +31411,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23841] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(1033), 1, - anon_sym_COLON, + [23816] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(266), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23852] = 3, + [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, @@ -31425,415 +31459,431 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23863] = 3, - ACTIONS(39), 1, + [23882] = 3, + ACTIONS(15), 1, anon_sym_RBRACE, - STATE(280), 1, + STATE(203), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23874] = 3, + [23893] = 3, ACTIONS(1039), 1, - sym_identifier, + sym_strip_marker, ACTIONS(1041), 1, - aux_sym_legacy_index_token1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [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(698), 1, + [23904] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1047), 1, + ACTIONS(1043), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23907] = 3, - ACTIONS(104), 1, + [23915] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, anon_sym_RBRACK, - STATE(159), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23926] = 3, + ACTIONS(63), 1, + anon_sym_RBRACK, + STATE(157), 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, - [23940] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(285), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23951] = 3, - ACTIONS(1053), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23962] = 3, - ACTIONS(698), 1, + [23937] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1047), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23973] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(1059), 1, - anon_sym_RPAREN, + [23948] = 3, + ACTIONS(59), 1, + anon_sym_RBRACK, + STATE(195), 1, + sym_tuple_end, 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, + [23959] = 3, + ACTIONS(663), 1, anon_sym_RBRACE, - STATE(494), 1, + STATE(524), 1, sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24006] = 3, - ACTIONS(1065), 1, + [23970] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23981] = 3, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23992] = 3, + ACTIONS(1055), 1, anon_sym_COMMA, - ACTIONS(1067), 1, + ACTIONS(1057), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24017] = 3, - ACTIONS(698), 1, + [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(1069), 1, + ACTIONS(1059), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24028] = 3, - ACTIONS(698), 1, + [24025] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1071), 1, + ACTIONS(1061), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24039] = 3, - ACTIONS(698), 1, + [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, + anon_sym_RPAREN, + STATE(170), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24069] = 3, + ACTIONS(699), 1, anon_sym_QMARK, ACTIONS(1073), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24050] = 2, + [24080] = 3, ACTIONS(1075), 1, sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24058] = 2, 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, - [24066] = 2, + [24099] = 2, + ACTIONS(888), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24107] = 2, ACTIONS(1079), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24074] = 2, - ACTIONS(872), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24082] = 2, - ACTIONS(1081), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24090] = 2, - ACTIONS(1083), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [24115] = 2, + ACTIONS(1065), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24130] = 2, - ACTIONS(1031), 1, + [24123] = 2, + ACTIONS(1069), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24138] = 2, - ACTIONS(1089), 1, + [24131] = 2, + ACTIONS(1081), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24139] = 2, + ACTIONS(1083), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24146] = 2, - ACTIONS(935), 1, + [24147] = 2, + ACTIONS(979), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24154] = 2, - ACTIONS(1025), 1, + [24155] = 2, + ACTIONS(194), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24163] = 2, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24171] = 2, + ACTIONS(1087), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24179] = 2, + ACTIONS(1089), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24162] = 2, + [24187] = 2, ACTIONS(1091), 1, - sym_template_directive_end, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24170] = 2, + [24195] = 2, ACTIONS(1093), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24178] = 2, + [24203] = 2, ACTIONS(1095), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24186] = 2, - ACTIONS(856), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [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, - [24218] = 2, + [24227] = 2, ACTIONS(1101), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24226] = 2, - ACTIONS(1103), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24234] = 2, - ACTIONS(880), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24242] = 2, - ACTIONS(983), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24250] = 2, - ACTIONS(1105), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24258] = 2, + [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_heredoc_identifier, + sym_template_directive_end, 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, + [24267] = 2, ACTIONS(1109), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24282] = 2, + [24275] = 2, ACTIONS(1111), 1, - sym_template_directive_end, + sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24290] = 2, + [24283] = 2, ACTIONS(1113), 1, - sym_identifier, + sym_heredoc_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, + [24291] = 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(1121), 1, - sym_heredoc_identifier, - 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(1123), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24354] = 2, - ACTIONS(1125), 1, - sym_heredoc_identifier, + [24299] = 2, + ACTIONS(164), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24362] = 2, - ACTIONS(1127), 1, + [24307] = 2, + ACTIONS(874), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24370] = 2, - ACTIONS(1129), 1, + [24315] = 2, + ACTIONS(1117), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24323] = 2, + ACTIONS(905), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24331] = 2, + ACTIONS(1119), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24378] = 2, + [24339] = 2, ACTIONS(915), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24386] = 2, - ACTIONS(1131), 1, - anon_sym_in, + [24347] = 2, + ACTIONS(1121), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24394] = 2, + [24355] = 2, + ACTIONS(1123), 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, + 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, - [24402] = 2, - ACTIONS(919), 1, + [24435] = 2, + ACTIONS(1135), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24443] = 2, + ACTIONS(1137), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24410] = 2, - ACTIONS(927), 1, - sym_template_directive_end, + [24451] = 2, + ACTIONS(892), 1, + sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -31850,9 +31900,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(9)] = 739, [SMALL_STATE(10)] = 843, [SMALL_STATE(11)] = 947, - [SMALL_STATE(12)] = 1049, - [SMALL_STATE(13)] = 1153, - [SMALL_STATE(14)] = 1257, + [SMALL_STATE(12)] = 1051, + [SMALL_STATE(13)] = 1155, + [SMALL_STATE(14)] = 1259, [SMALL_STATE(15)] = 1361, [SMALL_STATE(16)] = 1462, [SMALL_STATE(17)] = 1560, @@ -31870,12 +31920,12 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -31968,13 +32018,13 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32016,11 +32066,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(175)] = 13110, [SMALL_STATE(176)] = 13153, [SMALL_STATE(177)] = 13211, - [SMALL_STATE(178)] = 13267, + [SMALL_STATE(178)] = 13255, [SMALL_STATE(179)] = 13311, - [SMALL_STATE(180)] = 13377, + [SMALL_STATE(180)] = 13365, [SMALL_STATE(181)] = 13431, - [SMALL_STATE(182)] = 13475, + [SMALL_STATE(182)] = 13481, [SMALL_STATE(183)] = 13525, [SMALL_STATE(184)] = 13573, [SMALL_STATE(185)] = 13610, @@ -32055,26 +32105,26 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32089,15 +32139,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32193,36 +32243,36 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(352)] = 19315, [SMALL_STATE(353)] = 19339, [SMALL_STATE(354)] = 19378, - [SMALL_STATE(355)] = 19401, - [SMALL_STATE(356)] = 19424, - [SMALL_STATE(357)] = 19463, - [SMALL_STATE(358)] = 19502, - [SMALL_STATE(359)] = 19541, + [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)] = 19799, - [SMALL_STATE(367)] = 19835, - [SMALL_STATE(368)] = 19871, - [SMALL_STATE(369)] = 19907, - [SMALL_STATE(370)] = 19943, + [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)] = 20125, - [SMALL_STATE(376)] = 20161, - [SMALL_STATE(377)] = 20197, - [SMALL_STATE(378)] = 20235, - [SMALL_STATE(379)] = 20271, - [SMALL_STATE(380)] = 20307, - [SMALL_STATE(381)] = 20343, - [SMALL_STATE(382)] = 20379, - [SMALL_STATE(383)] = 20415, - [SMALL_STATE(384)] = 20451, + [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, @@ -32230,292 +32280,294 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(389)] = 20633, [SMALL_STATE(390)] = 20669, [SMALL_STATE(391)] = 20705, - [SMALL_STATE(392)] = 20741, - [SMALL_STATE(393)] = 20777, - [SMALL_STATE(394)] = 20813, - [SMALL_STATE(395)] = 20849, - [SMALL_STATE(396)] = 20885, - [SMALL_STATE(397)] = 20921, - [SMALL_STATE(398)] = 20959, - [SMALL_STATE(399)] = 20995, - [SMALL_STATE(400)] = 21031, + [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)] = 21164, - [SMALL_STATE(406)] = 21188, - [SMALL_STATE(407)] = 21210, - [SMALL_STATE(408)] = 21231, - [SMALL_STATE(409)] = 21250, - [SMALL_STATE(410)] = 21273, - [SMALL_STATE(411)] = 21296, - [SMALL_STATE(412)] = 21313, - [SMALL_STATE(413)] = 21336, - [SMALL_STATE(414)] = 21359, + [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)] = 21438, - [SMALL_STATE(419)] = 21456, - [SMALL_STATE(420)] = 21476, - [SMALL_STATE(421)] = 21496, - [SMALL_STATE(422)] = 21516, - [SMALL_STATE(423)] = 21528, - [SMALL_STATE(424)] = 21544, - [SMALL_STATE(425)] = 21564, - [SMALL_STATE(426)] = 21584, - [SMALL_STATE(427)] = 21604, - [SMALL_STATE(428)] = 21624, - [SMALL_STATE(429)] = 21644, - [SMALL_STATE(430)] = 21658, - [SMALL_STATE(431)] = 21670, - [SMALL_STATE(432)] = 21690, - [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(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)] = 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, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -32524,550 +32576,552 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(405), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [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(351), - [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(370), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(349), - [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(351), - [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(370), - [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(287), - [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(324), - [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(339), - [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(342), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [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(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(308), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [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(377), - [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(400), - [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(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_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_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), + [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), + [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), + [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), + [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 = 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_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(81), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), - [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 = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [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(445), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(417), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(27), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(517), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(423), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(26), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [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(69), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(70), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(405), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(418), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(432), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [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(330), - [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), + [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(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(344), - [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(638), - [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(655), - [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}}, 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(676), - [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(318), - [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(656), - [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(355), - [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(354), - [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(315), - [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(316), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [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(319), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [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(460), - [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(551), - [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(390), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [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}}, ACCEPT_INPUT(), - [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(535), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [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), + [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), + [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), + [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), }; #ifdef __cplusplus diff --git a/dialects/terraform/src/scanner.cc b/dialects/terraform/src/scanner.cc index 007d237..ceaa31a 100644 --- a/dialects/terraform/src/scanner.cc +++ b/dialects/terraform/src/scanner.cc @@ -1,26 +1,341 @@ -#include "../../../src/scanner.cc" +#include + +#include +#include +#include +#include +#include + +namespace { + +using std::string; +using std::vector; + +enum TokenType { + QUOTED_TEMPLATE_START, + QUOTED_TEMPLATE_END, + TEMPLATE_LITERAL_CHUNK, + TEMPLATE_INTERPOLATION_START, + TEMPLATE_INTERPOLATION_END, + TEMPLATE_DIRECTIVE_START, + TEMPLATE_DIRECTIVE_END, + HEREDOC_IDENTIFIER, + SHIM, +}; + +enum ContextType { + TEMPLATE_INTERPOLATION, + TEMPLATE_DIRECTIVE, + QUOTED_TEMPLATE, + HEREDOC_TEMPLATE, +}; + +struct Context { + ContextType type; + + // valid if type == HEREDOC_TEMPLATE + string heredoc_identifier; +}; + +struct Scanner { + +public: + unsigned serialize(char *buf) { + unsigned size = 0; + + if (context_stack.size() > CHAR_MAX) { + return 0; + } + + buf[size++] = context_stack.size(); + for (vector::iterator it = context_stack.begin(); + it != context_stack.end(); ++it) { + if (size + 2 + it->heredoc_identifier.size() >= + TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { + return 0; + } + if (it->heredoc_identifier.size() > CHAR_MAX) { + return 0; + } + buf[size++] = it->type; + buf[size++] = it->heredoc_identifier.size(); + it->heredoc_identifier.copy(&buf[size], it->heredoc_identifier.size()); + size += it->heredoc_identifier.size(); + } + return size; + } + + void deserialize(const char *buf, unsigned n) { + context_stack.clear(); + + if (n == 0) { + return; + } + + unsigned size = 0; + uint8_t context_stack_size = buf[size++]; + for (unsigned j = 0; j < context_stack_size; j++) { + Context ctx; + ctx.type = static_cast(buf[size++]); + uint8_t heredoc_identifier_size = buf[size++]; + ctx.heredoc_identifier.assign(buf + size, + buf + size + heredoc_identifier_size); + size += heredoc_identifier_size; + context_stack.push_back(ctx); + } + assert(size == n); + } + + bool scan(TSLexer *lexer, const bool *valid_symbols) { + bool has_leading_whitespace_with_newline = false; + while (iswspace(lexer->lookahead)) { + if (lexer->lookahead == '\n') { + has_leading_whitespace_with_newline = true; + } + skip(lexer); + } + 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 == '"') { + Context ctx = {QUOTED_TEMPLATE, ""}; + context_stack.push_back(ctx); + return accept_and_advance(lexer, QUOTED_TEMPLATE_START); + } + if (valid_symbols[QUOTED_TEMPLATE_END] && in_quoted_context() && + lexer->lookahead == '"') { + context_stack.pop_back(); + return accept_and_advance(lexer, QUOTED_TEMPLATE_END); + } + + // manage template interpolations + if (valid_symbols[TEMPLATE_INTERPOLATION_START] && + valid_symbols[TEMPLATE_LITERAL_CHUNK] && !in_interpolation_context() && + lexer->lookahead == '$') { + advance(lexer); + if (lexer->lookahead == '{') { + Context ctx = {TEMPLATE_INTERPOLATION, ""}; + context_stack.push_back(ctx); + return accept_and_advance(lexer, TEMPLATE_INTERPOLATION_START); + } + // try to scan escape sequence + if (lexer->lookahead == '$') { + advance(lexer); + if (lexer->lookahead == '{') { + // $${ + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + } + } + return accept_inplace(lexer, TEMPLATE_LITERAL_CHUNK); + } + if (valid_symbols[TEMPLATE_INTERPOLATION_END] && + in_interpolation_context() && lexer->lookahead == '}') { + context_stack.pop_back(); + return accept_and_advance(lexer, TEMPLATE_INTERPOLATION_END); + } + + // manage template directives + if (valid_symbols[TEMPLATE_DIRECTIVE_START] && + valid_symbols[TEMPLATE_LITERAL_CHUNK] && !in_directive_context() && + lexer->lookahead == '%') { + advance(lexer); + if (lexer->lookahead == '{') { + Context ctx = {TEMPLATE_DIRECTIVE, ""}; + context_stack.push_back(ctx); + return accept_and_advance(lexer, TEMPLATE_DIRECTIVE_START); + } + // try to scan escape sequence + if (lexer->lookahead == '%') { + advance(lexer); + if (lexer->lookahead == '{') { + // $${ + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + } + } + return accept_inplace(lexer, TEMPLATE_LITERAL_CHUNK); + } + if (valid_symbols[TEMPLATE_DIRECTIVE_END] && in_directive_context() && + lexer->lookahead == '}') { + context_stack.pop_back(); + return accept_and_advance(lexer, TEMPLATE_DIRECTIVE_END); + } + + // manage heredoc context + if (valid_symbols[HEREDOC_IDENTIFIER] && !in_heredoc_context()) { + string identifier; + // TODO: check that this is a valid identifier + while (iswalnum(lexer->lookahead) || lexer->lookahead == '_' || + lexer->lookahead == '-') { + identifier.push_back(lexer->lookahead); + advance(lexer); + } + Context ctx = {HEREDOC_TEMPLATE, identifier}; + context_stack.push_back(ctx); + return accept_inplace(lexer, HEREDOC_IDENTIFIER); + } + if (valid_symbols[HEREDOC_IDENTIFIER] && in_heredoc_context() && + has_leading_whitespace_with_newline) { + string expected_identifier = context_stack.back().heredoc_identifier; + + for (string::iterator it = expected_identifier.begin(); + it != expected_identifier.end(); ++it) { + if (lexer->lookahead == *it) { + advance(lexer); + } else { + return accept_inplace(lexer, TEMPLATE_LITERAL_CHUNK); + } + } + // check if the identifier is on a line of its own + lexer->mark_end(lexer); + while (iswspace(lexer->lookahead) && lexer->lookahead != '\n') { + advance(lexer); + } + if (lexer->lookahead == '\n') { + context_stack.pop_back(); + return accept_inplace(lexer, HEREDOC_IDENTIFIER); + } else { + advance(lexer); + lexer->mark_end(lexer); + return accept_inplace(lexer, TEMPLATE_LITERAL_CHUNK); + } + } + // manage template literal chunks + + // handle template literal chunks in quoted contexts + // + // they may not contain newlines and may contain escape sequences + if (valid_symbols[TEMPLATE_LITERAL_CHUNK] && in_quoted_context()) { + switch (lexer->lookahead) { + case '\\': + advance(lexer); + switch (lexer->lookahead) { + case '"': + case 'n': + case 'r': + case 't': + case '\\': + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + case 'u': + for (int i = 0; i < 4; i++) { + if (!consume_wxdigit(lexer)) + return false; + } + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + case 'U': + for (int i = 0; i < 8; i++) { + if (!consume_wxdigit(lexer)) + return false; + } + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + default: + return false; + } + } + } + + // handle all other quoted template or string literal characters + if (valid_symbols[TEMPLATE_LITERAL_CHUNK] && in_template_context()) { + return accept_and_advance(lexer, TEMPLATE_LITERAL_CHUNK); + } + + // probably not handled by the external scanner + return false; + } + +private: + vector context_stack; + + void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + + void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + + bool accept_inplace(TSLexer *lexer, TokenType token) { + lexer->result_symbol = token; + return true; + } + + bool accept_and_advance(TSLexer *lexer, TokenType token) { + advance(lexer); + return accept_inplace(lexer, token); + } + + bool consume_wxdigit(TSLexer *lexer) { + advance(lexer); + return iswxdigit(lexer->lookahead); + } + + bool skip_comment(TSLexer* lexer) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + if (lexer->lookahead != '#') { + return false; + } + skip(lexer); + while (lexer->lookahead != '\n') { + skip(lexer); + } + return true; + } + + bool in_context_type(ContextType type) { + if (context_stack.empty()) { + return false; + } + return context_stack.back().type == type; + } + + bool in_quoted_context() { return in_context_type(QUOTED_TEMPLATE); } + + bool in_heredoc_context() { return in_context_type(HEREDOC_TEMPLATE); } + + bool in_template_context() { + return in_quoted_context() || in_heredoc_context(); + } + + bool in_interpolation_context() { + return in_context_type(TEMPLATE_INTERPOLATION); + } + + bool in_directive_context() { return in_context_type(TEMPLATE_DIRECTIVE); } +}; + +} // namespace extern "C" { // tree sitter callbacks -void* tree_sitter_terraform_external_scanner_create() { - return tree_sitter_hcl_external_scanner_create(); +void *tree_sitter_terraform_external_scanner_create() { return new Scanner(); } + +void tree_sitter_terraform_external_scanner_destroy(void *p) { + Scanner *scanner = static_cast(p); + delete scanner; } -void tree_sitter_terraform_external_scanner_destroy(void* p) { - return tree_sitter_hcl_external_scanner_destroy(p); +unsigned tree_sitter_terraform_external_scanner_serialize(void *p, char *b) { + Scanner *scanner = static_cast(p); + return scanner->serialize(b); } -unsigned tree_sitter_terraform_external_scanner_serialize(void* p, char* b) { - return tree_sitter_hcl_external_scanner_serialize(p, b); +void tree_sitter_terraform_external_scanner_deserialize(void *p, const char *b, + unsigned n) { + Scanner *scanner = static_cast(p); + return scanner->deserialize(b, n); } -void tree_sitter_terraform_external_scanner_deserialize(void* p, const char* b, unsigned n) { - return tree_sitter_hcl_external_scanner_deserialize(p, b, n); -} - -bool tree_sitter_terraform_external_scanner_scan(void* p, TSLexer* lexer, const bool* valid_symbols) { - return tree_sitter_hcl_external_scanner_scan(p, lexer, valid_symbols); +bool tree_sitter_terraform_external_scanner_scan(void *p, TSLexer *lexer, + const bool *valid_symbols) { + Scanner *scanner = static_cast(p); + return scanner->scan(lexer, valid_symbols); } } // extern "C" diff --git a/src/grammar.json b/src/grammar.json index e48487d..1065107 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -23,20 +23,46 @@ ] }, "body": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - } + "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" + } + ] + } + } + ] + } + ] }, "attribute": { "type": "SEQ", @@ -1779,6 +1805,10 @@ { "type": "SYMBOL", "name": "heredoc_identifier" + }, + { + "type": "SYMBOL", + "name": "_shim" } ], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 4580495..ed54921 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -139,7 +139,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "attribute", diff --git a/src/parser.c b/src/parser.c index 93ee02f..b8ac80b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,12 +6,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 678 +#define STATE_COUNT 680 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 121 +#define SYMBOL_COUNT 122 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 56 -#define EXTERNAL_TOKEN_COUNT 8 +#define TOKEN_COUNT 57 +#define EXTERNAL_TOKEN_COUNT 9 #define FIELD_COUNT 2 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 2 @@ -72,71 +72,72 @@ enum { sym_template_directive_start = 53, sym_template_directive_end = 54, sym_heredoc_identifier = 55, - 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, + 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, }; static const char * const ts_symbol_names[] = { @@ -196,6 +197,7 @@ 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", @@ -320,6 +322,7 @@ 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, @@ -612,6 +615,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__shim] = { + .visible = false, + .named = true, + }, [sym_config_file] = { .visible = true, .named = true, @@ -915,10 +922,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 9, - [11] = 11, + [11] = 9, [12] = 9, [13] = 9, - [14] = 9, + [14] = 14, [15] = 15, [16] = 16, [17] = 16, @@ -927,12 +934,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [20] = 16, [21] = 21, [22] = 22, - [23] = 23, - [24] = 21, - [25] = 21, - [26] = 23, - [27] = 23, - [28] = 28, + [23] = 21, + [24] = 24, + [25] = 24, + [26] = 26, + [27] = 24, + [28] = 21, [29] = 29, [30] = 30, [31] = 31, @@ -948,51 +955,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, - [45] = 43, - [46] = 46, - [47] = 44, + [44] = 42, + [45] = 45, + [46] = 43, + [47] = 47, [48] = 48, [49] = 49, - [50] = 50, - [51] = 49, - [52] = 50, - [53] = 49, - [54] = 54, - [55] = 50, - [56] = 49, - [57] = 50, - [58] = 54, - [59] = 59, - [60] = 43, + [50] = 45, + [51] = 51, + [52] = 48, + [53] = 51, + [54] = 48, + [55] = 51, + [56] = 56, + [57] = 48, + [58] = 51, + [59] = 45, + [60] = 60, [61] = 61, [62] = 62, - [63] = 54, - [64] = 64, - [65] = 49, - [66] = 61, - [67] = 61, - [68] = 61, - [69] = 69, - [70] = 70, + [63] = 62, + [64] = 61, + [65] = 65, + [66] = 66, + [67] = 48, + [68] = 43, + [69] = 42, + [70] = 62, [71] = 71, - [72] = 54, - [73] = 44, + [72] = 45, + [73] = 61, [74] = 74, - [75] = 75, - [76] = 44, - [77] = 50, - [78] = 54, - [79] = 79, - [80] = 42, - [81] = 43, - [82] = 44, - [83] = 42, - [84] = 42, - [85] = 61, - [86] = 86, + [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] = 42, + [88] = 62, [89] = 89, [90] = 90, [91] = 91, @@ -1000,50 +1007,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [93] = 93, [94] = 94, [95] = 95, - [96] = 94, + [96] = 96, [97] = 97, - [98] = 95, + [98] = 94, [99] = 99, [100] = 100, [101] = 95, - [102] = 102, - [103] = 102, - [104] = 99, - [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] = 100, - [119] = 102, + [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, + [119] = 96, [120] = 99, [121] = 100, - [122] = 99, - [123] = 97, - [124] = 94, - [125] = 107, - [126] = 102, - [127] = 97, - [128] = 95, - [129] = 37, - [130] = 38, + [122] = 105, + [123] = 95, + [124] = 96, + [125] = 97, + [126] = 94, + [127] = 99, + [128] = 100, + [129] = 38, + [130] = 37, [131] = 36, - [132] = 35, - [133] = 34, - [134] = 33, - [135] = 32, - [136] = 29, + [132] = 29, + [133] = 35, + [134] = 34, + [135] = 33, + [136] = 31, [137] = 89, - [138] = 90, - [139] = 91, + [138] = 91, + [139] = 90, [140] = 92, [141] = 141, [142] = 93, @@ -1081,507 +1088,509 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [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, + [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] = 143, - [192] = 151, - [193] = 152, - [194] = 153, - [195] = 159, - [196] = 156, + [191] = 169, + [192] = 153, + [193] = 154, + [194] = 143, + [195] = 157, + [196] = 155, [197] = 158, - [198] = 149, - [199] = 170, + [198] = 151, + [199] = 144, [200] = 173, - [201] = 161, - [202] = 164, - [203] = 155, - [204] = 169, + [201] = 160, + [202] = 150, + [203] = 171, + [204] = 162, [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, + [206] = 159, + [207] = 161, + [208] = 172, + [209] = 146, + [210] = 170, + [211] = 166, + [212] = 165, + [213] = 168, + [214] = 152, + [215] = 164, + [216] = 35, + [217] = 90, + [218] = 34, + [219] = 93, + [220] = 31, + [221] = 29, + [222] = 31, [223] = 91, - [224] = 38, - [225] = 36, + [224] = 89, + [225] = 38, [226] = 38, - [227] = 36, - [228] = 35, + [227] = 37, + [228] = 36, [229] = 35, - [230] = 34, - [231] = 89, + [230] = 37, + [231] = 34, [232] = 33, - [233] = 32, + [233] = 36, [234] = 92, - [235] = 90, - [236] = 32, + [235] = 33, + [236] = 29, [237] = 92, - [238] = 90, - [239] = 91, - [240] = 93, + [238] = 93, + [239] = 90, + [240] = 89, [241] = 93, - [242] = 92, - [243] = 89, - [244] = 89, - [245] = 91, - [246] = 90, + [242] = 89, + [243] = 91, + [244] = 91, + [245] = 90, + [246] = 92, [247] = 141, - [248] = 163, - [249] = 148, - [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, + [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] = 165, - [265] = 167, - [266] = 144, + [264] = 164, + [265] = 165, + [266] = 171, [267] = 143, - [268] = 174, - [269] = 145, - [270] = 154, - [271] = 173, - [272] = 172, - [273] = 171, - [274] = 168, - [275] = 166, - [276] = 162, - [277] = 159, + [268] = 169, + [269] = 174, + [270] = 145, + [271] = 156, + [272] = 173, + [273] = 172, + [274] = 170, + [275] = 168, + [276] = 161, + [277] = 150, [278] = 157, - [279] = 155, - [280] = 150, + [279] = 152, + [280] = 151, [281] = 149, - [282] = 166, - [283] = 157, - [284] = 154, - [285] = 167, - [286] = 165, - [287] = 163, - [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] = 170, - [301] = 168, - [302] = 152, - [303] = 166, + [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, + [297] = 172, + [298] = 143, + [299] = 155, + [300] = 154, + [301] = 170, + [302] = 169, + [303] = 168, [304] = 174, - [305] = 162, - [306] = 151, - [307] = 148, - [308] = 147, - [309] = 146, + [305] = 161, + [306] = 159, + [307] = 159, + [308] = 171, + [309] = 155, [310] = 145, - [311] = 159, - [312] = 154, - [313] = 173, - [314] = 172, - [315] = 171, - [316] = 168, - [317] = 165, - [318] = 174, - [319] = 145, - [320] = 155, - [321] = 162, - [322] = 150, - [323] = 153, - [324] = 163, - [325] = 159, - [326] = 157, - [327] = 155, - [328] = 150, - [329] = 156, - [330] = 149, - [331] = 144, - [332] = 158, - [333] = 161, - [334] = 167, - [335] = 160, - [336] = 164, - [337] = 152, - [338] = 169, - [339] = 143, - [340] = 151, - [341] = 148, - [342] = 147, - [343] = 146, - [344] = 149, - [345] = 144, + [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, + [334] = 151, + [335] = 148, + [336] = 154, + [337] = 153, + [338] = 147, + [339] = 163, + [340] = 148, + [341] = 162, + [342] = 149, + [343] = 160, + [344] = 153, + [345] = 158, [346] = 346, [347] = 347, [348] = 348, [349] = 349, [350] = 350, [351] = 351, - [352] = 349, + [352] = 350, [353] = 353, [354] = 354, - [355] = 355, - [356] = 356, + [355] = 354, + [356] = 353, [357] = 353, - [358] = 356, - [359] = 353, - [360] = 356, + [358] = 358, + [359] = 359, + [360] = 354, [361] = 361, - [362] = 361, - [363] = 361, + [362] = 362, + [363] = 363, [364] = 364, [365] = 365, - [366] = 366, - [367] = 364, + [366] = 362, + [367] = 363, [368] = 368, - [369] = 361, - [370] = 370, - [371] = 364, - [372] = 368, + [369] = 369, + [370] = 361, + [371] = 369, + [372] = 362, [373] = 373, - [374] = 374, - [375] = 366, + [374] = 365, + [375] = 365, [376] = 376, - [377] = 370, - [378] = 368, - [379] = 379, - [380] = 379, + [377] = 361, + [378] = 378, + [379] = 368, + [380] = 378, [381] = 373, - [382] = 376, - [383] = 365, - [384] = 370, - [385] = 364, - [386] = 366, - [387] = 366, - [388] = 361, - [389] = 389, + [382] = 382, + [383] = 382, + [384] = 378, + [385] = 378, + [386] = 362, + [387] = 382, + [388] = 362, + [389] = 373, [390] = 364, - [391] = 374, - [392] = 373, - [393] = 389, - [394] = 376, - [395] = 366, - [396] = 379, - [397] = 370, - [398] = 374, - [399] = 389, - [400] = 370, - [401] = 365, + [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, [404] = 404, [405] = 405, [406] = 406, [407] = 407, - [408] = 408, + [408] = 407, [409] = 409, - [410] = 409, + [410] = 410, [411] = 411, - [412] = 409, - [413] = 409, + [412] = 412, + [413] = 407, [414] = 414, - [415] = 409, + [415] = 407, [416] = 416, - [417] = 417, + [417] = 407, [418] = 418, [419] = 419, [420] = 420, - [421] = 419, - [422] = 347, - [423] = 417, - [424] = 419, - [425] = 419, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 420, + [425] = 348, [426] = 426, - [427] = 426, - [428] = 419, - [429] = 429, - [430] = 348, - [431] = 426, - [432] = 432, - [433] = 433, - [434] = 432, + [427] = 420, + [428] = 421, + [429] = 419, + [430] = 347, + [431] = 419, + [432] = 420, + [433] = 420, + [434] = 434, [435] = 435, - [436] = 436, + [436] = 423, [437] = 437, [438] = 438, [439] = 439, [440] = 440, - [441] = 441, + [441] = 438, [442] = 442, [443] = 443, [444] = 444, - [445] = 417, + [445] = 445, [446] = 446, [447] = 447, [448] = 448, - [449] = 438, - [450] = 442, + [449] = 442, + [450] = 450, [451] = 451, - [452] = 446, + [452] = 450, [453] = 453, - [454] = 442, - [455] = 441, + [454] = 454, + [455] = 440, [456] = 456, - [457] = 438, - [458] = 458, - [459] = 448, - [460] = 444, - [461] = 461, - [462] = 442, - [463] = 443, - [464] = 453, - [465] = 447, - [466] = 451, - [467] = 458, - [468] = 441, - [469] = 432, - [470] = 461, - [471] = 471, + [457] = 444, + [458] = 454, + [459] = 456, + [460] = 460, + [461] = 439, + [462] = 462, + [463] = 442, + [464] = 464, + [465] = 448, + [466] = 466, + [467] = 467, + [468] = 453, + [469] = 447, + [470] = 444, + [471] = 444, [472] = 472, - [473] = 442, - [474] = 440, - [475] = 475, + [473] = 446, + [474] = 474, + [475] = 453, [476] = 476, [477] = 477, - [478] = 476, - [479] = 441, - [480] = 480, - [481] = 481, - [482] = 453, - [483] = 471, - [484] = 472, - [485] = 475, - [486] = 435, - [487] = 441, + [478] = 462, + [479] = 423, + [480] = 437, + [481] = 437, + [482] = 444, + [483] = 445, + [484] = 476, + [485] = 453, + [486] = 439, + [487] = 443, [488] = 477, - [489] = 435, - [490] = 436, - [491] = 439, - [492] = 456, - [493] = 436, - [494] = 494, - [495] = 495, - [496] = 496, + [489] = 474, + [490] = 467, + [491] = 472, + [492] = 460, + [493] = 453, + [494] = 421, + [495] = 421, + [496] = 151, [497] = 497, - [498] = 439, - [499] = 456, - [500] = 476, + [498] = 498, + [499] = 498, + [500] = 500, [501] = 501, [502] = 502, [503] = 503, [504] = 504, - [505] = 440, + [505] = 505, [506] = 506, [507] = 507, - [508] = 495, - [509] = 472, - [510] = 471, - [511] = 348, - [512] = 512, - [513] = 417, - [514] = 497, - [515] = 515, - [516] = 348, - [517] = 517, - [518] = 458, - [519] = 451, - [520] = 520, - [521] = 497, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 460, + [512] = 477, + [513] = 498, + [514] = 348, + [515] = 467, + [516] = 516, + [517] = 438, + [518] = 443, + [519] = 445, + [520] = 348, + [521] = 521, [522] = 522, - [523] = 447, + [523] = 523, [524] = 524, - [525] = 432, - [526] = 443, - [527] = 527, - [528] = 477, - [529] = 496, - [530] = 149, - [531] = 531, - [532] = 532, + [525] = 423, + [526] = 510, + [527] = 446, + [528] = 447, + [529] = 529, + [530] = 448, + [531] = 450, + [532] = 347, [533] = 533, - [534] = 503, - [535] = 444, - [536] = 536, - [537] = 495, - [538] = 538, - [539] = 475, - [540] = 448, - [541] = 496, - [542] = 461, + [534] = 347, + [535] = 454, + [536] = 440, + [537] = 456, + [538] = 523, + [539] = 539, + [540] = 540, + [541] = 523, + [542] = 542, [543] = 543, [544] = 544, - [545] = 503, + [545] = 545, [546] = 546, - [547] = 446, - [548] = 347, - [549] = 347, - [550] = 550, - [551] = 551, - [552] = 552, + [547] = 474, + [548] = 476, + [549] = 521, + [550] = 462, + [551] = 510, + [552] = 521, [553] = 553, [554] = 554, - [555] = 555, + [555] = 472, [556] = 556, [557] = 557, [558] = 558, [559] = 559, [560] = 560, - [561] = 558, + [561] = 559, [562] = 562, - [563] = 563, + [563] = 558, [564] = 564, [565] = 565, [566] = 566, - [567] = 560, + [567] = 567, [568] = 568, - [569] = 559, + [569] = 569, [570] = 570, [571] = 571, [572] = 572, - [573] = 571, - [574] = 568, - [575] = 575, - [576] = 566, + [573] = 569, + [574] = 574, + [575] = 569, + [576] = 574, [577] = 577, - [578] = 560, - [579] = 562, - [580] = 554, - [581] = 565, - [582] = 566, - [583] = 583, - [584] = 562, - [585] = 565, - [586] = 586, - [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, + [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, + [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] = 571, - [616] = 556, - [617] = 556, - [618] = 558, - [619] = 586, + [615] = 582, + [616] = 579, + [617] = 593, + [618] = 566, + [619] = 567, [620] = 565, - [621] = 575, - [622] = 565, - [623] = 623, - [624] = 563, - [625] = 558, - [626] = 556, - [627] = 627, - [628] = 628, - [629] = 563, - [630] = 564, - [631] = 564, - [632] = 632, - [633] = 633, + [621] = 567, + [622] = 622, + [623] = 593, + [624] = 559, + [625] = 625, + [626] = 582, + [627] = 565, + [628] = 566, + [629] = 629, + [630] = 579, + [631] = 574, + [632] = 593, + [633] = 559, [634] = 634, [635] = 635, [636] = 636, [637] = 637, - [638] = 638, + [638] = 634, [639] = 639, [640] = 640, [641] = 641, - [642] = 639, - [643] = 636, + [642] = 642, + [643] = 643, [644] = 644, - [645] = 641, + [645] = 645, [646] = 646, [647] = 647, - [648] = 647, - [649] = 649, + [648] = 648, + [649] = 647, [650] = 650, [651] = 651, [652] = 652, - [653] = 653, - [654] = 654, + [653] = 645, + [654] = 641, [655] = 655, - [656] = 641, + [656] = 639, [657] = 657, - [658] = 658, - [659] = 649, - [660] = 633, - [661] = 637, + [658] = 647, + [659] = 640, + [660] = 660, + [661] = 661, [662] = 662, [663] = 663, - [664] = 633, - [665] = 647, - [666] = 666, + [664] = 664, + [665] = 663, + [666] = 639, [667] = 647, - [668] = 639, - [669] = 636, - [670] = 647, - [671] = 637, - [672] = 672, - [673] = 649, - [674] = 674, + [668] = 645, + [669] = 669, + [670] = 634, + [671] = 671, + [672] = 647, + [673] = 641, + [674] = 640, [675] = 675, [676] = 676, [677] = 677, + [678] = 678, + [679] = 663, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -11803,134 +11812,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}, - [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 = 2}, - [23] = {.lex_state = 1, .external_lex_state = 3}, - [24] = {.lex_state = 1, .external_lex_state = 3}, - [25] = {.lex_state = 1, .external_lex_state = 3}, + [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}, + [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}, [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}, + [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}, [129] = {.lex_state = 41}, [130] = {.lex_state = 41}, [131] = {.lex_state = 41}, @@ -11943,40 +11952,40 @@ 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 = 2}, + [141] = {.lex_state = 1, .external_lex_state = 3}, [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}, + [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}, [176] = {.lex_state = 2}, [177] = {.lex_state = 2}, @@ -12018,41 +12027,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 41}, [214] = {.lex_state = 41}, [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 = 4}, + [216] = {.lex_state = 41, .external_lex_state = 5}, + [217] = {.lex_state = 2}, + [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}, + [222] = {.lex_state = 41, .external_lex_state = 5}, [223] = {.lex_state = 2}, - [224] = {.lex_state = 41, .external_lex_state = 4}, - [225] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [228] = {.lex_state = 41, .external_lex_state = 4}, - [229] = {.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 = 2}, - [232] = {.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 = 2}, - [236] = {.lex_state = 41, .external_lex_state = 4}, - [237] = {.lex_state = 41, .external_lex_state = 5}, + [235] = {.lex_state = 41, .external_lex_state = 5}, + [236] = {.lex_state = 41, .external_lex_state = 5}, + [237] = {.lex_state = 41, .external_lex_state = 6}, [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 = 4}, - [243] = {.lex_state = 41, .external_lex_state = 5}, - [244] = {.lex_state = 41, .external_lex_state = 4}, + [239] = {.lex_state = 41, .external_lex_state = 6}, + [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}, [245] = {.lex_state = 41, .external_lex_state = 5}, - [246] = {.lex_state = 41, .external_lex_state = 4}, + [246] = {.lex_state = 41, .external_lex_state = 5}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, [249] = {.lex_state = 2}, - [250] = {.lex_state = 41, .external_lex_state = 4}, + [250] = {.lex_state = 2}, [251] = {.lex_state = 2}, [252] = {.lex_state = 2}, [253] = {.lex_state = 2}, @@ -12061,11 +12070,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [256] = {.lex_state = 2}, [257] = {.lex_state = 2}, [258] = {.lex_state = 2}, - [259] = {.lex_state = 2}, + [259] = {.lex_state = 41, .external_lex_state = 5}, [260] = {.lex_state = 2}, [261] = {.lex_state = 2}, [262] = {.lex_state = 2}, - [263] = {.lex_state = 41, .external_lex_state = 5}, + [263] = {.lex_state = 41, .external_lex_state = 6}, [264] = {.lex_state = 2}, [265] = {.lex_state = 2}, [266] = {.lex_state = 2}, @@ -12084,307 +12093,307 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 2}, [280] = {.lex_state = 2}, [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 = 5}, - [285] = {.lex_state = 41, .external_lex_state = 4}, - [286] = {.lex_state = 41, .external_lex_state = 4}, - [287] = {.lex_state = 41, .external_lex_state = 4}, - [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}, + [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}, + [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}, + [291] = {.lex_state = 41, .external_lex_state = 5}, + [292] = {.lex_state = 41, .external_lex_state = 5}, [293] = {.lex_state = 41, .external_lex_state = 5}, - [294] = {.lex_state = 41, .external_lex_state = 4}, + [294] = {.lex_state = 41, .external_lex_state = 5}, [295] = {.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}, + [296] = {.lex_state = 41, .external_lex_state = 6}, + [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}, - [301] = {.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 = 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 = 4}, - [309] = {.lex_state = 41, .external_lex_state = 4}, - [310] = {.lex_state = 41, .external_lex_state = 4}, + [301] = {.lex_state = 41, .external_lex_state = 6}, + [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}, + [310] = {.lex_state = 41, .external_lex_state = 5}, [311] = {.lex_state = 41, .external_lex_state = 5}, - [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 = 4}, + [312] = {.lex_state = 41, .external_lex_state = 6}, + [313] = {.lex_state = 41, .external_lex_state = 6}, + [314] = {.lex_state = 41, .external_lex_state = 5}, + [315] = {.lex_state = 41, .external_lex_state = 6}, + [316] = {.lex_state = 41, .external_lex_state = 6}, [317] = {.lex_state = 41, .external_lex_state = 5}, - [318] = {.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 = 5}, - [321] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [325] = {.lex_state = 41, .external_lex_state = 4}, - [326] = {.lex_state = 41, .external_lex_state = 4}, - [327] = {.lex_state = 41, .external_lex_state = 4}, - [328] = {.lex_state = 41, .external_lex_state = 4}, - [329] = {.lex_state = 41, .external_lex_state = 5}, + [324] = {.lex_state = 41, .external_lex_state = 6}, + [325] = {.lex_state = 41, .external_lex_state = 5}, + [326] = {.lex_state = 41, .external_lex_state = 6}, + [327] = {.lex_state = 41, .external_lex_state = 5}, + [328] = {.lex_state = 41, .external_lex_state = 6}, + [329] = {.lex_state = 41, .external_lex_state = 6}, [330] = {.lex_state = 41, .external_lex_state = 5}, - [331] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, - [337] = {.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 = 5}, + [339] = {.lex_state = 41, .external_lex_state = 6}, [340] = {.lex_state = 41, .external_lex_state = 5}, - [341] = {.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 = 5}, - [344] = {.lex_state = 41, .external_lex_state = 4}, - [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 = 3, .external_lex_state = 2}, - [350] = {.lex_state = 1, .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 = 1, .external_lex_state = 2}, - [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 = 0, .external_lex_state = 6}, - [360] = {.lex_state = 0, .external_lex_state = 6}, - [361] = {.lex_state = 0, .external_lex_state = 7}, - [362] = {.lex_state = 0, .external_lex_state = 7}, + [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}, [363] = {.lex_state = 0, .external_lex_state = 7}, [364] = {.lex_state = 0, .external_lex_state = 7}, - [365] = {.lex_state = 0, .external_lex_state = 7}, - [366] = {.lex_state = 0, .external_lex_state = 8}, + [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 = 6}, + [368] = {.lex_state = 0, .external_lex_state = 8}, [369] = {.lex_state = 0, .external_lex_state = 7}, [370] = {.lex_state = 0, .external_lex_state = 8}, [371] = {.lex_state = 0, .external_lex_state = 7}, - [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 = 8}, - [376] = {.lex_state = 0, .external_lex_state = 6}, + [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}, [377] = {.lex_state = 0, .external_lex_state = 8}, - [378] = {.lex_state = 0, .external_lex_state = 6}, - [379] = {.lex_state = 0, .external_lex_state = 6}, - [380] = {.lex_state = 0, .external_lex_state = 6}, - [381] = {.lex_state = 0, .external_lex_state = 6}, - [382] = {.lex_state = 0, .external_lex_state = 6}, - [383] = {.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}, + [383] = {.lex_state = 0, .external_lex_state = 7}, [384] = {.lex_state = 0, .external_lex_state = 8}, - [385] = {.lex_state = 0, .external_lex_state = 7}, - [386] = {.lex_state = 0, .external_lex_state = 8}, - [387] = {.lex_state = 0, .external_lex_state = 8}, - [388] = {.lex_state = 0, .external_lex_state = 7}, - [389] = {.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 = 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}, + [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}, [395] = {.lex_state = 0, .external_lex_state = 8}, - [396] = {.lex_state = 0, .external_lex_state = 6}, - [397] = {.lex_state = 0, .external_lex_state = 8}, - [398] = {.lex_state = 0, .external_lex_state = 6}, - [399] = {.lex_state = 0, .external_lex_state = 6}, - [400] = {.lex_state = 0, .external_lex_state = 8}, - [401] = {.lex_state = 0, .external_lex_state = 6}, + [396] = {.lex_state = 0, .external_lex_state = 7}, + [397] = {.lex_state = 0, .external_lex_state = 9}, + [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}, [403] = {.lex_state = 41}, - [404] = {.lex_state = 41}, - [405] = {.lex_state = 4, .external_lex_state = 2}, - [406] = {.lex_state = 41}, - [407] = {.lex_state = 41, .external_lex_state = 2}, + [404] = {.lex_state = 41, .external_lex_state = 2}, + [405] = {.lex_state = 41, .external_lex_state = 2}, + [406] = {.lex_state = 4, .external_lex_state = 3}, + [407] = {.lex_state = 0}, [408] = {.lex_state = 0}, - [409] = {.lex_state = 0}, + [409] = {.lex_state = 41, .external_lex_state = 3}, [410] = {.lex_state = 0}, [411] = {.lex_state = 41}, [412] = {.lex_state = 0}, [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, + [414] = {.lex_state = 41}, [415] = {.lex_state = 0}, [416] = {.lex_state = 41}, - [417] = {.lex_state = 0, .external_lex_state = 7}, - [418] = {.lex_state = 41, .external_lex_state = 2}, + [417] = {.lex_state = 0}, + [418] = {.lex_state = 41}, [419] = {.lex_state = 0}, [420] = {.lex_state = 0}, - [421] = {.lex_state = 0}, + [421] = {.lex_state = 0, .external_lex_state = 9}, [422] = {.lex_state = 0}, - [423] = {.lex_state = 0, .external_lex_state = 8}, + [423] = {.lex_state = 0, .external_lex_state = 9}, [424] = {.lex_state = 0}, [425] = {.lex_state = 0}, [426] = {.lex_state = 0}, [427] = {.lex_state = 0}, - [428] = {.lex_state = 0}, + [428] = {.lex_state = 0, .external_lex_state = 8}, [429] = {.lex_state = 0}, [430] = {.lex_state = 0}, [431] = {.lex_state = 0}, - [432] = {.lex_state = 0, .external_lex_state = 8}, + [432] = {.lex_state = 0}, [433] = {.lex_state = 0}, - [434] = {.lex_state = 0, .external_lex_state = 7}, - [435] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 41, .external_lex_state = 3}, [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}, + [437] = {.lex_state = 0}, + [438] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 8}, - [445] = {.lex_state = 0, .external_lex_state = 6}, - [446] = {.lex_state = 0, .external_lex_state = 7}, + [444] = {.lex_state = 0, .external_lex_state = 9}, + [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}, - [451] = {.lex_state = 0, .external_lex_state = 8}, - [452] = {.lex_state = 0, .external_lex_state = 8}, + [450] = {.lex_state = 0, .external_lex_state = 8}, + [451] = {.lex_state = 0, .external_lex_state = 10}, + [452] = {.lex_state = 0, .external_lex_state = 9}, [453] = {.lex_state = 0}, - [454] = {.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}, - [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}, - [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 = 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}, + [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}, + [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}, + [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}, + [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 = 8}, + [479] = {.lex_state = 0, .external_lex_state = 7}, [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}, + [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 = 8}, + [487] = {.lex_state = 0, .external_lex_state = 9}, [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 = 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 = 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 = 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 = 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}, + [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}, + [513] = {.lex_state = 0}, [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}, + [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 = 5}, - [522] = {.lex_state = 41, .external_lex_state = 2}, + [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 = 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}, + [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}, [532] = {.lex_state = 0, .external_lex_state = 6}, - [533] = {.lex_state = 3}, + [533] = {.lex_state = 0}, [534] = {.lex_state = 0, .external_lex_state = 5}, - [535] = {.lex_state = 0, .external_lex_state = 6}, - [536] = {.lex_state = 0, .external_lex_state = 4}, - [537] = {.lex_state = 0}, + [535] = {.lex_state = 0, .external_lex_state = 7}, + [536] = {.lex_state = 0, .external_lex_state = 7}, + [537] = {.lex_state = 0, .external_lex_state = 7}, [538] = {.lex_state = 0, .external_lex_state = 6}, - [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}, + [539] = {.lex_state = 41}, + [540] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 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 = 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}, + [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}, + [556] = {.lex_state = 0, .external_lex_state = 5}, + [557] = {.lex_state = 0}, [558] = {.lex_state = 0}, - [559] = {.lex_state = 0, .external_lex_state = 4}, + [559] = {.lex_state = 41}, [560] = {.lex_state = 0}, - [561] = {.lex_state = 0}, + [561] = {.lex_state = 41}, [562] = {.lex_state = 0}, [563] = {.lex_state = 0}, [564] = {.lex_state = 0}, [565] = {.lex_state = 0}, - [566] = {.lex_state = 1}, + [566] = {.lex_state = 0}, [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}, + [568] = {.lex_state = 1}, + [569] = {.lex_state = 0}, + [570] = {.lex_state = 0, .external_lex_state = 5}, + [571] = {.lex_state = 0, .external_lex_state = 5}, [572] = {.lex_state = 0}, [573] = {.lex_state = 0}, - [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}, + [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}, [580] = {.lex_state = 0}, - [581] = {.lex_state = 0}, - [582] = {.lex_state = 1}, + [581] = {.lex_state = 0, .external_lex_state = 5}, + [582] = {.lex_state = 0}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, [585] = {.lex_state = 0}, @@ -12394,92 +12403,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, [591] = {.lex_state = 0}, - [592] = {.lex_state = 41}, - [593] = {.lex_state = 1}, - [594] = {.lex_state = 0}, + [592] = {.lex_state = 1}, + [593] = {.lex_state = 0}, + [594] = {.lex_state = 41}, [595] = {.lex_state = 0}, - [596] = {.lex_state = 1}, + [596] = {.lex_state = 0}, [597] = {.lex_state = 0}, [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, - [600] = {.lex_state = 0}, - [601] = {.lex_state = 0}, + [600] = {.lex_state = 1}, + [601] = {.lex_state = 0, .external_lex_state = 5}, [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 = 0, .external_lex_state = 4}, + [604] = {.lex_state = 0, .external_lex_state = 5}, + [605] = {.lex_state = 0}, + [606] = {.lex_state = 0, .external_lex_state = 5}, + [607] = {.lex_state = 0, .external_lex_state = 5}, + [608] = {.lex_state = 0, .external_lex_state = 5}, [609] = {.lex_state = 0}, [610] = {.lex_state = 0}, [611] = {.lex_state = 0}, - [612] = {.lex_state = 0, .external_lex_state = 4}, - [613] = {.lex_state = 0}, - [614] = {.lex_state = 0, .external_lex_state = 4}, + [612] = {.lex_state = 0}, + [613] = {.lex_state = 1}, + [614] = {.lex_state = 0, .external_lex_state = 5}, [615] = {.lex_state = 0}, - [616] = {.lex_state = 41}, - [617] = {.lex_state = 41}, + [616] = {.lex_state = 0, .external_lex_state = 5}, + [617] = {.lex_state = 0}, [618] = {.lex_state = 0}, [619] = {.lex_state = 0}, [620] = {.lex_state = 0}, - [621] = {.lex_state = 0, .external_lex_state = 4}, + [621] = {.lex_state = 0}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, - [624] = {.lex_state = 0}, + [624] = {.lex_state = 41}, [625] = {.lex_state = 0}, - [626] = {.lex_state = 41}, + [626] = {.lex_state = 0}, [627] = {.lex_state = 0}, [628] = {.lex_state = 0}, - [629] = {.lex_state = 0}, - [630] = {.lex_state = 0}, + [629] = {.lex_state = 0, .external_lex_state = 5}, + [630] = {.lex_state = 0, .external_lex_state = 5}, [631] = {.lex_state = 0}, - [632] = {.lex_state = 41}, - [633] = {.lex_state = 0, .external_lex_state = 4}, - [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 = 10}, - [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 = 11}, - [648] = {.lex_state = 0, .external_lex_state = 11}, - [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 = 0, .external_lex_state = 4}, - [656] = {.lex_state = 0, .external_lex_state = 4}, - [657] = {.lex_state = 41}, - [658] = {.lex_state = 0, .external_lex_state = 11}, - [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 = 11}, - [666] = {.lex_state = 0, .external_lex_state = 4}, - [667] = {.lex_state = 0, .external_lex_state = 11}, - [668] = {.lex_state = 0, .external_lex_state = 4}, + [632] = {.lex_state = 0}, + [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}, + [639] = {.lex_state = 0, .external_lex_state = 5}, + [640] = {.lex_state = 0, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [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 = 11}, - [671] = {.lex_state = 0, .external_lex_state = 4}, - [672] = {.lex_state = 41}, + [670] = {.lex_state = 0, .external_lex_state = 5}, + [671] = {.lex_state = 0, .external_lex_state = 5}, + [672] = {.lex_state = 0, .external_lex_state = 12}, [673] = {.lex_state = 0, .external_lex_state = 5}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 0, .external_lex_state = 4}, - [677] = {.lex_state = 0, .external_lex_state = 4}, + [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}, }; enum { @@ -12491,6 +12502,7 @@ 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] = { @@ -12502,9 +12514,10 @@ 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[12][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_quoted_template_start] = true, [ts_external_token_quoted_template_end] = true, @@ -12514,45 +12527,49 @@ static const bool ts_external_scanner_states[12][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_quoted_template_start] = true, + [ts_external_token__shim] = true, }, [3] = { [ts_external_token_quoted_template_start] = true, - [ts_external_token_template_interpolation_end] = true, }, [4] = { - [ts_external_token_template_directive_end] = true, - }, - [5] = { + [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_literal_chunk] = true, - [ts_external_token_template_interpolation_start] = true, - [ts_external_token_template_directive_start] = true, + [ts_external_token_template_interpolation_end] = 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__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, }, - [9] = { + [10] = { [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, }, - [10] = { + [11] = { [ts_external_token_quoted_template_end] = true, }, - [11] = { + [12] = { [ts_external_token_heredoc_identifier] = true, }, }; @@ -12613,93 +12630,95 @@ 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(654), - [sym_body] = STATE(675), - [sym_attribute] = STATE(411), - [sym_block] = STATE(411), - [sym_object] = STATE(675), + [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(411), + [aux_sym_body_repeat1] = STATE(416), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym__whitespace] = ACTIONS(3), + [sym__shim] = ACTIONS(11), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 30, - ACTIONS(11), 1, - anon_sym_LBRACE, ACTIONS(13), 1, - anon_sym_RBRACE, + anon_sym_LBRACE, ACTIONS(15), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(58), 1, + STATE(80), 1, sym_for_intro, - STATE(153), 1, + STATE(196), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(620), 1, + STATE(615), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12709,74 +12728,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [107] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, - sym_quoted_template_start, + anon_sym_LT_LT_DASH, ACTIONS(39), 1, + sym_quoted_template_start, + ACTIONS(41), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(54), 1, + STATE(50), 1, sym_for_intro, - STATE(255), 1, + STATE(155), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(581), 1, + STATE(610), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12786,74 +12805,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [214] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(78), 1, + STATE(45), 1, sym_for_intro, - STATE(194), 1, + STATE(255), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(585), 1, + STATE(609), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12863,74 +12882,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [321] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(72), 1, + STATE(59), 1, sym_for_intro, - STATE(298), 1, + STATE(299), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(622), 1, + STATE(626), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -12940,74 +12959,74 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [428] = 30, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(45), 1, + ACTIONS(47), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(63), 1, + STATE(72), 1, sym_for_intro, - STATE(323), 1, + STATE(309), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(565), 1, + STATE(582), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13017,71 +13036,71 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [535] = 28, - ACTIONS(47), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(50), 1, - anon_sym_RBRACE, - ACTIONS(52), 1, + ACTIONS(17), 1, sym_identifier, - ACTIONS(55), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(58), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(61), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(67), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(70), 1, - anon_sym_COMMA, - ACTIONS(73), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(79), 1, + ACTIONS(35), 1, anon_sym_LT_LT, - ACTIONS(82), 1, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(85), 1, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + ACTIONS(49), 1, + anon_sym_RBRACE, + ACTIONS(51), 1, + anon_sym_COMMA, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(40), 1, + STATE(22), 1, sym__comma, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(64), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(76), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(7), 2, + STATE(8), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13091,71 +13110,71 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [637] = 28, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(88), 1, + ACTIONS(53), 1, anon_sym_RBRACE, - ACTIONS(90), 1, + ACTIONS(55), 1, anon_sym_COMMA, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(22), 1, + STATE(26), 1, sym__comma, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(11), 2, + STATE(14), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13165,72 +13184,72 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [739] = 29, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(92), 1, + ACTIONS(57), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(52), 1, + STATE(51), 1, sym_for_intro, - STATE(264), 1, + STATE(294), 1, sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(420), 1, + STATE(426), 1, sym_expression, - STATE(560), 1, + STATE(575), 1, sym__tuple_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13240,72 +13259,72 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [843] = 29, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, - anon_sym_LBRACK, + sym_null_lit, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_for, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(94), 1, + ACTIONS(59), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(50), 1, + STATE(79), 1, sym_for_intro, - STATE(286), 1, + STATE(205), 1, sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(420), 1, + STATE(426), 1, sym_expression, - STATE(602), 1, + STATE(569), 1, sym__tuple_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13314,297 +13333,297 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [947] = 28, - ACTIONS(11), 1, + [947] = 29, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, + ACTIONS(31), 1, + anon_sym_for, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(96), 1, - anon_sym_RBRACE, - ACTIONS(98), 1, - anon_sym_COMMA, - STATE(4), 1, + ACTIONS(61), 1, + anon_sym_RBRACK, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(28), 1, - sym__comma, + STATE(58), 1, + sym_for_intro, + STATE(312), 1, + sym_tuple_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(426), 1, sym_expression, - STATE(648), 1, + STATE(573), 1, + sym__tuple_elems, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(7), 2, + 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, + [1051] = 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(63), 1, + anon_sym_RBRACK, + STATE(2), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(55), 1, + sym_for_intro, + STATE(167), 1, + sym_tuple_end, + STATE(403), 1, + sym_conditional, + STATE(426), 1, + sym_expression, + STATE(596), 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, + [1155] = 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(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, + anon_sym_RBRACE, + ACTIONS(72), 1, + sym_identifier, + ACTIONS(75), 1, + anon_sym_LPAREN, + ACTIONS(78), 1, + aux_sym_numeric_lit_token1, + ACTIONS(81), 1, + aux_sym_numeric_lit_token2, + ACTIONS(87), 1, + sym_null_lit, + ACTIONS(90), 1, + anon_sym_COMMA, + ACTIONS(93), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_LT_LT, + ACTIONS(102), 1, + anon_sym_LT_LT_DASH, + ACTIONS(105), 1, + sym_quoted_template_start, + STATE(2), 1, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(40), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(500), 1, + sym_expression, + STATE(647), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(84), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(96), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(14), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 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, - [1049] = 29, - 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(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(100), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(77), 1, - sym_for_intro, - STATE(213), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(567), 1, - sym__tuple_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, - [1153] = 29, - 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(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(102), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(57), 1, - sym_for_intro, - STATE(317), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(578), 1, - sym__tuple_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, - [1257] = 29, - 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(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(104), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(55), 1, - sym_for_intro, - STATE(165), 1, - sym_tuple_end, - STATE(403), 1, - sym_conditional, - STATE(420), 1, - sym_expression, - STATE(595), 1, - sym__tuple_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, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13614,70 +13633,70 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1361] = 28, - ACTIONS(11), 1, + ACTIONS(13), 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, + 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(8), 1, + STATE(7), 1, sym_object_elem, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(194), 1, + STATE(196), 1, sym_object_end, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(585), 1, + STATE(615), 1, sym__object_elems, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13687,68 +13706,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1462] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(106), 1, + ACTIONS(108), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(297), 1, + STATE(191), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(597), 1, + STATE(585), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13758,68 +13777,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1560] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(108), 1, + ACTIONS(110), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(143), 1, + STATE(169), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(599), 1, + STATE(631), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13829,68 +13848,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1658] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(110), 1, + ACTIONS(112), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(191), 1, + STATE(286), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(554), 1, + STATE(576), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13900,68 +13919,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1756] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(112), 1, + ACTIONS(114), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(339), 1, + STATE(268), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(603), 1, + STATE(597), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13971,68 +13990,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1854] = 27, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(114), 1, + ACTIONS(116), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(267), 1, + STATE(302), 1, sym__function_call_end, STATE(403), 1, sym_conditional, - STATE(414), 1, + STATE(412), 1, sym_expression, - STATE(580), 1, + STATE(574), 1, sym_function_arguments, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14042,66 +14061,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [1952] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(130), 1, - sym_strip_marker, ACTIONS(132), 1, - sym_quoted_template_start, + sym_strip_marker, ACTIONS(134), 1, + sym_quoted_template_start, + ACTIONS(136), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(534), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(538), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14111,66 +14130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2047] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - ACTIONS(96), 1, + ACTIONS(53), 1, anon_sym_RBRACE, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(350), 1, + STATE(351), 1, sym_object_elem, STATE(403), 1, sym_conditional, - STATE(533), 1, + STATE(500), 1, sym_expression, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14180,66 +14199,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2142] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(136), 1, - sym_strip_marker, ACTIONS(138), 1, + sym_strip_marker, + ACTIONS(140), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(497), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(541), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14249,66 +14268,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2237] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(140), 1, - sym_strip_marker, ACTIONS(142), 1, + sym_strip_marker, + ACTIONS(144), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(545), 1, + STATE(521), 1, sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14318,66 +14337,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2332] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, - ACTIONS(144), 1, - sym_strip_marker, ACTIONS(146), 1, + sym_strip_marker, + ACTIONS(148), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(503), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(552), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14387,66 +14406,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2427] = 26, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(118), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(120), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(122), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(132), 1, + 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(148), 1, - sym_strip_marker, ACTIONS(150), 1, - sym_template_interpolation_end, - STATE(6), 1, + anon_sym_RBRACE, + STATE(2), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(521), 1, - sym_expression, - STATE(548), 1, + 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(124), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14456,66 +14475,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2522] = 26, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, ACTIONS(118), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(120), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(122), 1, + aux_sym_numeric_lit_token1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(134), 1, sym_quoted_template_start, ACTIONS(152), 1, sym_strip_marker, ACTIONS(154), 1, sym_template_interpolation_end, - STATE(6), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(11), 1, sym_tuple_start, - STATE(514), 1, - sym_expression, - STATE(548), 1, + STATE(532), 1, sym_conditional, - STATE(647), 1, + STATE(549), 1, + sym_expression, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, + STATE(336), 2, sym_tuple, sym_object, - STATE(340), 3, + 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(219), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14525,66 +14544,66 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [2617] = 26, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + 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(156), 1, - anon_sym_RBRACE, - STATE(4), 1, + sym_strip_marker, + ACTIONS(158), 1, + sym_template_interpolation_end, + STATE(5), 1, sym_object_start, - STATE(12), 1, + STATE(11), 1, sym_tuple_start, - STATE(350), 1, - sym_object_elem, - STATE(403), 1, - sym_conditional, - STATE(533), 1, + STATE(523), 1, sym_expression, - STATE(648), 1, + STATE(532), 1, + sym_conditional, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(336), 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, + STATE(341), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + 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(129), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14597,17 +14616,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(160), 2, + STATE(144), 2, sym_new_index, sym_legacy_index, - STATE(170), 2, + STATE(164), 2, sym_attr_splat, sym_full_splat, - STATE(169), 3, + STATE(166), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(160), 12, + ACTIONS(162), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14620,7 +14639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(158), 20, + ACTIONS(160), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14642,5023 +14661,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [2766] = 25, - ACTIONS(11), 1, + ACTIONS(13), 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(162), 1, - anon_sym_RPAREN, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [2858] = 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, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, ACTIONS(164), 1, anon_sym_RPAREN, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [2950] = 8, - ACTIONS(172), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(170), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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, - 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_DASH, - anon_sym_PLUS, - 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, - anon_sym_LT_LT, - ACTIONS(166), 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, - [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, - 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(198), 1, - anon_sym_RBRACK, - STATE(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(403), 1, - sym_conditional, - STATE(429), 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, - [3490] = 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(4), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(350), 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, - 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, - [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(429), 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, - 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, + STATE(2), 1, sym_object_start, STATE(10), 1, sym_tuple_start, - STATE(515), 1, - sym_expression, - STATE(549), 1, + STATE(403), 1, sym_conditional, - 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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [4119] = 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(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(511), 1, + STATE(434), 1, sym_expression, - STATE(548), 1, - sym_conditional, STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, - [4208] = 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(589), 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, + ACTIONS(33), 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, + sym_for_tuple_expr, + sym_for_object_expr, 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, - [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(412), 1, - sym_expression, - STATE(422), 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(422), 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(409), 1, - sym_expression, - STATE(422), 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(421), 1, - sym_expression, - STATE(422), 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(422), 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(422), 1, - sym_conditional, - STATE(425), 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(413), 1, - sym_expression, - STATE(422), 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(422), 1, - sym_conditional, - STATE(424), 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, - [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(346), 1, - sym_expression, - STATE(347), 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(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, - 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(524), 1, - sym_expression, - STATE(549), 1, - sym_conditional, - 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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [5543] = 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(593), 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, - [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(422), 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(429), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(422), 1, - sym_conditional, - STATE(430), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - 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_conditional, - STATE(348), 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(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(422), 1, - sym_conditional, - STATE(428), 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, - [6878] = 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(596), 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, - [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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - 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(591), 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, - [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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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(160), 2, - sym_new_index, - sym_legacy_index, - STATE(90), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(252), 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(250), 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(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(256), 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(254), 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(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(92), 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, - [8019] = 7, - ACTIONS(186), 1, - anon_sym_LBRACK, - ACTIONS(188), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 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, - [8073] = 7, - ACTIONS(270), 1, - anon_sym_LBRACK, - ACTIONS(273), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(160), 2, - sym_new_index, - sym_legacy_index, - STATE(93), 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, - [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, - 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(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(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(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, - [8293] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8376] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8459] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 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, - [8542] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(218), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8625] = 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(236), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [8708] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, - [8791] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(226), 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(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(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(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(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, - [8957] = 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(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(302), 2, - sym_tuple, - sym_object, - STATE(306), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(216), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [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(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(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, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -19674,59 +14727,125 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9538] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, + [2858] = 18, + ACTIONS(170), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(172), 1, + anon_sym_DOT, + ACTIONS(174), 1, + anon_sym_DOT_STAR, + ACTIONS(176), 1, + anon_sym_LBRACK_STAR_RBRACK, + ACTIONS(182), 1, + anon_sym_SLASH, + ACTIONS(190), 1, + anon_sym_AMP_AMP, + ACTIONS(192), 1, + anon_sym_PIPE_PIPE, + 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(168), 7, 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, + anon_sym_true, + anon_sym_false, sym_null_lit, - ACTIONS(232), 1, + anon_sym_BANG, + anon_sym_LT_LT, + ACTIONS(166), 8, sym_quoted_template_start, - STATE(3), 1, + 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, + [2936] = 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(194), 1, + anon_sym_RPAREN, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19735,59 +14854,376 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9621] = 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, + [3028] = 8, + ACTIONS(182), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + 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, - 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, + anon_sym_true, + anon_sym_false, sym_null_lit, - ACTIONS(232), 1, + 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, - STATE(3), 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_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, + 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), 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, + [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, + 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, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_BANG, + 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, + 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(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(183), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19796,59 +15232,65 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9704] = 22, - ACTIONS(11), 1, + [3490] = 25, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + 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(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(178), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19857,59 +15299,65 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9787] = 22, - ACTIONS(11), 1, + [3582] = 25, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + ACTIONS(202), 1, + anon_sym_RBRACK, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(434), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, - STATE(254), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(256), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(257), 2, + STATE(201), 2, sym_unary_operation, sym_binary_operation, - STATE(258), 2, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, - STATE(253), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(182), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19918,40 +15366,434 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9870] = 22, - ACTIONS(11), 1, + [3674] = 24, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(118), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(120), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(134), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(9), 1, + STATE(11), 1, sym_tuple_start, - STATE(665), 1, + STATE(520), 1, + sym_expression, + STATE(532), 1, + sym_conditional, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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, @@ -19979,40 +15821,4217 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [9953] = 22, - ACTIONS(11), 1, + [4297] = 24, + ACTIONS(13), 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, + ACTIONS(17), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(21), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(27), 1, sym_null_lit, - ACTIONS(232), 1, + 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(3), 1, + STATE(2), 1, sym_object_start, - STATE(9), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(403), 1, + sym_conditional, + STATE(557), 1, + sym_expression, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(346), 1, + sym_expression, + STATE(347), 1, + sym_conditional, + 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, + [5365] = 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(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, + sym_conditional, + STATE(592), 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, + [7145] = 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(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, + 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(425), 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, + [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, + 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, + [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, + 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, + [8293] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(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, + [8376] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(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, + [8459] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(216), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8542] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(218), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8625] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(235), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8708] = 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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(226), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [8791] = 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(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, + sym_quoted_template_start, + STATE(6), 1, + sym_object_start, + STATE(9), 1, + sym_tuple_start, + 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(236), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [9372] = 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(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, + 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, + 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(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, @@ -20041,39 +20060,39 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10036] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, ACTIONS(220), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(222), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(224), 1, + aux_sym_numeric_lit_token1, + ACTIONS(226), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(230), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(234), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym_object_start, - STATE(9), 1, + STATE(13), 1, sym_tuple_start, - STATE(665), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, STATE(254), 2, @@ -20092,7 +20111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(176), 8, + STATE(181), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20102,58 +20121,58 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10119] = 22, - ACTIONS(11), 1, + ACTIONS(13), 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, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + 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(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(648), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(232), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(201), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(135), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20163,58 +20182,58 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10202] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(220), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(222), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(226), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(230), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(234), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(4), 1, sym_object_start, - STATE(10), 1, + STATE(13), 1, sym_tuple_start, - STATE(670), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(228), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(232), 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(302), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(306), 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(224), 8, + STATE(178), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20224,54 +20243,115 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10285] = 22, - ACTIONS(11), 1, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(27), 1, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, + anon_sym_LT_LT, + ACTIONS(37), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(118), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(120), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(124), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(128), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(134), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(14), 1, + STATE(11), 1, sym_tuple_start, - STATE(667), 1, + STATE(649), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(126), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(130), 2, anon_sym_DASH, anon_sym_BANG, - STATE(152), 2, + STATE(336), 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, + STATE(341), 2, sym_quoted_template, sym_heredoc_template, - STATE(151), 3, + 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, + sym_quoted_template, + sym_heredoc_template, + STATE(153), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -20284,418 +20364,52 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [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(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(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, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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(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(329), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(332), 2, - sym_unary_operation, - sym_binary_operation, - STATE(333), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(337), 2, - sym_tuple, - sym_object, - STATE(340), 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, + ACTIONS(39), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(14), 1, + STATE(10), 1, sym_tuple_start, - STATE(667), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(25), 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, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + STATE(201), 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, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -20711,52 +20425,235 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10949] = 22, - ACTIONS(11), 1, + [10534] = 22, + ACTIONS(13), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, ACTIONS(17), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(19), 1, - aux_sym_numeric_lit_token1, + anon_sym_LPAREN, ACTIONS(21), 1, + aux_sym_numeric_lit_token1, + ACTIONS(23), 1, aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, + sym_null_lit, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, ACTIONS(35), 1, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT, ACTIONS(37), 1, + anon_sym_LT_LT_DASH, + ACTIONS(39), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(648), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(25), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_DASH, anon_sym_BANG, STATE(193), 2, sym_tuple, sym_object, - STATE(196), 2, + STATE(197), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(197), 2, + 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(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, + [10617] = 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, + 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(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, + [10700] = 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, + 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(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, + [10783] = 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, + sym_unary_operation, + sym_binary_operation, + STATE(204), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -20772,52 +20669,505 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [11032] = 18, - ACTIONS(184), 1, - anon_sym_EQ, - ACTIONS(276), 1, + [10866] = 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(278), 1, - anon_sym_DOT, - ACTIONS(280), 1, - anon_sym_DOT_STAR, + 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, + 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(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, + [10949] = 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, + 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(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, + [11032] = 13, ACTIONS(282), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(288), 1, anon_sym_SLASH, - ACTIONS(296), 1, + 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, + ACTIONS(294), 1, + anon_sym_DOT, + 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, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(280), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_GT, + anon_sym_LT, ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(294), 2, + ACTIONS(288), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, sym_new_index, sym_legacy_index, - STATE(204), 3, + STATE(215), 2, + sym_attr_splat, + sym_full_splat, + STATE(211), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(182), 10, + ACTIONS(166), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20828,358 +21178,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [11106] = 13, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(296), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11170] = 12, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11232] = 11, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(286), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(199), 2, - sym_attr_splat, - sym_full_splat, - STATE(211), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(168), 3, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(204), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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, - [11292] = 9, - ACTIONS(288), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(284), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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), 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, - [11348] = 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, - 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, - ACTIONS(160), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(158), 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, [11502] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(138), 3, + STATE(139), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(252), 4, + ACTIONS(254), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(250), 22, + ACTIONS(252), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21203,26 +21222,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11552] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(142), 3, + STATE(140), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(256), 4, + ACTIONS(262), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(254), 22, + ACTIONS(260), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21246,26 +21265,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11602] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, - STATE(140), 3, + STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(260), 4, + ACTIONS(258), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(258), 22, + ACTIONS(256), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21289,26 +21308,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11652] = 7, - ACTIONS(276), 1, + ACTIONS(292), 1, anon_sym_LBRACK, - ACTIONS(278), 1, + ACTIONS(294), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(264), 4, + ACTIONS(266), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(262), 22, + ACTIONS(264), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21332,14 +21351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [11702] = 5, - ACTIONS(304), 1, + ACTIONS(306), 1, anon_sym_LPAREN, STATE(17), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 12, + ACTIONS(304), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21352,7 +21371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(300), 19, + ACTIONS(302), 19, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21373,26 +21392,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [11748] = 7, - ACTIONS(306), 1, + ACTIONS(308), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(311), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(211), 2, + STATE(199), 2, sym_new_index, sym_legacy_index, STATE(142), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(268), 4, + ACTIONS(270), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(266), 22, + ACTIONS(268), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -21419,7 +21438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 12, + ACTIONS(316), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21432,7 +21451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(312), 20, + ACTIONS(314), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21457,7 +21476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 12, + ACTIONS(320), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21470,7 +21489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(316), 20, + ACTIONS(318), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21495,7 +21514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 12, + ACTIONS(324), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21508,7 +21527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(320), 20, + ACTIONS(322), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21533,7 +21552,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 12, + ACTIONS(328), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21546,7 +21565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(324), 20, + ACTIONS(326), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21571,7 +21590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 12, + ACTIONS(332), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21584,7 +21603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(328), 20, + ACTIONS(330), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21609,7 +21628,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 12, + ACTIONS(336), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21622,7 +21641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(332), 20, + ACTIONS(334), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21647,7 +21666,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 12, + ACTIONS(340), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21660,7 +21679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(336), 20, + ACTIONS(338), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21685,7 +21704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 12, + ACTIONS(344), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21698,7 +21717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(340), 20, + ACTIONS(342), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21723,7 +21742,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 12, + ACTIONS(348), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21736,7 +21755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(344), 20, + ACTIONS(346), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21761,7 +21780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 12, + ACTIONS(352), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21774,7 +21793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(348), 20, + ACTIONS(350), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21799,7 +21818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 12, + ACTIONS(356), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21812,7 +21831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(352), 20, + ACTIONS(354), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21837,7 +21856,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 12, + ACTIONS(360), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21850,7 +21869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(356), 20, + ACTIONS(358), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21875,7 +21894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 12, + ACTIONS(364), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21888,7 +21907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(360), 20, + ACTIONS(362), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21913,7 +21932,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 12, + ACTIONS(368), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21926,7 +21945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(364), 20, + ACTIONS(366), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21951,7 +21970,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 12, + ACTIONS(372), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -21964,7 +21983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(368), 20, + ACTIONS(370), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21989,7 +22008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 12, + ACTIONS(376), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22002,7 +22021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(372), 20, + ACTIONS(374), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22027,7 +22046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 12, + ACTIONS(380), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22040,7 +22059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(376), 20, + ACTIONS(378), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22065,7 +22084,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 12, + ACTIONS(384), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22078,7 +22097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(380), 20, + ACTIONS(382), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22103,7 +22122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 12, + ACTIONS(388), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22116,7 +22135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(384), 20, + ACTIONS(386), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22141,7 +22160,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 12, + ACTIONS(392), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22154,7 +22173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(388), 20, + ACTIONS(390), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22179,7 +22198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 12, + ACTIONS(396), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22192,7 +22211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(392), 20, + ACTIONS(394), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22217,7 +22236,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 12, + ACTIONS(400), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22230,7 +22249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(396), 20, + ACTIONS(398), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22255,7 +22274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 12, + ACTIONS(404), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22268,7 +22287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(400), 20, + ACTIONS(402), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22293,7 +22312,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 12, + ACTIONS(408), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22306,7 +22325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(404), 20, + ACTIONS(406), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22331,7 +22350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 12, + ACTIONS(412), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22344,7 +22363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(408), 20, + ACTIONS(410), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22369,7 +22388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 12, + ACTIONS(416), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22382,7 +22401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(412), 20, + ACTIONS(414), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22407,7 +22426,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 12, + ACTIONS(420), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22420,7 +22439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(416), 20, + ACTIONS(418), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22445,7 +22464,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 12, + ACTIONS(424), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22458,7 +22477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(420), 20, + ACTIONS(422), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22483,7 +22502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 12, + ACTIONS(428), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22496,7 +22515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(424), 20, + ACTIONS(426), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22521,7 +22540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 12, + ACTIONS(432), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22534,7 +22553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(428), 20, + ACTIONS(430), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22559,7 +22578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 12, + ACTIONS(436), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22572,7 +22591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(432), 20, + ACTIONS(434), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22597,7 +22616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 12, + ACTIONS(440), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -22610,7 +22629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(436), 20, + ACTIONS(438), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22632,21 +22651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [13110] = 5, - ACTIONS(440), 1, + ACTIONS(442), 1, anon_sym_LPAREN, - STATE(18), 1, + STATE(16), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 6, + ACTIONS(304), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 22, + ACTIONS(302), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22670,245 +22689,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [13153] = 13, - ACTIONS(446), 1, + ACTIONS(448), 1, anon_sym_SLASH, - ACTIONS(454), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(452), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_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), 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, - [13211] = 12, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(452), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_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), 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, - [13267] = 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(168), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(166), 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, - [13311] = 17, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(454), 1, - anon_sym_AMP_AMP, ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_DOT, - ACTIONS(460), 1, - anon_sym_DOT_STAR, - ACTIONS(462), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(464), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(442), 2, + ACTIONS(198), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(444), 2, + ACTIONS(446), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(448), 2, + ACTIONS(450), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(450), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(452), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(182), 5, + ACTIONS(196), 8, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [13377] = 11, - ACTIONS(446), 1, + 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, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(442), 2, + ACTIONS(444), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(444), 2, + ACTIONS(446), 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(158), 17, + 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, anon_sym_DOT_STAR, @@ -22916,44 +22813,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13475] = 9, - ACTIONS(446), 1, + [13311] = 11, + ACTIONS(448), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, + 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, - STATE(261), 2, + 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(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 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, + ACTIONS(196), 11, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22961,6 +22854,132 @@ 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, + [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, + 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, + 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(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, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, + sym_attr_splat, + sym_full_splat, + STATE(261), 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), 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, @@ -22968,30 +22987,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [13525] = 8, - ACTIONS(446), 1, + ACTIONS(448), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(444), 2, + ACTIONS(446), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(262), 2, + STATE(264), 2, sym_attr_splat, sym_full_splat, - STATE(260), 3, + STATE(261), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(166), 15, + ACTIONS(196), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -23011,14 +23030,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 6, + ACTIONS(396), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 22, + ACTIONS(394), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23045,14 +23064,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 6, + ACTIONS(340), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 22, + ACTIONS(338), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23079,14 +23098,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 6, + ACTIONS(368), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 22, + ACTIONS(366), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23113,14 +23132,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 6, + ACTIONS(324), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 22, + ACTIONS(322), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23147,14 +23166,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 6, + ACTIONS(332), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 22, + ACTIONS(330), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23181,14 +23200,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 6, + ACTIONS(336), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 22, + ACTIONS(334), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23215,14 +23234,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 6, + ACTIONS(440), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 22, + ACTIONS(438), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23249,14 +23268,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 6, + ACTIONS(420), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 22, + ACTIONS(418), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23283,14 +23302,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 6, + ACTIONS(356), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 22, + ACTIONS(354), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23317,14 +23336,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 6, + ACTIONS(360), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 22, + ACTIONS(358), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23351,14 +23370,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 6, + ACTIONS(316), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 22, + ACTIONS(314), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23385,14 +23404,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 6, + ACTIONS(372), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 22, + ACTIONS(370), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23419,14 +23438,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 6, + ACTIONS(364), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 22, + ACTIONS(362), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23453,14 +23472,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 6, + ACTIONS(376), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 22, + ACTIONS(374), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23487,14 +23506,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 6, + ACTIONS(348), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 22, + ACTIONS(346), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23521,14 +23540,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 6, + ACTIONS(320), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 22, + ACTIONS(318), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23555,14 +23574,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 6, + ACTIONS(436), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 22, + ACTIONS(434), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23589,14 +23608,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 6, + ACTIONS(384), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 22, + ACTIONS(382), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23623,14 +23642,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 6, + ACTIONS(344), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 22, + ACTIONS(342), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23657,14 +23676,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 6, + ACTIONS(428), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 22, + ACTIONS(426), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23691,14 +23710,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 6, + ACTIONS(392), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 22, + ACTIONS(390), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23725,14 +23744,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 6, + ACTIONS(412), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 22, + ACTIONS(410), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23759,14 +23778,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 6, + ACTIONS(380), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 22, + ACTIONS(378), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23793,14 +23812,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 6, + ACTIONS(388), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 22, + ACTIONS(386), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23827,14 +23846,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 6, + ACTIONS(432), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 22, + ACTIONS(430), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23861,14 +23880,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 6, + ACTIONS(328), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 22, + ACTIONS(326), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23895,14 +23914,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 6, + ACTIONS(424), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 22, + ACTIONS(422), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23929,14 +23948,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 6, + ACTIONS(408), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 22, + ACTIONS(406), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23963,14 +23982,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 6, + ACTIONS(404), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 22, + ACTIONS(402), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23997,14 +24016,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 6, + ACTIONS(416), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 22, + ACTIONS(414), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24031,14 +24050,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 6, + ACTIONS(352), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 22, + ACTIONS(350), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24065,14 +24084,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 6, + ACTIONS(400), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 22, + ACTIONS(398), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -24095,193 +24114,38 @@ static const uint16_t ts_small_parse_table[] = { 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(289), 2, - sym_new_index, - sym_legacy_index, - STATE(290), 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_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, - [14799] = 9, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - 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, - 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, - [14889] = 17, + [14757] = 9, ACTIONS(472), 1, - anon_sym_LBRACK, - ACTIONS(474), 1, - anon_sym_DOT, - ACTIONS(476), 1, - anon_sym_DOT_STAR, - ACTIONS(478), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(484), 1, anon_sym_SLASH, - ACTIONS(492), 1, - anon_sym_AMP_AMP, - ACTIONS(494), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(480), 2, + ACTIONS(468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(470), 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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(182), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(338), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - [14953] = 6, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(160), 5, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(158), 15, - sym_template_interpolation_end, + ACTIONS(196), 11, + 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, @@ -24289,26 +24153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14995] = 7, - ACTIONS(496), 1, + [14805] = 7, + ACTIONS(458), 1, anon_sym_LBRACK, - ACTIONS(499), 1, + ACTIONS(460), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(258), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(221), 3, + STATE(219), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 17, + ACTIONS(256), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24326,65 +24190,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15039] = 17, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(502), 1, + [14849] = 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(198), 5, anon_sym_LBRACK, - ACTIONS(504), 1, anon_sym_DOT, - ACTIONS(506), 1, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(196), 15, + sym_template_directive_end, anon_sym_DOT_STAR, - ACTIONS(508), 1, anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(516), 1, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_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(518), 1, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [14891] = 7, + 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, + 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, + 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(466), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(468), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(510), 2, + ACTIONS(494), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(512), 2, + ACTIONS(496), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(514), 2, + ACTIONS(498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(182), 3, - sym_template_directive_end, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(166), 3, + sym_template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - STATE(290), 3, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - [15103] = 7, - ACTIONS(456), 1, + [14999] = 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(162), 5, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(160), 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, + [15041] = 17, + ACTIONS(472), 1, + anon_sym_SLASH, + ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, + anon_sym_DOT, + ACTIONS(508), 1, + anon_sym_DOT_STAR, + 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(261), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - ACTIONS(260), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -24392,7 +24412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(258), 17, + ACTIONS(260), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24410,249 +24430,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15147] = 13, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(516), 1, - anon_sym_AMP_AMP, + [15149] = 7, + ACTIONS(458), 1, + anon_sym_LBRACK, + ACTIONS(460), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - 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(289), 2, + STATE(262), 2, sym_new_index, sym_legacy_index, - STATE(290), 3, - sym_index, - sym_get_attr, - sym_splat, - 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, + ACTIONS(254), 3, anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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(289), 2, - sym_new_index, - sym_legacy_index, - STATE(290), 3, + STATE(217), 3, sym_index, sym_get_attr, - sym_splat, - ACTIONS(166), 7, - sym_template_directive_end, + 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, - sym_strip_marker, - [15257] = 13, - ACTIONS(484), 1, - anon_sym_SLASH, + [15193] = 13, ACTIONS(492), 1, + anon_sym_SLASH, + ACTIONS(500), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(480), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(486), 2, + ACTIONS(494), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(488), 2, + ACTIONS(496), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(490), 2, + ACTIONS(498), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 6, + 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, - [15313] = 12, - ACTIONS(484), 1, + [15249] = 13, + ACTIONS(472), 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_EQ_EQ, - anon_sym_BANG_EQ, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 7, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, + ACTIONS(518), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15367] = 11, - ACTIONS(470), 1, - anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(466), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(468), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(510), 2, - anon_sym_GT, - anon_sym_LT, ACTIONS(512), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(514), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + ACTIONS(516), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(291), 2, sym_new_index, sym_legacy_index, - STATE(290), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 9, + ACTIONS(196), 6, 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, - [15419] = 11, - ACTIONS(484), 1, + [15305] = 12, + ACTIONS(492), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(168), 2, + ACTIONS(198), 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_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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + ACTIONS(498), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(166), 9, + 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, @@ -24662,34 +24636,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15471] = 9, - ACTIONS(484), 1, + [15411] = 9, + ACTIONS(492), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(480), 2, + ACTIONS(488), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(482), 2, + ACTIONS(490), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - STATE(338), 3, + STATE(316), 2, + sym_attr_splat, + sym_full_splat, + STATE(318), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + ACTIONS(198), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(166), 11, + ACTIONS(196), 11, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24701,216 +24675,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15519] = 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(252), 3, + [15459] = 12, + ACTIONS(472), 1, anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(235), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [15563] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(168), 5, + ACTIONS(198), 2, 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, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - 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, - [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(300), 2, - sym_attr_splat, - sym_full_splat, - STATE(335), 2, - sym_new_index, - sym_legacy_index, - STATE(338), 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_DASH, + anon_sym_PLUS, + ACTIONS(470), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(289), 2, + 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(290), 3, + STATE(292), 2, + sym_attr_splat, + sym_full_splat, + STATE(285), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(168), 4, + 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(166), 13, + 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, @@ -24924,18 +24907,54 @@ static const uint16_t ts_small_parse_table[] = { 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(472), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(264), 3, + ACTIONS(266), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -24943,7 +24962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(262), 15, + ACTIONS(264), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24960,60 +24979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15827] = 7, - ACTIONS(472), 1, + ACTIONS(522), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(525), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(256), 3, + ACTIONS(270), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(241), 3, + STATE(238), 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, + ACTIONS(268), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25029,26 +25013,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15911] = 7, - ACTIONS(520), 1, + [15869] = 7, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(523), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(258), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(241), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, + ACTIONS(256), 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, + [15911] = 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(254), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(245), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(252), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25065,17 +25084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15953] = 7, - ACTIONS(526), 1, + ACTIONS(528), 1, anon_sym_LBRACK, - ACTIONS(529), 1, + ACTIONS(531), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(268), 3, + ACTIONS(270), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25083,7 +25102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, + ACTIONS(268), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25100,26 +25119,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15995] = 7, - ACTIONS(502), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(504), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(264), 3, + ACTIONS(254), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(239), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(262), 15, - sym_template_directive_end, + ACTIONS(252), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25135,25 +25154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16037] = 7, - ACTIONS(472), 1, + ACTIONS(480), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(482), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(283), 2, sym_new_index, sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(238), 3, + STATE(237), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(260), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25170,17 +25189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16079] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(262), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, @@ -25188,7 +25207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(260), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25205,26 +25224,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16121] = 7, - ACTIONS(472), 1, + ACTIONS(504), 1, anon_sym_LBRACK, - ACTIONS(474), 1, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(335), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(260), 3, + ACTIONS(258), 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(258), 15, - sym_template_interpolation_end, + ACTIONS(256), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25240,25 +25259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16163] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, ACTIONS(504), 1, + anon_sym_LBRACK, + ACTIONS(506), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(289), 2, + STATE(291), 2, sym_new_index, sym_legacy_index, - ACTIONS(256), 3, + ACTIONS(266), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(240), 3, + STATE(238), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(254), 15, + ACTIONS(264), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25275,20 +25294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [16205] = 5, - ACTIONS(532), 1, + ACTIONS(534), 1, anon_sym_LPAREN, - STATE(20), 1, + STATE(19), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(304), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 17, + ACTIONS(302), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25310,13 +25329,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 17, + ACTIONS(410), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25338,13 +25357,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 17, + ACTIONS(378), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25362,21 +25381,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16304] = 5, - ACTIONS(534), 1, - anon_sym_LPAREN, - STATE(16), 1, - sym__function_call_start, + [16304] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 15, + 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, + 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), 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(384), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(382), 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(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, @@ -25392,269 +25663,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [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, - ACTIONS(418), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 17, + ACTIONS(394), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25676,13 +25695,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 17, + ACTIONS(406), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25704,13 +25723,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 17, + ACTIONS(318), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25729,20 +25748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [16711] = 5, - ACTIONS(536), 1, + ACTIONS(538), 1, anon_sym_LPAREN, - STATE(19), 1, + STATE(18), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(302), 5, + ACTIONS(304), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(300), 15, + ACTIONS(302), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -25762,13 +25781,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 17, + ACTIONS(398), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25790,13 +25809,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 17, + ACTIONS(402), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25818,13 +25837,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 17, + ACTIONS(426), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25846,13 +25865,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 17, + ACTIONS(314), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25874,13 +25893,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 17, + ACTIONS(418), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25902,13 +25921,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 17, + ACTIONS(438), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25930,13 +25949,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 17, + ACTIONS(322), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25958,13 +25977,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 17, + ACTIONS(366), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25986,13 +26005,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 17, + ACTIONS(434), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26014,13 +26033,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 17, + ACTIONS(430), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26042,13 +26061,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 17, + ACTIONS(422), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26070,13 +26089,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 17, + ACTIONS(414), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26098,13 +26117,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 17, + ACTIONS(386), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26126,13 +26145,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 17, + ACTIONS(342), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26154,13 +26173,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 17, + ACTIONS(370), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26182,13 +26201,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 17, + ACTIONS(350), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26210,13 +26229,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 17, + ACTIONS(346), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26238,13 +26257,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 17, + ACTIONS(338), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -26266,13 +26285,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(392), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 15, + ACTIONS(390), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26292,13 +26311,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 15, + ACTIONS(318), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26318,13 +26337,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 15, + ACTIONS(314), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26344,13 +26363,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 15, + ACTIONS(406), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26370,14 +26389,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 15, - sym_template_directive_end, + ACTIONS(418), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26396,13 +26415,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(370), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26422,14 +26441,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 15, - sym_template_directive_end, + ACTIONS(438), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26448,14 +26467,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 15, - sym_template_directive_end, + ACTIONS(322), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26474,14 +26493,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 15, - sym_template_directive_end, + ACTIONS(366), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26500,13 +26519,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 5, + ACTIONS(320), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 15, + ACTIONS(318), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26526,13 +26545,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 15, + ACTIONS(398), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26552,14 +26571,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 15, - sym_template_interpolation_end, + ACTIONS(402), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26578,13 +26597,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 15, + ACTIONS(410), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26604,14 +26623,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 15, - sym_template_interpolation_end, + ACTIONS(426), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26630,14 +26649,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 15, - sym_template_directive_end, + ACTIONS(434), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26656,14 +26675,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 15, - sym_template_directive_end, + ACTIONS(430), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26682,13 +26701,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 5, + ACTIONS(316), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 15, + ACTIONS(314), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26708,13 +26727,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(364), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 15, + ACTIONS(362), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26734,14 +26753,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(422), 5, + ACTIONS(360), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(420), 15, - sym_template_interpolation_end, + ACTIONS(358), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26760,13 +26779,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 15, + ACTIONS(422), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26786,13 +26805,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(420), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, + ACTIONS(418), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26812,13 +26831,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(406), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(404), 15, + ACTIONS(414), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26838,13 +26857,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(440), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 15, + ACTIONS(438), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26864,13 +26883,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 15, + ACTIONS(386), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26890,13 +26909,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, + ACTIONS(378), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26916,14 +26935,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(380), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, - sym_template_directive_end, + ACTIONS(378), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26942,14 +26961,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(428), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 15, - sym_template_directive_end, + ACTIONS(426), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26968,13 +26987,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(364), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 15, + ACTIONS(362), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26994,13 +27013,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(324), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 15, + ACTIONS(322), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27020,14 +27039,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(368), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 15, - sym_template_interpolation_end, + ACTIONS(366), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27046,14 +27065,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(358), 5, + ACTIONS(412), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(356), 15, - sym_template_directive_end, + ACTIONS(410), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27072,14 +27091,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(434), 5, + ACTIONS(372), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(432), 15, - sym_template_directive_end, + ACTIONS(370), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27098,13 +27117,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 15, + ACTIONS(350), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27124,14 +27143,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(426), 5, + ACTIONS(404), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(424), 15, - sym_template_directive_end, + ACTIONS(402), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27150,14 +27169,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(414), 5, + ACTIONS(400), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(412), 15, - sym_template_directive_end, + ACTIONS(398), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27176,14 +27195,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 15, - sym_template_interpolation_end, + ACTIONS(394), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27202,13 +27221,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(408), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 15, + ACTIONS(406), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27228,14 +27247,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 15, - sym_template_interpolation_end, + ACTIONS(346), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27254,13 +27273,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(352), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 15, + ACTIONS(350), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27280,13 +27299,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(390), 5, + ACTIONS(384), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(388), 15, + ACTIONS(382), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27306,14 +27325,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(436), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, - sym_template_interpolation_end, + ACTIONS(434), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27332,14 +27351,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(354), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(352), 15, - sym_template_interpolation_end, + ACTIONS(326), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27358,13 +27377,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(394), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(392), 15, + ACTIONS(342), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27384,13 +27403,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 5, + ACTIONS(432), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 15, + ACTIONS(430), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27410,14 +27429,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 15, - sym_template_directive_end, + ACTIONS(338), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27436,13 +27455,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 5, + ACTIONS(344), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 15, + ACTIONS(342), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27462,14 +27481,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(328), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, - sym_template_directive_end, + ACTIONS(326), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27488,13 +27507,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 5, + ACTIONS(332), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 15, + ACTIONS(330), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27514,14 +27533,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(424), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 15, - sym_template_interpolation_end, + ACTIONS(422), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27540,13 +27559,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(416), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(414), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27566,14 +27585,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 5, + ACTIONS(388), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 15, - sym_template_interpolation_end, + ACTIONS(386), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27592,14 +27611,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(386), 5, + ACTIONS(376), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(384), 15, - sym_template_interpolation_end, + ACTIONS(374), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27618,13 +27637,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(410), 5, + ACTIONS(348), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(408), 15, + ACTIONS(346), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27644,13 +27663,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(336), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 15, + ACTIONS(334), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27670,13 +27689,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 5, + ACTIONS(360), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 15, + ACTIONS(358), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27696,13 +27715,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(356), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, + ACTIONS(354), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27722,14 +27741,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 5, + ACTIONS(332), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 15, - sym_template_interpolation_end, + ACTIONS(330), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27748,13 +27767,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(314), 5, + ACTIONS(396), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(312), 15, + ACTIONS(394), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27774,14 +27793,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(336), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, - sym_template_interpolation_end, + ACTIONS(334), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27800,13 +27819,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(392), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, + ACTIONS(390), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27826,14 +27845,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(340), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 15, - sym_template_interpolation_end, + ACTIONS(338), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -27852,13 +27871,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(384), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 15, + ACTIONS(382), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27878,13 +27897,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(356), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 15, + ACTIONS(354), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27904,13 +27923,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(376), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 15, + ACTIONS(374), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27927,19 +27946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [19160] = 4, - ACTIONS(542), 1, + ACTIONS(544), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(540), 6, + ACTIONS(542), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(538), 10, + ACTIONS(540), 10, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27954,14 +27973,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(184), 6, + ACTIONS(168), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(182), 11, + ACTIONS(166), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27977,14 +27996,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(546), 6, + ACTIONS(548), 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(546), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28000,7 +28019,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(550), 7, + ACTIONS(552), 7, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -28008,39 +28027,17 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, anon_sym_for, anon_sym_LT_LT, - ACTIONS(548), 9, + 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, [19265] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(552), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(50), 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, - [19290] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -28055,10 +28052,32 @@ 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, + [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, @@ -28066,14 +28085,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(550), 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(548), 9, + ACTIONS(554), 9, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -28084,94 +28103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LT_LT_DASH, [19339] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, ACTIONS(560), 1, - sym_template_interpolation_start, + sym__template_literal_chunk, ACTIONS(562), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(376), 1, - sym_template_else_intro, - STATE(389), 1, - sym_template_for_start, - 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(360), 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, - aux_sym_numeric_lit_token2, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_LT_LT_DASH, - [19401] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(570), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(568), 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, - [19424] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(572), 1, + ACTIONS(564), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, STATE(381), 1, - sym_template_else_intro, - STATE(389), 1, sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(490), 1, + STATE(387), 1, + sym_template_else_intro, + STATE(458), 1, sym_template_if_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -28179,27 +28130,27 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [19463] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19378] = 11, ACTIONS(560), 1, + sym__template_literal_chunk, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(572), 1, + ACTIONS(566), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(382), 1, - sym_template_else_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(477), 1, + STATE(396), 1, + sym_template_else_intro, + STATE(474), 1, sym_template_if_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(356), 4, @@ -28207,83 +28158,55 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [19502] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19417] = 11, ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(574), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(392), 1, - sym_template_else_intro, - 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, - [19541] = 11, - ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(574), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(394), 1, - sym_template_else_intro, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(528), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(358), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19580] = 11, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, ACTIONS(562), 1, + sym_template_interpolation_start, + ACTIONS(568), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(373), 1, + STATE(363), 1, sym_template_else_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(436), 1, + STATE(494), 1, + aux_sym_template_literal_repeat1, + STATE(547), 1, sym_template_if_end, - STATE(445), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(555), 2, + sym_template_for, + sym_template_if, + STATE(357), 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(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -28291,834 +28214,121 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(572), 6, + sym_identifier, + aux_sym_numeric_lit_token1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + anon_sym_LT_LT, + ACTIONS(570), 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, + [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, + sym__template_literal_chunk, + ACTIONS(562), 1, + sym_template_interpolation_start, + ACTIONS(564), 1, + sym_template_directive_start, + STATE(355), 1, + sym_template_if_intro, + STATE(367), 1, + sym_template_else_intro, + STATE(381), 1, + sym_template_for_start, + STATE(489), 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(353), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, [19619] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, ACTIONS(578), 1, - sym_template_interpolation_start, + sym__template_literal_chunk, ACTIONS(580), 1, - sym_template_directive_start, + sym_template_interpolation_start, ACTIONS(582), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19655] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, sym_template_directive_start, ACTIONS(584), 1, sym_heredoc_identifier, - STATE(357), 1, + STATE(354), 1, sym_template_if_intro, - STATE(393), 1, + STATE(373), 1, sym_template_for_start, - STATE(417), 1, + STATE(428), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19691] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(586), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19727] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(588), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(363), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19763] = 10, - ACTIONS(590), 1, - sym__template_literal_chunk, - ACTIONS(593), 1, - sym_template_interpolation_start, - ACTIONS(596), 1, - sym_template_directive_start, - ACTIONS(599), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19799] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(601), 1, - sym_quoted_template_end, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19835] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(607), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(388), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19871] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [19907] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(611), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [19943] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(613), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - 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(386), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [19981] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(615), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(369), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20017] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(443), 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, - [20053] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(372), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20089] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(619), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(439), 1, - sym_template_for_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, - [20125] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(621), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20161] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - 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(380), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20197] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(623), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, - STATE(487), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(452), 2, - sym_template_for, - sym_template_if, - STATE(375), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20235] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20271] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20307] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(617), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, - [20343] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(378), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20379] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(625), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(379), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20415] = 10, - ACTIONS(596), 1, - sym_template_directive_start, - ACTIONS(599), 1, - sym_quoted_template_end, - ACTIONS(627), 1, - sym__template_literal_chunk, - ACTIONS(630), 1, - sym_template_interpolation_start, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20451] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(633), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 1, - sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, - STATE(441), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(452), 2, - sym_template_for, - sym_template_if, - STATE(387), 3, - aux_sym__template, - sym_template_interpolation, - sym_template_directive, - [20489] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(635), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(362), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20525] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(637), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20561] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(639), 1, - sym_quoted_template_end, - STATE(353), 1, - sym_template_if_intro, - STATE(399), 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(383), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20597] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(641), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(365), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20633] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(643), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(539), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(391), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20669] = 10, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(645), 1, - sym_heredoc_identifier, - STATE(357), 1, - sym_template_if_intro, - STATE(393), 1, - sym_template_for_start, - STATE(417), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(446), 2, - sym_template_for, - sym_template_if, - STATE(361), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20705] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(643), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(498), 1, - sym_template_for_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, - [20741] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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, + STATE(491), 2, sym_template_for, sym_template_if, STATE(368), 4, @@ -29126,103 +28336,77 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20777] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(647), 1, + [19655] = 10, + ACTIONS(582), 1, sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(475), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(398), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20813] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, - ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(609), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 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(396), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [20849] = 10, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, - sym__template_literal_chunk, - ACTIONS(605), 1, - sym_template_interpolation_start, - ACTIONS(649), 1, + ACTIONS(586), 1, sym_quoted_template_end, - STATE(353), 1, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + STATE(360), 1, sym_template_if_intro, - STATE(399), 1, + STATE(389), 1, sym_template_for_start, - STATE(423), 1, + STATE(421), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + STATE(472), 2, sym_template_for, sym_template_if, - STATE(383), 4, + STATE(379), 4, aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - [20885] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, + [19691] = 10, ACTIONS(560), 1, + sym__template_literal_chunk, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(609), 1, + ACTIONS(592), 1, sym_template_directive_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, + STATE(494), 1, aux_sym_template_literal_repeat1, - STATE(510), 1, + STATE(535), 1, sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + 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, @@ -29230,52 +28414,914 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20921] = 11, - ACTIONS(580), 1, + [19763] = 11, + ACTIONS(582), 1, sym_template_directive_start, - ACTIONS(603), 1, + ACTIONS(588), 1, sym__template_literal_chunk, - ACTIONS(605), 1, + ACTIONS(590), 1, sym_template_interpolation_start, - ACTIONS(651), 1, + ACTIONS(596), 1, sym_quoted_template_end, - STATE(353), 1, + STATE(360), 1, sym_template_if_intro, - STATE(399), 1, + STATE(389), 1, sym_template_for_start, - STATE(423), 1, + STATE(421), 1, aux_sym_template_literal_repeat1, - STATE(479), 1, + STATE(457), 1, sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + 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, + sym_template_for, + sym_template_if, + STATE(399), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20381] = 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(392), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20417] = 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(527), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(555), 2, + sym_template_for, + sym_template_if, + STATE(369), 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, + sym_template_directive_start, + ACTIONS(639), 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(394), 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, + sym_template_directive_start, + ACTIONS(641), 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(395), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20525] = 10, + ACTIONS(582), 1, + sym_template_directive_start, + ACTIONS(588), 1, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(643), 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, + [20561] = 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(371), 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, + sym__template_literal_chunk, + ACTIONS(590), 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, + sym_template_directive_start, + STATE(355), 1, + sym_template_if_intro, + STATE(381), 1, + sym_template_for_start, + STATE(484), 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(376), 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, + 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, + sym__template_literal_chunk, + ACTIONS(590), 1, + sym_template_interpolation_start, + ACTIONS(647), 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(444), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(472), 2, + sym_template_for, + sym_template_if, + STATE(386), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [20743] = 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(467), 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, + [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, - [20959] = 10, - ACTIONS(558), 1, + [20961] = 10, + ACTIONS(578), 1, sym__template_literal_chunk, - ACTIONS(560), 1, + ACTIONS(580), 1, sym_template_interpolation_start, - ACTIONS(647), 1, + ACTIONS(582), 1, sym_template_directive_start, - STATE(359), 1, + ACTIONS(655), 1, + sym_heredoc_identifier, + STATE(354), 1, sym_template_if_intro, - STATE(389), 1, + STATE(373), 1, sym_template_for_start, - STATE(445), 1, + STATE(428), 1, aux_sym_template_literal_repeat1, - STATE(491), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(491), 2, + sym_template_for, + sym_template_if, + STATE(370), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20997] = 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(536), 1, sym_template_for_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -29283,76 +29329,49 @@ static const uint16_t ts_small_parse_table[] = { sym_template_literal, sym_template_interpolation, sym_template_directive, - [20995] = 10, - ACTIONS(558), 1, - sym__template_literal_chunk, + [21033] = 10, ACTIONS(560), 1, - sym_template_interpolation_start, - ACTIONS(619), 1, - sym_template_directive_start, - STATE(359), 1, - sym_template_if_intro, - STATE(389), 1, - sym_template_for_start, - STATE(445), 1, - aux_sym_template_literal_repeat1, - STATE(485), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(547), 2, - sym_template_for, - sym_template_if, - STATE(374), 4, - aux_sym__template, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - [21031] = 11, - ACTIONS(580), 1, - sym_template_directive_start, - ACTIONS(603), 1, sym__template_literal_chunk, - ACTIONS(605), 1, + ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(653), 1, - sym_quoted_template_end, - STATE(353), 1, + ACTIONS(615), 1, + sym_template_directive_start, + STATE(355), 1, sym_template_if_intro, - STATE(399), 1, + STATE(381), 1, sym_template_for_start, - STATE(423), 1, - aux_sym_template_literal_repeat1, STATE(455), 1, - sym_template_literal, + sym_template_for_end, + STATE(494), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(452), 2, + STATE(555), 2, sym_template_for, sym_template_if, - STATE(395), 3, + STATE(401), 4, aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, [21069] = 9, - ACTIONS(596), 1, + ACTIONS(606), 1, sym_template_directive_start, - ACTIONS(655), 1, + ACTIONS(657), 1, sym__template_literal_chunk, - ACTIONS(658), 1, + ACTIONS(660), 1, sym_template_interpolation_start, - STATE(359), 1, + STATE(355), 1, sym_template_if_intro, - STATE(389), 1, + STATE(381), 1, sym_template_for_start, - STATE(445), 1, + STATE(494), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(547), 2, + STATE(555), 2, sym_template_for, sym_template_if, STATE(401), 4, @@ -29361,12 +29380,12 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation, sym_template_directive, [21102] = 3, - ACTIONS(546), 1, + ACTIONS(548), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(544), 10, + ACTIONS(546), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29378,12 +29397,12 @@ static const uint16_t ts_small_parse_table[] = { sym_ellipsis, anon_sym_QMARK, [21122] = 3, - ACTIONS(184), 1, + ACTIONS(168), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(182), 10, + ACTIONS(166), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -29394,493 +29413,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [21142] = 6, + [21142] = 7, ACTIONS(9), 1, sym_identifier, - ACTIONS(661), 1, - anon_sym_RBRACE, - STATE(494), 1, - sym_block_end, - STATE(590), 1, - sym_body, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(411), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [21164] = 7, + ACTIONS(11), 1, + sym__shim, ACTIONS(663), 1, - anon_sym_EQ, - ACTIONS(665), 1, - anon_sym_LBRACE, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, - sym_quoted_template_start, - STATE(406), 1, - sym_block_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(407), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21188] = 6, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(661), 1, anon_sym_RBRACE, - STATE(502), 1, + STATE(501), 1, sym_block_end, - STATE(627), 1, + STATE(622), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(411), 3, + STATE(416), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21210] = 6, + [21167] = 7, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + sym__shim, + ACTIONS(663), 1, + anon_sym_RBRACE, + STATE(524), 1, + sym_block_end, + STATE(572), 1, + sym_body, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(416), 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, - sym_quoted_template_start, - ACTIONS(671), 1, sym_identifier, + ACTIONS(671), 1, + sym_quoted_template_start, STATE(404), 1, sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(418), 2, + STATE(409), 2, sym_string_lit, aux_sym_block_repeat1, - [21231] = 5, + [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, anon_sym_COMMA, - STATE(70), 1, + STATE(77), 1, sym__comma, - STATE(408), 1, + STATE(410), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(673), 3, + ACTIONS(683), 3, anon_sym_RPAREN, anon_sym_RBRACK, sym_ellipsis, - [21250] = 7, - ACTIONS(39), 1, + [21302] = 4, + ACTIONS(690), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(688), 2, + ts_builtin_sym_end, anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(680), 1, + 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(682), 1, + ACTIONS(699), 1, anon_sym_QMARK, - STATE(278), 1, + 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, + anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(701), 1, + sym_ellipsis, + STATE(214), 1, sym_object_end, - STATE(607), 1, + STATE(605), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21273] = 7, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(684), 1, - sym_ellipsis, - STATE(212), 1, - sym_object_end, - STATE(562), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21296] = 4, + [21365] = 4, ACTIONS(9), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(686), 2, + ACTIONS(703), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(416), 3, + STATE(411), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21313] = 7, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(688), 1, - sym_ellipsis, - STATE(326), 1, - sym_object_end, - STATE(579), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21336] = 7, + [21382] = 7, ACTIONS(45), 1, anon_sym_RBRACE, - ACTIONS(678), 1, + ACTIONS(673), 1, anon_sym_if, - ACTIONS(682), 1, + ACTIONS(677), 1, anon_sym_QMARK, - ACTIONS(690), 1, + ACTIONS(705), 1, sym_ellipsis, - STATE(283), 1, + STATE(320), 1, sym_object_end, STATE(584), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21359] = 7, - ACTIONS(692), 1, - anon_sym_RPAREN, - ACTIONS(694), 1, - anon_sym_COMMA, - ACTIONS(696), 1, - sym_ellipsis, - ACTIONS(698), 1, - anon_sym_QMARK, - STATE(30), 1, - sym__comma, - STATE(433), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21382] = 7, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - sym_ellipsis, - STATE(157), 1, - sym_object_end, - STATE(588), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, [21405] = 4, - ACTIONS(704), 1, + ACTIONS(9), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(702), 2, + ACTIONS(707), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(416), 3, + STATE(411), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [21422] = 4, - ACTIONS(707), 1, - sym__template_literal_chunk, - STATE(434), 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, - [21438] = 5, - ACTIONS(711), 1, - anon_sym_LBRACE, - ACTIONS(713), 1, - sym_identifier, - ACTIONS(716), 1, - sym_quoted_template_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(418), 2, - sym_string_lit, - aux_sym_block_repeat1, - [21456] = 6, - ACTIONS(94), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(282), 1, - sym_tuple_end, - STATE(586), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21476] = 6, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(719), 1, - anon_sym_COMMA, - ACTIONS(721), 1, - anon_sym_RBRACK, - STATE(39), 1, - sym__comma, - STATE(480), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21496] = 6, - ACTIONS(92), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(275), 1, - sym_tuple_end, - STATE(598), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21516] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(182), 5, + [21422] = 7, + ACTIONS(43), 1, anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(673), 1, anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + ACTIONS(709), 1, sym_ellipsis, - anon_sym_QMARK, - [21528] = 4, - ACTIONS(723), 1, - sym__template_literal_chunk, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(709), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21544] = 6, - ACTIONS(102), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, - anon_sym_if, - ACTIONS(682), 1, - anon_sym_QMARK, - STATE(303), 1, - sym_tuple_end, - STATE(609), 1, + STATE(279), 1, + sym_object_end, + STATE(589), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21564] = 6, - ACTIONS(104), 1, - anon_sym_RBRACK, - ACTIONS(678), 1, + [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(682), 1, + 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(166), 1, + STATE(161), 1, sym_tuple_end, STATE(619), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21584] = 6, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(729), 1, - sym_strip_marker, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(733), 1, - anon_sym_endif, + [21502] = 4, + ACTIONS(723), 1, + sym__template_literal_chunk, + STATE(423), 1, + aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21604] = 6, + 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_for, + anon_sym_COMMA, ACTIONS(727), 1, - anon_sym_if, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(735), 1, - sym_strip_marker, - ACTIONS(737), 1, - anon_sym_endif, + sym_ellipsis, + STATE(32), 1, + sym__comma, + STATE(410), 1, + aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21624] = 6, - ACTIONS(100), 1, + [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(678), 1, + ACTIONS(673), 1, anon_sym_if, - ACTIONS(682), 1, + ACTIONS(677), 1, anon_sym_QMARK, - STATE(208), 1, + STATE(305), 1, sym_tuple_end, - STATE(604), 1, + STATE(583), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21644] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, + [21574] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(673), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_ellipsis, - [21658] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 5, + ACTIONS(546), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [21670] = 6, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(731), 1, - anon_sym_else, - ACTIONS(739), 1, - sym_strip_marker, - ACTIONS(741), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21690] = 4, - ACTIONS(745), 1, - sym__template_literal_chunk, - STATE(432), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(743), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [21706] = 6, - ACTIONS(162), 1, - anon_sym_RPAREN, - ACTIONS(748), 1, + [21586] = 6, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(734), 1, anon_sym_COMMA, - ACTIONS(750), 1, - sym_ellipsis, - STATE(31), 1, + ACTIONS(736), 1, + anon_sym_RBRACK, + STATE(39), 1, sym__comma, - STATE(408), 1, + STATE(466), 1, aux_sym__tuple_elems_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21726] = 4, - ACTIONS(752), 1, + [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, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21626] = 4, + ACTIONS(738), 1, sym__template_literal_chunk, - STATE(434), 1, + STATE(436), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(743), 3, + ACTIONS(721), 3, sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [21742] = 5, - ACTIONS(725), 1, + [21642] = 6, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(737), 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, + ACTIONS(717), 1, anon_sym_else, - ACTIONS(769), 1, + ACTIONS(740), 1, + sym_strip_marker, + ACTIONS(742), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21804] = 2, + [21662] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(771), 4, + ACTIONS(166), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [21674] = 6, + ACTIONS(711), 1, + anon_sym_for, + ACTIONS(713), 1, + anon_sym_if, + ACTIONS(717), 1, + anon_sym_else, + ACTIONS(744), 1, + sym_strip_marker, + ACTIONS(746), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21694] = 6, + ACTIONS(65), 1, + anon_sym_RBRACK, + ACTIONS(673), 1, + anon_sym_if, + ACTIONS(677), 1, + anon_sym_QMARK, + STATE(276), 1, + sym_tuple_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, + anon_sym_for, + ACTIONS(713), 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, - [21815] = 2, + [21810] = 5, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 1, + anon_sym_if, + ACTIONS(769), 1, + anon_sym_else, + ACTIONS(771), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21827] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -29889,58 +29917,56 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21826] = 3, - ACTIONS(775), 1, - sym_quoted_template_end, + [21838] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(777), 3, + ACTIONS(763), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21839] = 5, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, + sym_heredoc_identifier, + [21849] = 5, + ACTIONS(711), 1, + anon_sym_for, + ACTIONS(713), 1, anon_sym_if, - STATE(203), 1, - sym_object_end, - STATE(610), 1, - sym_for_cond, + ACTIONS(719), 1, + anon_sym_endif, + ACTIONS(775), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21856] = 2, + [21866] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(779), 4, + 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, - 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, + ACTIONS(781), 3, 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, + [21890] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(709), 2, + ACTIONS(783), 4, + sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21893] = 2, + sym_heredoc_identifier, + [21901] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -29949,49 +29975,58 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation_start, sym_template_directive_start, sym_heredoc_identifier, - [21904] = 2, + [21912] = 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, + sym_heredoc_identifier, + [21923] = 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, + sym_heredoc_identifier, + [21934] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(767), 1, - anon_sym_else, - ACTIONS(791), 1, + ACTIONS(742), 1, anon_sym_endif, + ACTIONS(791), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21943] = 5, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(678), 1, - anon_sym_if, - STATE(327), 1, - sym_object_end, - STATE(571), 1, - sym_for_cond, + [21951] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21960] = 2, + 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, @@ -30000,50 +30035,65 @@ static const uint16_t ts_small_parse_table[] = { 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(725), 1, - anon_sym_for, - ACTIONS(727), 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, + [21990] = 5, + ACTIONS(47), 1, anon_sym_RBRACE, - ACTIONS(678), 1, + ACTIONS(673), 1, anon_sym_if, - STATE(320), 1, + STATE(327), 1, sym_object_end, - STATE(573), 1, + STATE(563), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22016] = 3, - ACTIONS(799), 1, + [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, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(777), 3, + ACTIONS(781), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22029] = 2, + [22053] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(799), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22064] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30052,255 +30102,210 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [22040] = 5, - ACTIONS(763), 1, - anon_sym_for, + [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, + [22086] = 5, ACTIONS(765), 1, - anon_sym_if, + anon_sym_for, ACTIONS(767), 1, + anon_sym_if, + ACTIONS(769), 1, anon_sym_else, - ACTIONS(803), 1, + ACTIONS(807), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22057] = 2, + [22103] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(805), 4, + ACTIONS(809), 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(678), 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(725), 1, + [22114] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(809), 1, - sym_strip_marker, + ACTIONS(746), 1, + anon_sym_endif, ACTIONS(811), 1, - anon_sym_endfor, + sym_strip_marker, 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(743), 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(678), 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(408), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22342] = 3, - ACTIONS(698), 1, + [22131] = 3, + ACTIONS(699), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(832), 3, + ACTIONS(813), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [22355] = 5, - ACTIONS(725), 1, + [22144] = 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, + [22155] = 5, + ACTIONS(200), 1, + anon_sym_RBRACK, + ACTIONS(815), 1, + anon_sym_COMMA, + STATE(41), 1, + sym__comma, + STATE(410), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22172] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(817), 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22200] = 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, + [22211] = 3, + ACTIONS(819), 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, + [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, + 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22287] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(827), 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, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, ACTIONS(834), 1, sym_strip_marker, @@ -30309,472 +30314,21 @@ static const uint16_t ts_small_parse_table[] = { 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(725), 1, + [22352] = 5, + ACTIONS(711), 1, anon_sym_for, - ACTIONS(727), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(741), 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, + anon_sym_endfor, 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(725), 1, - anon_sym_for, - ACTIONS(727), 1, - anon_sym_if, - ACTIONS(733), 1, - anon_sym_endif, + [22369] = 3, 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, - ACTIONS(856), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22622] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(858), 3, - 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, - [22652] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(862), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [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, - [22676] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(820), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22686] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(818), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22696] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - [22706] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(864), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22716] = 4, - ACTIONS(709), 1, sym_quoted_template_end, - ACTIONS(866), 1, - sym__template_literal_chunk, - 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, - ACTIONS(872), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22758] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(544), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [22768] = 4, - ACTIONS(725), 1, - anon_sym_for, - ACTIONS(727), 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, - ACTIONS(876), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22812] = 4, - ACTIONS(130), 1, - sym_strip_marker, - ACTIONS(134), 1, - sym_template_interpolation_end, - ACTIONS(848), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22826] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - 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, - ACTIONS(880), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22860] = 4, - ACTIONS(743), 1, - sym_quoted_template_end, - ACTIONS(882), 1, - sym__template_literal_chunk, - STATE(525), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22874] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(779), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22884] = 3, - ACTIONS(698), 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(765), 1, - anon_sym_if, - 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(698), 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, @@ -30782,43 +30336,432 @@ static const uint16_t ts_small_parse_table[] = { 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, + [22382] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23004] = 4, - ACTIONS(763), 1, - anon_sym_for, - ACTIONS(765), 1, + 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, - ACTIONS(803), 1, + 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, + ACTIONS(844), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23018] = 2, + [22438] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(905), 3, + ACTIONS(777), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23028] = 2, + [22449] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(822), 3, + ACTIONS(829), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23038] = 2, + 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, + 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, + ACTIONS(848), 1, + sym__template_literal_chunk, + STATE(525), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22550] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 3, + sym_quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [22560] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(850), 3, + 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, + 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, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(856), 2, + anon_sym_EQ, + anon_sym_COLON, + [22610] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(858), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22620] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(860), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22630] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(862), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22640] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(866), 1, + sym_strip_marker, + ACTIONS(868), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22654] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(870), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [22666] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(872), 1, + sym_strip_marker, + ACTIONS(874), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22680] = 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, + sym_identifier, + [22700] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(878), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22710] = 4, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 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, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22758] = 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, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22778] = 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, + sym_identifier, + [22880] = 4, + ACTIONS(729), 1, + sym_quoted_template_end, + ACTIONS(896), 1, + sym__template_literal_chunk, + STATE(525), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22894] = 4, + ACTIONS(765), 1, + anon_sym_for, + ACTIONS(767), 1, + anon_sym_if, + ACTIONS(844), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [22908] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 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, @@ -30826,42 +30769,94 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23048] = 4, - ACTIONS(763), 1, + [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, anon_sym_for, - ACTIONS(765), 1, + ACTIONS(713), 1, anon_sym_if, - ACTIONS(907), 1, - anon_sym_endfor, + ACTIONS(901), 1, + sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23062] = 2, + [22982] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(807), 3, + ACTIONS(166), 3, + sym_template_directive_end, + anon_sym_QMARK, + sym_strip_marker, + [22992] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(799), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23072] = 2, + [23002] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(909), 3, + ACTIONS(773), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23082] = 2, + [23012] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(911), 3, + ACTIONS(801), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23092] = 4, - ACTIONS(848), 1, + [23022] = 4, + ACTIONS(884), 1, + anon_sym_QMARK, + ACTIONS(903), 1, + sym_strip_marker, + ACTIONS(905), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23036] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(907), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [23046] = 4, + ACTIONS(864), 1, + anon_sym_QMARK, + ACTIONS(909), 1, + sym_strip_marker, + ACTIONS(911), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23060] = 4, + ACTIONS(884), 1, anon_sym_QMARK, ACTIONS(913), 1, sym_strip_marker, @@ -30870,67 +30865,103 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23106] = 4, - ACTIONS(868), 1, - anon_sym_QMARK, - ACTIONS(917), 1, - sym_strip_marker, - ACTIONS(919), 1, - sym_template_directive_end, + [23074] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23120] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(785), 3, + ACTIONS(917), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23130] = 2, + [23084] = 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(182), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [23150] = 2, + 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, - ts_builtin_sym_end, + sym__shim, anon_sym_RBRACE, sym_identifier, - [23160] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(923), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [23170] = 4, - ACTIONS(868), 1, + [23104] = 4, + ACTIONS(864), 1, anon_sym_QMARK, - ACTIONS(925), 1, + ACTIONS(923), 1, sym_strip_marker, - ACTIONS(927), 1, + ACTIONS(925), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23184] = 2, + [23118] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(927), 3, + 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, + anon_sym_for, + ACTIONS(767), 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, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23200] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -30938,15 +30969,25 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [23194] = 3, - ACTIONS(931), 1, - anon_sym_RPAREN, - STATE(209), 1, - sym__function_call_end, + [23210] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23205] = 3, + 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, ACTIONS(933), 1, sym_strip_marker, ACTIONS(935), 1, @@ -30954,103 +30995,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23216] = 3, + [23244] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, ACTIONS(937), 1, - sym_identifier, - ACTIONS(939), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23227] = 3, - ACTIONS(941), 1, - sym_strip_marker, - ACTIONS(943), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23238] = 3, - ACTIONS(698), 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(271), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23271] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(951), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23282] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(203), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23293] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(953), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23304] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23315] = 3, + [23255] = 3, ACTIONS(45), 1, anon_sym_RBRACE, - STATE(334), 1, + STATE(326), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23326] = 3, - ACTIONS(698), 1, + [23266] = 3, + ACTIONS(939), 1, + sym_identifier, + ACTIONS(941), 1, + aux_sym_legacy_index_token1, + 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, + 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(957), 1, + 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, - [23337] = 3, - ACTIONS(100), 1, + [23376] = 3, + ACTIONS(59), 1, anon_sym_RBRACK, STATE(200), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23348] = 3, + [23387] = 3, + ACTIONS(955), 1, + sym_strip_marker, + ACTIONS(957), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23398] = 3, ACTIONS(959), 1, sym_strip_marker, ACTIONS(961), 1, @@ -31058,350 +31115,295 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [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, + [23409] = 3, + ACTIONS(663), 1, anon_sym_RBRACE, - sym_identifier, - [23379] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(328), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23390] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(969), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23401] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(322), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23412] = 3, - ACTIONS(971), 1, - sym_strip_marker, - ACTIONS(973), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23423] = 3, - ACTIONS(975), 1, - sym_strip_marker, - ACTIONS(977), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23434] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(979), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23445] = 3, - ACTIONS(981), 1, - sym_strip_marker, - ACTIONS(983), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23456] = 3, - ACTIONS(102), 1, - anon_sym_RBRACK, - STATE(293), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23467] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(327), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23478] = 3, - ACTIONS(985), 1, - anon_sym_RPAREN, - STATE(273), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23489] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(265), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23500] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(987), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23511] = 3, - ACTIONS(989), 1, - anon_sym_COMMA, - ACTIONS(991), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23522] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(320), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23533] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(205), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23544] = 3, - ACTIONS(94), 1, - anon_sym_RBRACK, - STATE(325), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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(698), 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, + STATE(539), 1, sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23599] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(995), 1, + [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, - [23610] = 3, - ACTIONS(997), 1, - sym_identifier, - ACTIONS(999), 1, - aux_sym_legacy_index_token1, + [23442] = 3, + ACTIONS(57), 1, + anon_sym_RBRACK, + STATE(322), 1, + sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23621] = 3, - ACTIONS(698), 1, + [23453] = 3, + ACTIONS(965), 1, + anon_sym_RPAREN, + STATE(301), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23464] = 3, + ACTIONS(967), 1, + sym_strip_marker, + ACTIONS(969), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23475] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1001), 1, + ACTIONS(971), 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(698), 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(315), 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(698), 1, - anon_sym_QMARK, - ACTIONS(1009), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23709] = 3, - ACTIONS(698), 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(313), 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, + [23486] = 3, + ACTIONS(973), 1, sym_strip_marker, - ACTIONS(1017), 1, + ACTIONS(975), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23764] = 3, - ACTIONS(1019), 1, - sym_strip_marker, - ACTIONS(1021), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23775] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(279), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23786] = 3, - ACTIONS(1023), 1, - sym_strip_marker, - ACTIONS(1025), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [23497] = 3, + ACTIONS(15), 1, anon_sym_RBRACE, STATE(185), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23819] = 3, - ACTIONS(698), 1, + [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, anon_sym_QMARK, - ACTIONS(1027), 1, + ACTIONS(983), 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, - [23830] = 3, + [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, + anon_sym_COMMA, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23629] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(991), 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23651] = 3, + ACTIONS(995), 1, + sym_identifier, + ACTIONS(997), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23662] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23673] = 3, + ACTIONS(63), 1, + anon_sym_RBRACK, + STATE(173), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23684] = 3, + ACTIONS(1001), 1, + anon_sym_RPAREN, + STATE(274), 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, + anon_sym_QMARK, + ACTIONS(1007), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23728] = 3, + ACTIONS(1009), 1, + sym_strip_marker, + ACTIONS(1011), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23739] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1013), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23750] = 3, + ACTIONS(699), 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, + 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, + ACTIONS(1021), 1, + sym_strip_marker, + ACTIONS(1023), 1, + sym_template_directive_end, + 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, @@ -31409,15 +31411,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23841] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(1033), 1, - anon_sym_COLON, + [23816] = 3, + ACTIONS(43), 1, + anon_sym_RBRACE, + STATE(266), 1, + sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23852] = 3, + [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, @@ -31425,415 +31459,431 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23863] = 3, - ACTIONS(39), 1, + [23882] = 3, + ACTIONS(15), 1, anon_sym_RBRACE, - STATE(280), 1, + STATE(203), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23874] = 3, + [23893] = 3, ACTIONS(1039), 1, - sym_identifier, + sym_strip_marker, ACTIONS(1041), 1, - aux_sym_legacy_index_token1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [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(698), 1, + [23904] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1047), 1, + ACTIONS(1043), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23907] = 3, - ACTIONS(104), 1, + [23915] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1045), 1, anon_sym_RBRACK, - STATE(159), 1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23926] = 3, + ACTIONS(63), 1, + anon_sym_RBRACK, + STATE(157), 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, - [23940] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(285), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23951] = 3, - ACTIONS(1053), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23962] = 3, - ACTIONS(698), 1, + [23937] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1057), 1, + ACTIONS(1047), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23973] = 3, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(1059), 1, - anon_sym_RPAREN, + [23948] = 3, + ACTIONS(59), 1, + anon_sym_RBRACK, + STATE(195), 1, + sym_tuple_end, 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, + [23959] = 3, + ACTIONS(663), 1, anon_sym_RBRACE, - STATE(494), 1, + STATE(524), 1, sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24006] = 3, - ACTIONS(1065), 1, + [23970] = 3, + ACTIONS(699), 1, + anon_sym_QMARK, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23981] = 3, + ACTIONS(1051), 1, + sym_identifier, + ACTIONS(1053), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23992] = 3, + ACTIONS(1055), 1, anon_sym_COMMA, - ACTIONS(1067), 1, + ACTIONS(1057), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24017] = 3, - ACTIONS(698), 1, + [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(1069), 1, + ACTIONS(1059), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24028] = 3, - ACTIONS(698), 1, + [24025] = 3, + ACTIONS(699), 1, anon_sym_QMARK, - ACTIONS(1071), 1, + ACTIONS(1061), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24039] = 3, - ACTIONS(698), 1, + [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, + anon_sym_RPAREN, + STATE(170), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24069] = 3, + ACTIONS(699), 1, anon_sym_QMARK, ACTIONS(1073), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24050] = 2, + [24080] = 3, ACTIONS(1075), 1, sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24058] = 2, 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, - [24066] = 2, + [24099] = 2, + ACTIONS(888), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24107] = 2, ACTIONS(1079), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24074] = 2, - ACTIONS(872), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24082] = 2, - ACTIONS(1081), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24090] = 2, - ACTIONS(1083), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [24115] = 2, + ACTIONS(1065), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24130] = 2, - ACTIONS(1031), 1, + [24123] = 2, + ACTIONS(1069), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24138] = 2, - ACTIONS(1089), 1, + [24131] = 2, + ACTIONS(1081), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24139] = 2, + ACTIONS(1083), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24146] = 2, - ACTIONS(935), 1, + [24147] = 2, + ACTIONS(979), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24154] = 2, - ACTIONS(1025), 1, + [24155] = 2, + ACTIONS(194), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24163] = 2, + ACTIONS(1085), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24171] = 2, + ACTIONS(1087), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24179] = 2, + ACTIONS(1089), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24162] = 2, + [24187] = 2, ACTIONS(1091), 1, - sym_template_directive_end, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24170] = 2, + [24195] = 2, ACTIONS(1093), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24178] = 2, + [24203] = 2, ACTIONS(1095), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24186] = 2, - ACTIONS(856), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [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, + [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, - [24218] = 2, + [24227] = 2, ACTIONS(1101), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24226] = 2, - ACTIONS(1103), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24234] = 2, - ACTIONS(880), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24242] = 2, - ACTIONS(983), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [24250] = 2, - ACTIONS(1105), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24258] = 2, + [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_heredoc_identifier, + sym_template_directive_end, 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, + [24267] = 2, ACTIONS(1109), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24282] = 2, + [24275] = 2, ACTIONS(1111), 1, - sym_template_directive_end, + sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24290] = 2, + [24283] = 2, ACTIONS(1113), 1, - sym_identifier, + sym_heredoc_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, + [24291] = 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(1121), 1, - sym_heredoc_identifier, - 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(1123), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24354] = 2, - ACTIONS(1125), 1, - sym_heredoc_identifier, + [24299] = 2, + ACTIONS(164), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24362] = 2, - ACTIONS(1127), 1, + [24307] = 2, + ACTIONS(874), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24370] = 2, - ACTIONS(1129), 1, + [24315] = 2, + ACTIONS(1117), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24323] = 2, + ACTIONS(905), 1, + sym_template_interpolation_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24331] = 2, + ACTIONS(1119), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24378] = 2, + [24339] = 2, ACTIONS(915), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24386] = 2, - ACTIONS(1131), 1, - anon_sym_in, + [24347] = 2, + ACTIONS(1121), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24394] = 2, + [24355] = 2, + ACTIONS(1123), 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, + 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, - [24402] = 2, - ACTIONS(919), 1, + [24435] = 2, + ACTIONS(1135), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24443] = 2, + ACTIONS(1137), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [24410] = 2, - ACTIONS(927), 1, - sym_template_directive_end, + [24451] = 2, + ACTIONS(892), 1, + sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -31850,9 +31900,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(9)] = 739, [SMALL_STATE(10)] = 843, [SMALL_STATE(11)] = 947, - [SMALL_STATE(12)] = 1049, - [SMALL_STATE(13)] = 1153, - [SMALL_STATE(14)] = 1257, + [SMALL_STATE(12)] = 1051, + [SMALL_STATE(13)] = 1155, + [SMALL_STATE(14)] = 1259, [SMALL_STATE(15)] = 1361, [SMALL_STATE(16)] = 1462, [SMALL_STATE(17)] = 1560, @@ -31870,12 +31920,12 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -31968,13 +32018,13 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32016,11 +32066,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(175)] = 13110, [SMALL_STATE(176)] = 13153, [SMALL_STATE(177)] = 13211, - [SMALL_STATE(178)] = 13267, + [SMALL_STATE(178)] = 13255, [SMALL_STATE(179)] = 13311, - [SMALL_STATE(180)] = 13377, + [SMALL_STATE(180)] = 13365, [SMALL_STATE(181)] = 13431, - [SMALL_STATE(182)] = 13475, + [SMALL_STATE(182)] = 13481, [SMALL_STATE(183)] = 13525, [SMALL_STATE(184)] = 13573, [SMALL_STATE(185)] = 13610, @@ -32055,26 +32105,26 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32089,15 +32139,15 @@ static const uint32_t ts_small_parse_table_map[] = { [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(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, @@ -32193,36 +32243,36 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(352)] = 19315, [SMALL_STATE(353)] = 19339, [SMALL_STATE(354)] = 19378, - [SMALL_STATE(355)] = 19401, - [SMALL_STATE(356)] = 19424, - [SMALL_STATE(357)] = 19463, - [SMALL_STATE(358)] = 19502, - [SMALL_STATE(359)] = 19541, + [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)] = 19799, - [SMALL_STATE(367)] = 19835, - [SMALL_STATE(368)] = 19871, - [SMALL_STATE(369)] = 19907, - [SMALL_STATE(370)] = 19943, + [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)] = 20125, - [SMALL_STATE(376)] = 20161, - [SMALL_STATE(377)] = 20197, - [SMALL_STATE(378)] = 20235, - [SMALL_STATE(379)] = 20271, - [SMALL_STATE(380)] = 20307, - [SMALL_STATE(381)] = 20343, - [SMALL_STATE(382)] = 20379, - [SMALL_STATE(383)] = 20415, - [SMALL_STATE(384)] = 20451, + [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, @@ -32230,292 +32280,294 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(389)] = 20633, [SMALL_STATE(390)] = 20669, [SMALL_STATE(391)] = 20705, - [SMALL_STATE(392)] = 20741, - [SMALL_STATE(393)] = 20777, - [SMALL_STATE(394)] = 20813, - [SMALL_STATE(395)] = 20849, - [SMALL_STATE(396)] = 20885, - [SMALL_STATE(397)] = 20921, - [SMALL_STATE(398)] = 20959, - [SMALL_STATE(399)] = 20995, - [SMALL_STATE(400)] = 21031, + [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)] = 21164, - [SMALL_STATE(406)] = 21188, - [SMALL_STATE(407)] = 21210, - [SMALL_STATE(408)] = 21231, - [SMALL_STATE(409)] = 21250, - [SMALL_STATE(410)] = 21273, - [SMALL_STATE(411)] = 21296, - [SMALL_STATE(412)] = 21313, - [SMALL_STATE(413)] = 21336, - [SMALL_STATE(414)] = 21359, + [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)] = 21438, - [SMALL_STATE(419)] = 21456, - [SMALL_STATE(420)] = 21476, - [SMALL_STATE(421)] = 21496, - [SMALL_STATE(422)] = 21516, - [SMALL_STATE(423)] = 21528, - [SMALL_STATE(424)] = 21544, - [SMALL_STATE(425)] = 21564, - [SMALL_STATE(426)] = 21584, - [SMALL_STATE(427)] = 21604, - [SMALL_STATE(428)] = 21624, - [SMALL_STATE(429)] = 21644, - [SMALL_STATE(430)] = 21658, - [SMALL_STATE(431)] = 21670, - [SMALL_STATE(432)] = 21690, - [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(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)] = 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, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -32524,550 +32576,552 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(405), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [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(351), - [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(370), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(349), - [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(351), - [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(370), - [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(287), - [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(324), - [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(339), - [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(342), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [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(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(308), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [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(377), - [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(400), - [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(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_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_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), + [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), + [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), + [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), + [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 = 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_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(81), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), - [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 = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [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(445), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(417), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(27), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(517), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template, 2), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(423), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template, 2), SHIFT_REPEAT(26), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [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(69), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(70), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(405), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(418), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(437), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(432), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [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(330), - [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), + [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(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(344), - [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(638), - [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(655), - [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}}, 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(676), - [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(318), - [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(656), - [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(355), - [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(354), - [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(315), - [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(316), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [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(319), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [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(460), - [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(551), - [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(390), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [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}}, ACCEPT_INPUT(), - [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(535), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [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), + [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), + [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), + [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), }; #ifdef __cplusplus diff --git a/test/corpus/comments.txt b/test/corpus/comments.txt new file mode 100644 index 0000000..44a7a9d --- /dev/null +++ b/test/corpus/comments.txt @@ -0,0 +1,146 @@ +================================================================================ +comment in empty block body +================================================================================ + +block { + # foo +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (comment) + (block_end)))) + +================================================================================ +multiline comment in empty block body +================================================================================ + +block { + /* + foo + */ +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (body) + (comment) + (block_end)))) + +================================================================================ +multiline comment above attribute in block body +================================================================================ + +block { + /* + foo + */ + foo = bar +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (body + (comment) + (attribute + (identifier) + (expression + (variable_expr + (identifier))))) + (block_end)))) + +================================================================================ +comment above first attribute in block body +================================================================================ + +block { + # foo + foo = bar +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (body + (comment) + (attribute + (identifier) + (expression + (variable_expr + (identifier))))) + (block_end)))) + +================================================================================ +comment after last attribute in block body +================================================================================ + +block { + foo = bar + # foo +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (body + (attribute + (identifier) + (expression + (variable_expr + (identifier))))) + (comment) + (block_end)))) + +================================================================================ +comment between attributes in block body +================================================================================ + +block { + foo = bar + # foo + baz = quz +} + +-------------------------------------------------------------------------------- + +(config_file + (body + (block + (identifier) + (block_start) + (body + (attribute + (identifier) + (expression + (variable_expr + (identifier)))) + (comment) + (attribute + (identifier) + (expression + (variable_expr + (identifier))))) + (block_end))))