diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d169a6..b2eeae1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.0 - 2022-12-02 + +breaking: +* remove `template_if_branch` and `template_else_branch` + +fix: +* fix precedence in template expressions + ## 0.7.0 - 2022-06-02 housekeeping: diff --git a/docs/tree-sitter-hcl.wasm b/docs/tree-sitter-hcl.wasm index f59ca3c..024376f 100755 Binary files a/docs/tree-sitter-hcl.wasm and b/docs/tree-sitter-hcl.wasm differ diff --git a/grammar.js b/grammar.js index 96e9c68..bea42b0 100644 --- a/grammar.js +++ b/grammar.js @@ -16,9 +16,6 @@ const module.exports = grammar({ name: 'hcl', - conflicts: $ => [ - ], - externals: $ => [ $.quoted_template_start, $.quoted_template_end, @@ -269,12 +266,6 @@ module.exports = grammar({ $.heredoc_template, ), - _template: $ => prec.left(repeat1(choice( - $.template_literal, - $.template_interpolation, - $.template_directive, - ))), - quoted_template: $ => prec(PREC.quoted_template, seq( $.quoted_template_start, optional($._template), @@ -292,6 +283,12 @@ module.exports = grammar({ strip_marker: $ => '~', + _template: $ => repeat1(choice( + $.template_interpolation, + $.template_directive, + $.template_literal, + )), + template_literal: $ => prec.right(repeat1( $._template_literal_chunk, )), @@ -304,7 +301,6 @@ module.exports = grammar({ $.template_interpolation_end, ), - // TODO template_directive: $ => choice( $.template_for, $.template_if, @@ -337,15 +333,12 @@ module.exports = grammar({ ), template_if: $ => seq( - $.template_if_branch, - optional($.template_else_branch), + $.template_if_intro, + optional($._template), + optional(seq($.template_else_intro, optional($._template))), $.template_if_end, ), - template_if_branch: $ => seq( - $.template_if_intro, $._template - ), - template_if_intro: $ => seq( $.template_directive_start, optional($.strip_marker), @@ -355,10 +348,6 @@ module.exports = grammar({ $.template_directive_end ), - template_else_branch: $ => seq( - $.template_else_intro, $._template - ), - template_else_intro: $ => seq( $.template_directive_start, optional($.strip_marker), diff --git a/src/grammar.json b/src/grammar.json index a7d3813..e48487d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1187,30 +1187,6 @@ } ] }, - "_template": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "template_literal" - }, - { - "type": "SYMBOL", - "name": "template_interpolation" - }, - { - "type": "SYMBOL", - "name": "template_directive" - } - ] - } - } - }, "quoted_template": { "type": "PREC", "value": 1, @@ -1286,6 +1262,26 @@ "type": "STRING", "value": "~" }, + "_template": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "template_interpolation" + }, + { + "type": "SYMBOL", + "name": "template_directive" + }, + { + "type": "SYMBOL", + "name": "template_literal" + } + ] + } + }, "template_literal": { "type": "PREC_RIGHT", "value": 0, @@ -1504,14 +1500,43 @@ "members": [ { "type": "SYMBOL", - "name": "template_if_branch" + "name": "template_if_intro" }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "template_else_branch" + "name": "_template" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "template_else_intro" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_template" + }, + { + "type": "BLANK" + } + ] + } + ] }, { "type": "BLANK" @@ -1524,19 +1549,6 @@ } ] }, - "template_if_branch": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "template_if_intro" - }, - { - "type": "SYMBOL", - "name": "_template" - } - ] - }, "template_if_intro": { "type": "SEQ", "members": [ @@ -1582,19 +1594,6 @@ } ] }, - "template_else_branch": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "template_else_intro" - }, - { - "type": "SYMBOL", - "name": "_template" - } - ] - }, "template_else_intro": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index c14706e..4580495 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -737,33 +737,6 @@ ] } }, - { - "type": "template_else_branch", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "template_directive", - "named": true - }, - { - "type": "template_else_intro", - "named": true - }, - { - "type": "template_interpolation", - "named": true - }, - { - "type": "template_literal", - "named": true - } - ] - } - }, { "type": "template_else_intro", "named": true, @@ -900,31 +873,16 @@ "required": true, "types": [ { - "type": "template_else_branch", + "type": "template_directive", "named": true }, { - "type": "template_if_branch", + "type": "template_else_intro", "named": true }, { "type": "template_if_end", "named": true - } - ] - } - }, - { - "type": "template_if_branch", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "template_directive", - "named": true }, { "type": "template_if_intro", diff --git a/src/parser.c b/src/parser.c index 25a20c5..93ee02f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,10 +5,10 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 673 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 678 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 124 +#define SYMBOL_COUNT 121 #define ALIAS_COUNT 0 #define TOKEN_COUNT 56 #define EXTERNAL_TOKEN_COUNT 8 @@ -117,10 +117,10 @@ enum { sym_unary_operation = 98, sym_binary_operation = 99, sym_template_expr = 100, - sym__template = 101, - sym_quoted_template = 102, - sym_heredoc_template = 103, - sym_heredoc_start = 104, + 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, @@ -128,18 +128,15 @@ enum { sym_template_for_start = 109, sym_template_for_end = 110, sym_template_if = 111, - sym_template_if_branch = 112, - sym_template_if_intro = 113, - sym_template_else_branch = 114, - sym_template_else_intro = 115, - sym_template_if_end = 116, - aux_sym_body_repeat1 = 117, - aux_sym_block_repeat1 = 118, - aux_sym__tuple_elems_repeat1 = 119, - aux_sym__object_elems_repeat1 = 120, - aux_sym_attr_splat_repeat1 = 121, - aux_sym__template_repeat1 = 122, - aux_sym_template_literal_repeat1 = 123, + sym_template_if_intro = 112, + sym_template_else_intro = 113, + sym_template_if_end = 114, + aux_sym_body_repeat1 = 115, + aux_sym_block_repeat1 = 116, + aux_sym__tuple_elems_repeat1 = 117, + aux_sym__object_elems_repeat1 = 118, + aux_sym_attr_splat_repeat1 = 119, + aux_sym_template_literal_repeat1 = 120, }; static const char * const ts_symbol_names[] = { @@ -244,10 +241,10 @@ static const char * const ts_symbol_names[] = { [sym_unary_operation] = "unary_operation", [sym_binary_operation] = "binary_operation", [sym_template_expr] = "template_expr", - [sym__template] = "_template", [sym_quoted_template] = "quoted_template", [sym_heredoc_template] = "heredoc_template", [sym_heredoc_start] = "heredoc_start", + [aux_sym__template] = "_template", [sym_template_literal] = "template_literal", [sym_template_interpolation] = "template_interpolation", [sym_template_directive] = "template_directive", @@ -255,9 +252,7 @@ static const char * const ts_symbol_names[] = { [sym_template_for_start] = "template_for_start", [sym_template_for_end] = "template_for_end", [sym_template_if] = "template_if", - [sym_template_if_branch] = "template_if_branch", [sym_template_if_intro] = "template_if_intro", - [sym_template_else_branch] = "template_else_branch", [sym_template_else_intro] = "template_else_intro", [sym_template_if_end] = "template_if_end", [aux_sym_body_repeat1] = "body_repeat1", @@ -265,7 +260,6 @@ static const char * const ts_symbol_names[] = { [aux_sym__tuple_elems_repeat1] = "_tuple_elems_repeat1", [aux_sym__object_elems_repeat1] = "_object_elems_repeat1", [aux_sym_attr_splat_repeat1] = "attr_splat_repeat1", - [aux_sym__template_repeat1] = "_template_repeat1", [aux_sym_template_literal_repeat1] = "template_literal_repeat1", }; @@ -371,10 +365,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_unary_operation] = sym_unary_operation, [sym_binary_operation] = sym_binary_operation, [sym_template_expr] = sym_template_expr, - [sym__template] = sym__template, [sym_quoted_template] = sym_quoted_template, [sym_heredoc_template] = sym_heredoc_template, [sym_heredoc_start] = sym_heredoc_start, + [aux_sym__template] = aux_sym__template, [sym_template_literal] = sym_template_literal, [sym_template_interpolation] = sym_template_interpolation, [sym_template_directive] = sym_template_directive, @@ -382,9 +376,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_template_for_start] = sym_template_for_start, [sym_template_for_end] = sym_template_for_end, [sym_template_if] = sym_template_if, - [sym_template_if_branch] = sym_template_if_branch, [sym_template_if_intro] = sym_template_if_intro, - [sym_template_else_branch] = sym_template_else_branch, [sym_template_else_intro] = sym_template_else_intro, [sym_template_if_end] = sym_template_if_end, [aux_sym_body_repeat1] = aux_sym_body_repeat1, @@ -392,7 +384,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__tuple_elems_repeat1] = aux_sym__tuple_elems_repeat1, [aux_sym__object_elems_repeat1] = aux_sym__object_elems_repeat1, [aux_sym_attr_splat_repeat1] = aux_sym_attr_splat_repeat1, - [aux_sym__template_repeat1] = aux_sym__template_repeat1, [aux_sym_template_literal_repeat1] = aux_sym_template_literal_repeat1, }; @@ -801,10 +792,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__template] = { - .visible = false, - .named = true, - }, [sym_quoted_template] = { .visible = true, .named = true, @@ -817,6 +804,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [aux_sym__template] = { + .visible = false, + .named = false, + }, [sym_template_literal] = { .visible = true, .named = true, @@ -845,18 +836,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_template_if_branch] = { - .visible = true, - .named = true, - }, [sym_template_if_intro] = { .visible = true, .named = true, }, - [sym_template_else_branch] = { - .visible = true, - .named = true, - }, [sym_template_else_intro] = { .visible = true, .named = true, @@ -885,10 +868,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_template_literal_repeat1] = { .visible = false, .named = false, @@ -924,6 +903,687 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 9, + [11] = 11, + [12] = 9, + [13] = 9, + [14] = 9, + [15] = 15, + [16] = 16, + [17] = 16, + [18] = 16, + [19] = 16, + [20] = 16, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 21, + [25] = 21, + [26] = 23, + [27] = 23, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 43, + [46] = 46, + [47] = 44, + [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, + [61] = 61, + [62] = 62, + [63] = 54, + [64] = 64, + [65] = 49, + [66] = 61, + [67] = 61, + [68] = 61, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 54, + [73] = 44, + [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, + [87] = 43, + [88] = 42, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 94, + [97] = 97, + [98] = 95, + [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, + [120] = 99, + [121] = 100, + [122] = 99, + [123] = 97, + [124] = 94, + [125] = 107, + [126] = 102, + [127] = 97, + [128] = 95, + [129] = 37, + [130] = 38, + [131] = 36, + [132] = 35, + [133] = 34, + [134] = 33, + [135] = 32, + [136] = 29, + [137] = 89, + [138] = 90, + [139] = 91, + [140] = 92, + [141] = 141, + [142] = 93, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 141, + [176] = 38, + [177] = 36, + [178] = 33, + [179] = 37, + [180] = 35, + [181] = 29, + [182] = 34, + [183] = 32, + [184] = 144, + [185] = 150, + [186] = 147, + [187] = 148, + [188] = 154, + [189] = 145, + [190] = 174, + [191] = 143, + [192] = 151, + [193] = 152, + [194] = 153, + [195] = 159, + [196] = 156, + [197] = 158, + [198] = 149, + [199] = 170, + [200] = 173, + [201] = 161, + [202] = 164, + [203] = 155, + [204] = 169, + [205] = 167, + [206] = 162, + [207] = 172, + [208] = 166, + [209] = 171, + [210] = 146, + [211] = 160, + [212] = 157, + [213] = 165, + [214] = 163, + [215] = 168, + [216] = 29, + [217] = 34, + [218] = 33, + [219] = 37, + [220] = 29, + [221] = 93, + [222] = 37, + [223] = 91, + [224] = 38, + [225] = 36, + [226] = 38, + [227] = 36, + [228] = 35, + [229] = 35, + [230] = 34, + [231] = 89, + [232] = 33, + [233] = 32, + [234] = 92, + [235] = 90, + [236] = 32, + [237] = 92, + [238] = 90, + [239] = 91, + [240] = 93, + [241] = 93, + [242] = 92, + [243] = 89, + [244] = 89, + [245] = 91, + [246] = 90, + [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, + [263] = 141, + [264] = 165, + [265] = 167, + [266] = 144, + [267] = 143, + [268] = 174, + [269] = 145, + [270] = 154, + [271] = 173, + [272] = 172, + [273] = 171, + [274] = 168, + [275] = 166, + [276] = 162, + [277] = 159, + [278] = 157, + [279] = 155, + [280] = 150, + [281] = 149, + [282] = 166, + [283] = 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, + [304] = 174, + [305] = 162, + [306] = 151, + [307] = 148, + [308] = 147, + [309] = 146, + [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, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 349, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 353, + [358] = 356, + [359] = 353, + [360] = 356, + [361] = 361, + [362] = 361, + [363] = 361, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 364, + [368] = 368, + [369] = 361, + [370] = 370, + [371] = 364, + [372] = 368, + [373] = 373, + [374] = 374, + [375] = 366, + [376] = 376, + [377] = 370, + [378] = 368, + [379] = 379, + [380] = 379, + [381] = 373, + [382] = 376, + [383] = 365, + [384] = 370, + [385] = 364, + [386] = 366, + [387] = 366, + [388] = 361, + [389] = 389, + [390] = 364, + [391] = 374, + [392] = 373, + [393] = 389, + [394] = 376, + [395] = 366, + [396] = 379, + [397] = 370, + [398] = 374, + [399] = 389, + [400] = 370, + [401] = 365, + [402] = 348, + [403] = 347, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 409, + [411] = 411, + [412] = 409, + [413] = 409, + [414] = 414, + [415] = 409, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 419, + [422] = 347, + [423] = 417, + [424] = 419, + [425] = 419, + [426] = 426, + [427] = 426, + [428] = 419, + [429] = 429, + [430] = 348, + [431] = 426, + [432] = 432, + [433] = 433, + [434] = 432, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 417, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 438, + [450] = 442, + [451] = 451, + [452] = 446, + [453] = 453, + [454] = 442, + [455] = 441, + [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, + [472] = 472, + [473] = 442, + [474] = 440, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 476, + [479] = 441, + [480] = 480, + [481] = 481, + [482] = 453, + [483] = 471, + [484] = 472, + [485] = 475, + [486] = 435, + [487] = 441, + [488] = 477, + [489] = 435, + [490] = 436, + [491] = 439, + [492] = 456, + [493] = 436, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 439, + [499] = 456, + [500] = 476, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 440, + [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, + [522] = 522, + [523] = 447, + [524] = 524, + [525] = 432, + [526] = 443, + [527] = 527, + [528] = 477, + [529] = 496, + [530] = 149, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 503, + [535] = 444, + [536] = 536, + [537] = 495, + [538] = 538, + [539] = 475, + [540] = 448, + [541] = 496, + [542] = 461, + [543] = 543, + [544] = 544, + [545] = 503, + [546] = 546, + [547] = 446, + [548] = 347, + [549] = 347, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 558, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 560, + [568] = 568, + [569] = 559, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 571, + [574] = 568, + [575] = 575, + [576] = 566, + [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, + [614] = 577, + [615] = 571, + [616] = 556, + [617] = 556, + [618] = 558, + [619] = 586, + [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, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 639, + [643] = 636, + [644] = 644, + [645] = 641, + [646] = 646, + [647] = 647, + [648] = 647, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 641, + [657] = 657, + [658] = 658, + [659] = 649, + [660] = 633, + [661] = 637, + [662] = 662, + [663] = 663, + [664] = 633, + [665] = 647, + [666] = 666, + [667] = 647, + [668] = 639, + [669] = 636, + [670] = 647, + [671] = 637, + [672] = 672, + [673] = 649, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, +}; + static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43360 ? (c < 4096 @@ -11149,9 +11809,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 3, .external_lex_state = 2}, [5] = {.lex_state = 3, .external_lex_state = 2}, [6] = {.lex_state = 3, .external_lex_state = 2}, - [7] = {.lex_state = 3, .external_lex_state = 2}, + [7] = {.lex_state = 1, .external_lex_state = 2}, [8] = {.lex_state = 1, .external_lex_state = 2}, - [9] = {.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}, @@ -11168,9 +11828,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 1, .external_lex_state = 3}, [24] = {.lex_state = 1, .external_lex_state = 3}, [25] = {.lex_state = 1, .external_lex_state = 3}, - [26] = {.lex_state = 1, .external_lex_state = 2}, + [26] = {.lex_state = 1, .external_lex_state = 3}, [27] = {.lex_state = 1, .external_lex_state = 3}, - [28] = {.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}, @@ -11359,9 +12019,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [214] = {.lex_state = 41}, [215] = {.lex_state = 41}, [216] = {.lex_state = 41, .external_lex_state = 4}, - [217] = {.lex_state = 41, .external_lex_state = 5}, - [218] = {.lex_state = 41, .external_lex_state = 5}, - [219] = {.lex_state = 2}, + [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}, @@ -11370,24 +12030,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 41, .external_lex_state = 4}, [226] = {.lex_state = 41, .external_lex_state = 5}, [227] = {.lex_state = 41, .external_lex_state = 5}, - [228] = {.lex_state = 41, .external_lex_state = 5}, - [229] = {.lex_state = 41, .external_lex_state = 4}, + [228] = {.lex_state = 41, .external_lex_state = 4}, + [229] = {.lex_state = 41, .external_lex_state = 5}, [230] = {.lex_state = 41, .external_lex_state = 5}, [231] = {.lex_state = 2}, - [232] = {.lex_state = 41, .external_lex_state = 4}, + [232] = {.lex_state = 41, .external_lex_state = 5}, [233] = {.lex_state = 41, .external_lex_state = 5}, [234] = {.lex_state = 2}, - [235] = {.lex_state = 41, .external_lex_state = 4}, + [235] = {.lex_state = 2}, [236] = {.lex_state = 41, .external_lex_state = 4}, [237] = {.lex_state = 41, .external_lex_state = 5}, [238] = {.lex_state = 41, .external_lex_state = 5}, [239] = {.lex_state = 41, .external_lex_state = 4}, - [240] = {.lex_state = 41, .external_lex_state = 5}, - [241] = {.lex_state = 41, .external_lex_state = 4}, - [242] = {.lex_state = 41, .external_lex_state = 5}, + [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}, - [245] = {.lex_state = 41, .external_lex_state = 4}, + [245] = {.lex_state = 41, .external_lex_state = 5}, [246] = {.lex_state = 41, .external_lex_state = 4}, [247] = {.lex_state = 2}, [248] = {.lex_state = 2}, @@ -11405,8 +12065,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 2}, [261] = {.lex_state = 2}, [262] = {.lex_state = 2}, - [263] = {.lex_state = 2}, - [264] = {.lex_state = 41, .external_lex_state = 5}, + [263] = {.lex_state = 41, .external_lex_state = 5}, + [264] = {.lex_state = 2}, [265] = {.lex_state = 2}, [266] = {.lex_state = 2}, [267] = {.lex_state = 2}, @@ -11424,397 +12084,402 @@ 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 = 5}, + [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 = 5}, - [287] = {.lex_state = 41, .external_lex_state = 5}, - [288] = {.lex_state = 41, .external_lex_state = 5}, - [289] = {.lex_state = 41, .external_lex_state = 5}, - [290] = {.lex_state = 41, .external_lex_state = 5}, - [291] = {.lex_state = 41, .external_lex_state = 5}, - [292] = {.lex_state = 41, .external_lex_state = 5}, - [293] = {.lex_state = 41, .external_lex_state = 4}, - [294] = {.lex_state = 41, .external_lex_state = 5}, - [295] = {.lex_state = 41, .external_lex_state = 4}, - [296] = {.lex_state = 41, .external_lex_state = 5}, + [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}, + [293] = {.lex_state = 41, .external_lex_state = 5}, + [294] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 5}, + [298] = {.lex_state = 41, .external_lex_state = 4}, [299] = {.lex_state = 41, .external_lex_state = 5}, [300] = {.lex_state = 41, .external_lex_state = 5}, - [301] = {.lex_state = 41, .external_lex_state = 4}, + [301] = {.lex_state = 41, .external_lex_state = 5}, [302] = {.lex_state = 41, .external_lex_state = 4}, - [303] = {.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 = 4}, + [305] = {.lex_state = 41, .external_lex_state = 5}, [306] = {.lex_state = 41, .external_lex_state = 4}, - [307] = {.lex_state = 41, .external_lex_state = 5}, - [308] = {.lex_state = 41, .external_lex_state = 5}, - [309] = {.lex_state = 41, .external_lex_state = 5}, - [310] = {.lex_state = 41, .external_lex_state = 5}, + [307] = {.lex_state = 41, .external_lex_state = 4}, + [308] = {.lex_state = 41, .external_lex_state = 4}, + [309] = {.lex_state = 41, .external_lex_state = 4}, + [310] = {.lex_state = 41, .external_lex_state = 4}, [311] = {.lex_state = 41, .external_lex_state = 5}, [312] = {.lex_state = 41, .external_lex_state = 4}, - [313] = {.lex_state = 41, .external_lex_state = 5}, - [314] = {.lex_state = 41, .external_lex_state = 5}, - [315] = {.lex_state = 41, .external_lex_state = 5}, - [316] = {.lex_state = 41, .external_lex_state = 5}, - [317] = {.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}, + [317] = {.lex_state = 41, .external_lex_state = 5}, [318] = {.lex_state = 41, .external_lex_state = 5}, - [319] = {.lex_state = 41, .external_lex_state = 4}, - [320] = {.lex_state = 41, .external_lex_state = 4}, - [321] = {.lex_state = 41, .external_lex_state = 5}, + [319] = {.lex_state = 41, .external_lex_state = 5}, + [320] = {.lex_state = 41, .external_lex_state = 5}, + [321] = {.lex_state = 41, .external_lex_state = 4}, [322] = {.lex_state = 41, .external_lex_state = 5}, - [323] = {.lex_state = 41, .external_lex_state = 4}, + [323] = {.lex_state = 41, .external_lex_state = 5}, [324] = {.lex_state = 41, .external_lex_state = 5}, - [325] = {.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}, - [330] = {.lex_state = 41, .external_lex_state = 4}, - [331] = {.lex_state = 41, .external_lex_state = 5}, - [332] = {.lex_state = 41, .external_lex_state = 4}, - [333] = {.lex_state = 41, .external_lex_state = 4}, - [334] = {.lex_state = 41, .external_lex_state = 4}, - [335] = {.lex_state = 41, .external_lex_state = 4}, + [330] = {.lex_state = 41, .external_lex_state = 5}, + [331] = {.lex_state = 41, .external_lex_state = 4}, + [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 = 4}, - [338] = {.lex_state = 41, .external_lex_state = 4}, - [339] = {.lex_state = 41, .external_lex_state = 4}, - [340] = {.lex_state = 41, .external_lex_state = 4}, - [341] = {.lex_state = 41, .external_lex_state = 4}, - [342] = {.lex_state = 41, .external_lex_state = 4}, - [343] = {.lex_state = 41, .external_lex_state = 4}, + [337] = {.lex_state = 41, .external_lex_state = 5}, + [338] = {.lex_state = 41, .external_lex_state = 5}, + [339] = {.lex_state = 41, .external_lex_state = 5}, + [340] = {.lex_state = 41, .external_lex_state = 5}, + [341] = {.lex_state = 41, .external_lex_state = 5}, + [342] = {.lex_state = 41, .external_lex_state = 5}, + [343] = {.lex_state = 41, .external_lex_state = 5}, [344] = {.lex_state = 41, .external_lex_state = 4}, - [345] = {.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 = 1, .external_lex_state = 2}, - [350] = {.lex_state = 3, .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 = 0, .external_lex_state = 6}, - [353] = {.lex_state = 1, .external_lex_state = 2}, - [354] = {.lex_state = 0, .external_lex_state = 6}, - [355] = {.lex_state = 0, .external_lex_state = 7}, + [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 = 8}, - [358] = {.lex_state = 0, .external_lex_state = 7}, - [359] = {.lex_state = 0, .external_lex_state = 7}, - [360] = {.lex_state = 0, .external_lex_state = 8}, + [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 = 8}, + [362] = {.lex_state = 0, .external_lex_state = 7}, [363] = {.lex_state = 0, .external_lex_state = 7}, - [364] = {.lex_state = 0, .external_lex_state = 6}, - [365] = {.lex_state = 0, .external_lex_state = 6}, - [366] = {.lex_state = 0, .external_lex_state = 6}, - [367] = {.lex_state = 1, .external_lex_state = 2}, - [368] = {.lex_state = 1, .external_lex_state = 2}, + [364] = {.lex_state = 0, .external_lex_state = 7}, + [365] = {.lex_state = 0, .external_lex_state = 7}, + [366] = {.lex_state = 0, .external_lex_state = 8}, + [367] = {.lex_state = 0, .external_lex_state = 7}, + [368] = {.lex_state = 0, .external_lex_state = 6}, [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 = 8}, + [372] = {.lex_state = 0, .external_lex_state = 6}, [373] = {.lex_state = 0, .external_lex_state = 6}, - [374] = {.lex_state = 0, .external_lex_state = 8}, + [374] = {.lex_state = 0, .external_lex_state = 6}, [375] = {.lex_state = 0, .external_lex_state = 8}, - [376] = {.lex_state = 41}, - [377] = {.lex_state = 41}, - [378] = {.lex_state = 4, .external_lex_state = 2}, - [379] = {.lex_state = 41}, - [380] = {.lex_state = 41}, - [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 41, .external_lex_state = 2}, - [385] = {.lex_state = 0}, - [386] = {.lex_state = 41}, - [387] = {.lex_state = 0}, - [388] = {.lex_state = 0}, - [389] = {.lex_state = 0}, - [390] = {.lex_state = 41}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 0}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, - [395] = {.lex_state = 0, .external_lex_state = 7}, - [396] = {.lex_state = 0}, - [397] = {.lex_state = 0}, - [398] = {.lex_state = 41, .external_lex_state = 2}, - [399] = {.lex_state = 0, .external_lex_state = 7}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 0, .external_lex_state = 6}, - [403] = {.lex_state = 0}, - [404] = {.lex_state = 0, .external_lex_state = 6}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 0, .external_lex_state = 6}, - [407] = {.lex_state = 0, .external_lex_state = 7}, - [408] = {.lex_state = 0, .external_lex_state = 7}, + [376] = {.lex_state = 0, .external_lex_state = 6}, + [377] = {.lex_state = 0, .external_lex_state = 8}, + [378] = {.lex_state = 0, .external_lex_state = 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}, + [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}, + [390] = {.lex_state = 0, .external_lex_state = 7}, + [391] = {.lex_state = 0, .external_lex_state = 6}, + [392] = {.lex_state = 0, .external_lex_state = 6}, + [393] = {.lex_state = 0, .external_lex_state = 6}, + [394] = {.lex_state = 0, .external_lex_state = 6}, + [395] = {.lex_state = 0, .external_lex_state = 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}, + [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}, + [408] = {.lex_state = 0}, [409] = {.lex_state = 0}, - [410] = {.lex_state = 0, .external_lex_state = 7}, - [411] = {.lex_state = 0, .external_lex_state = 7}, - [412] = {.lex_state = 0, .external_lex_state = 9}, - [413] = {.lex_state = 0, .external_lex_state = 6}, - [414] = {.lex_state = 0, .external_lex_state = 7}, - [415] = {.lex_state = 0, .external_lex_state = 7}, - [416] = {.lex_state = 0, .external_lex_state = 7}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 0, .external_lex_state = 6}, - [419] = {.lex_state = 0, .external_lex_state = 10}, - [420] = {.lex_state = 0, .external_lex_state = 6}, - [421] = {.lex_state = 0, .external_lex_state = 10}, - [422] = {.lex_state = 0, .external_lex_state = 6}, - [423] = {.lex_state = 0, .external_lex_state = 6}, - [424] = {.lex_state = 0, .external_lex_state = 6}, - [425] = {.lex_state = 0, .external_lex_state = 7}, + [410] = {.lex_state = 0}, + [411] = {.lex_state = 41}, + [412] = {.lex_state = 0}, + [413] = {.lex_state = 0}, + [414] = {.lex_state = 0}, + [415] = {.lex_state = 0}, + [416] = {.lex_state = 41}, + [417] = {.lex_state = 0, .external_lex_state = 7}, + [418] = {.lex_state = 41, .external_lex_state = 2}, + [419] = {.lex_state = 0}, + [420] = {.lex_state = 0}, + [421] = {.lex_state = 0}, + [422] = {.lex_state = 0}, + [423] = {.lex_state = 0, .external_lex_state = 8}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 0}, [426] = {.lex_state = 0}, - [427] = {.lex_state = 0, .external_lex_state = 6}, - [428] = {.lex_state = 0, .external_lex_state = 7}, - [429] = {.lex_state = 0, .external_lex_state = 6}, - [430] = {.lex_state = 0, .external_lex_state = 6}, - [431] = {.lex_state = 0, .external_lex_state = 7}, - [432] = {.lex_state = 0, .external_lex_state = 6}, - [433] = {.lex_state = 0, .external_lex_state = 7}, - [434] = {.lex_state = 0}, - [435] = {.lex_state = 0, .external_lex_state = 6}, - [436] = {.lex_state = 0, .external_lex_state = 7}, - [437] = {.lex_state = 0, .external_lex_state = 8}, - [438] = {.lex_state = 0, .external_lex_state = 6}, - [439] = {.lex_state = 0}, - [440] = {.lex_state = 0, .external_lex_state = 6}, - [441] = {.lex_state = 0, .external_lex_state = 6}, - [442] = {.lex_state = 0, .external_lex_state = 10}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0, .external_lex_state = 6}, - [445] = {.lex_state = 0}, - [446] = {.lex_state = 41}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 0, .external_lex_state = 6}, - [449] = {.lex_state = 0, .external_lex_state = 6}, - [450] = {.lex_state = 0, .external_lex_state = 7}, - [451] = {.lex_state = 0, .external_lex_state = 6}, - [452] = {.lex_state = 0, .external_lex_state = 6}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 0}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 0, .external_lex_state = 8}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0, .external_lex_state = 7}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0, .external_lex_state = 8}, + [437] = {.lex_state = 0, .external_lex_state = 9}, + [438] = {.lex_state = 0}, + [439] = {.lex_state = 0, .external_lex_state = 8}, + [440] = {.lex_state = 0, .external_lex_state = 8}, + [441] = {.lex_state = 0, .external_lex_state = 8}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 0, .external_lex_state = 8}, + [444] = {.lex_state = 0, .external_lex_state = 8}, + [445] = {.lex_state = 0, .external_lex_state = 6}, + [446] = {.lex_state = 0, .external_lex_state = 7}, + [447] = {.lex_state = 0, .external_lex_state = 8}, + [448] = {.lex_state = 0, .external_lex_state = 8}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 0}, + [451] = {.lex_state = 0, .external_lex_state = 8}, + [452] = {.lex_state = 0, .external_lex_state = 8}, [453] = {.lex_state = 0}, - [454] = {.lex_state = 0, .external_lex_state = 7}, + [454] = {.lex_state = 0}, [455] = {.lex_state = 0, .external_lex_state = 8}, - [456] = {.lex_state = 0, .external_lex_state = 7}, - [457] = {.lex_state = 0, .external_lex_state = 5}, - [458] = {.lex_state = 41}, - [459] = {.lex_state = 0, .external_lex_state = 5}, - [460] = {.lex_state = 0, .external_lex_state = 8}, - [461] = {.lex_state = 41, .external_lex_state = 2}, - [462] = {.lex_state = 0, .external_lex_state = 9}, - [463] = {.lex_state = 0, .external_lex_state = 8}, - [464] = {.lex_state = 0, .external_lex_state = 8}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 0, .external_lex_state = 4}, - [467] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 4}, - [470] = {.lex_state = 0, .external_lex_state = 4}, - [471] = {.lex_state = 0, .external_lex_state = 8}, - [472] = {.lex_state = 0}, - [473] = {.lex_state = 41}, - [474] = {.lex_state = 0}, - [475] = {.lex_state = 0, .external_lex_state = 8}, - [476] = {.lex_state = 0, .external_lex_state = 8}, - [477] = {.lex_state = 3}, - [478] = {.lex_state = 41}, + [469] = {.lex_state = 0, .external_lex_state = 6}, + [470] = {.lex_state = 0, .external_lex_state = 7}, + [471] = {.lex_state = 0, .external_lex_state = 7}, + [472] = {.lex_state = 0, .external_lex_state = 7}, + [473] = {.lex_state = 0}, + [474] = {.lex_state = 0, .external_lex_state = 7}, + [475] = {.lex_state = 0, .external_lex_state = 7}, + [476] = {.lex_state = 0, .external_lex_state = 7}, + [477] = {.lex_state = 0, .external_lex_state = 7}, + [478] = {.lex_state = 0, .external_lex_state = 8}, [479] = {.lex_state = 0, .external_lex_state = 8}, - [480] = {.lex_state = 0, .external_lex_state = 8}, - [481] = {.lex_state = 0, .external_lex_state = 8}, - [482] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 4}, + [484] = {.lex_state = 0, .external_lex_state = 8}, [485] = {.lex_state = 0, .external_lex_state = 8}, - [486] = {.lex_state = 0, .external_lex_state = 8}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 0}, + [486] = {.lex_state = 0}, + [487] = {.lex_state = 0, .external_lex_state = 8}, + [488] = {.lex_state = 0, .external_lex_state = 8}, [489] = {.lex_state = 0}, - [490] = {.lex_state = 0, .external_lex_state = 8}, - [491] = {.lex_state = 0, .external_lex_state = 8}, - [492] = {.lex_state = 0, .external_lex_state = 8}, - [493] = {.lex_state = 0, .external_lex_state = 8}, - [494] = {.lex_state = 0, .external_lex_state = 5}, - [495] = {.lex_state = 0, .external_lex_state = 4}, - [496] = {.lex_state = 0, .external_lex_state = 4}, - [497] = {.lex_state = 0, .external_lex_state = 8}, - [498] = {.lex_state = 41, .external_lex_state = 2}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 0, .external_lex_state = 9}, - [502] = {.lex_state = 0, .external_lex_state = 4}, - [503] = {.lex_state = 0, .external_lex_state = 8}, - [504] = {.lex_state = 41}, - [505] = {.lex_state = 0, .external_lex_state = 4}, - [506] = {.lex_state = 0, .external_lex_state = 8}, - [507] = {.lex_state = 0, .external_lex_state = 8}, - [508] = {.lex_state = 0, .external_lex_state = 8}, - [509] = {.lex_state = 0, .external_lex_state = 8}, - [510] = {.lex_state = 0, .external_lex_state = 5}, - [511] = {.lex_state = 0, .external_lex_state = 8}, - [512] = {.lex_state = 0, .external_lex_state = 8}, - [513] = {.lex_state = 0, .external_lex_state = 8}, + [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}, [514] = {.lex_state = 0, .external_lex_state = 5}, - [515] = {.lex_state = 0, .external_lex_state = 5}, - [516] = {.lex_state = 0}, - [517] = {.lex_state = 41}, - [518] = {.lex_state = 0}, - [519] = {.lex_state = 0}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 0, .external_lex_state = 4}, - [522] = {.lex_state = 0}, - [523] = {.lex_state = 0, .external_lex_state = 10}, - [524] = {.lex_state = 0, .external_lex_state = 10}, - [525] = {.lex_state = 0}, - [526] = {.lex_state = 0}, + [515] = {.lex_state = 0, .external_lex_state = 4}, + [516] = {.lex_state = 0, .external_lex_state = 4}, + [517] = {.lex_state = 0}, + [518] = {.lex_state = 0, .external_lex_state = 6}, + [519] = {.lex_state = 0, .external_lex_state = 6}, + [520] = {.lex_state = 0, .external_lex_state = 6}, + [521] = {.lex_state = 0, .external_lex_state = 5}, + [522] = {.lex_state = 41, .external_lex_state = 2}, + [523] = {.lex_state = 0, .external_lex_state = 6}, + [524] = {.lex_state = 0, .external_lex_state = 4}, + [525] = {.lex_state = 0, .external_lex_state = 9}, + [526] = {.lex_state = 0, .external_lex_state = 6}, [527] = {.lex_state = 0}, - [528] = {.lex_state = 0}, + [528] = {.lex_state = 0, .external_lex_state = 6}, [529] = {.lex_state = 0}, - [530] = {.lex_state = 0}, - [531] = {.lex_state = 0}, - [532] = {.lex_state = 0}, - [533] = {.lex_state = 0}, - [534] = {.lex_state = 0}, - [535] = {.lex_state = 0}, - [536] = {.lex_state = 1}, - [537] = {.lex_state = 1}, - [538] = {.lex_state = 41}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, + [530] = {.lex_state = 41, .external_lex_state = 2}, + [531] = {.lex_state = 0, .external_lex_state = 4}, + [532] = {.lex_state = 0, .external_lex_state = 6}, + [533] = {.lex_state = 3}, + [534] = {.lex_state = 0, .external_lex_state = 5}, + [535] = {.lex_state = 0, .external_lex_state = 6}, + [536] = {.lex_state = 0, .external_lex_state = 4}, + [537] = {.lex_state = 0}, + [538] = {.lex_state = 0, .external_lex_state = 6}, + [539] = {.lex_state = 0, .external_lex_state = 6}, + [540] = {.lex_state = 0, .external_lex_state = 6}, [541] = {.lex_state = 0}, - [542] = {.lex_state = 0}, - [543] = {.lex_state = 0}, - [544] = {.lex_state = 0}, - [545] = {.lex_state = 0}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 41}, - [548] = {.lex_state = 1}, - [549] = {.lex_state = 0}, - [550] = {.lex_state = 0, .external_lex_state = 4}, - [551] = {.lex_state = 0}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 0}, - [554] = {.lex_state = 41}, + [542] = {.lex_state = 0, .external_lex_state = 6}, + [543] = {.lex_state = 0, .external_lex_state = 6}, + [544] = {.lex_state = 0, .external_lex_state = 6}, + [545] = {.lex_state = 0, .external_lex_state = 5}, + [546] = {.lex_state = 0, .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 = 0}, - [557] = {.lex_state = 0}, + [556] = {.lex_state = 41}, + [557] = {.lex_state = 0, .external_lex_state = 4}, [558] = {.lex_state = 0}, - [559] = {.lex_state = 0, .external_lex_state = 10}, - [560] = {.lex_state = 0, .external_lex_state = 10}, + [559] = {.lex_state = 0, .external_lex_state = 4}, + [560] = {.lex_state = 0}, [561] = {.lex_state = 0}, [562] = {.lex_state = 0}, [563] = {.lex_state = 0}, [564] = {.lex_state = 0}, - [565] = {.lex_state = 1}, - [566] = {.lex_state = 0, .external_lex_state = 4}, + [565] = {.lex_state = 0}, + [566] = {.lex_state = 1}, [567] = {.lex_state = 0}, [568] = {.lex_state = 0, .external_lex_state = 4}, - [569] = {.lex_state = 0}, - [570] = {.lex_state = 0}, + [569] = {.lex_state = 0, .external_lex_state = 4}, + [570] = {.lex_state = 41}, [571] = {.lex_state = 0}, - [572] = {.lex_state = 0, .external_lex_state = 4}, + [572] = {.lex_state = 0}, [573] = {.lex_state = 0}, - [574] = {.lex_state = 0}, + [574] = {.lex_state = 0, .external_lex_state = 4}, [575] = {.lex_state = 0, .external_lex_state = 4}, - [576] = {.lex_state = 0}, - [577] = {.lex_state = 0}, - [578] = {.lex_state = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 0, .external_lex_state = 4}, + [578] = {.lex_state = 0}, [579] = {.lex_state = 0}, [580] = {.lex_state = 0}, [581] = {.lex_state = 0}, - [582] = {.lex_state = 0}, + [582] = {.lex_state = 1}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, [585] = {.lex_state = 0}, [586] = {.lex_state = 0}, [587] = {.lex_state = 0}, [588] = {.lex_state = 0}, - [589] = {.lex_state = 41}, + [589] = {.lex_state = 0}, [590] = {.lex_state = 0}, - [591] = {.lex_state = 0, .external_lex_state = 4}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, - [594] = {.lex_state = 0, .external_lex_state = 10}, - [595] = {.lex_state = 0, .external_lex_state = 10}, - [596] = {.lex_state = 0}, + [591] = {.lex_state = 0}, + [592] = {.lex_state = 41}, + [593] = {.lex_state = 1}, + [594] = {.lex_state = 0}, + [595] = {.lex_state = 0}, + [596] = {.lex_state = 1}, [597] = {.lex_state = 0}, - [598] = {.lex_state = 41}, + [598] = {.lex_state = 0}, [599] = {.lex_state = 0}, - [600] = {.lex_state = 0, .external_lex_state = 4}, - [601] = {.lex_state = 0, .external_lex_state = 4}, + [600] = {.lex_state = 0}, + [601] = {.lex_state = 0}, [602] = {.lex_state = 0}, - [603] = {.lex_state = 0, .external_lex_state = 4}, + [603] = {.lex_state = 0}, [604] = {.lex_state = 0}, [605] = {.lex_state = 0, .external_lex_state = 4}, - [606] = {.lex_state = 0}, - [607] = {.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}, [609] = {.lex_state = 0}, - [610] = {.lex_state = 0, .external_lex_state = 4}, - [611] = {.lex_state = 0, .external_lex_state = 4}, - [612] = {.lex_state = 0}, - [613] = {.lex_state = 0, .external_lex_state = 4}, + [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}, - [615] = {.lex_state = 0, .external_lex_state = 4}, - [616] = {.lex_state = 0, .external_lex_state = 5}, - [617] = {.lex_state = 0, .external_lex_state = 11}, - [618] = {.lex_state = 0, .external_lex_state = 4}, + [615] = {.lex_state = 0}, + [616] = {.lex_state = 41}, + [617] = {.lex_state = 41}, + [618] = {.lex_state = 0}, [619] = {.lex_state = 0}, - [620] = {.lex_state = 0, .external_lex_state = 5}, - [621] = {.lex_state = 0, .external_lex_state = 12}, + [620] = {.lex_state = 0}, + [621] = {.lex_state = 0, .external_lex_state = 4}, [622] = {.lex_state = 0}, [623] = {.lex_state = 0}, - [624] = {.lex_state = 0, .external_lex_state = 4}, - [625] = {.lex_state = 0, .external_lex_state = 11}, - [626] = {.lex_state = 0, .external_lex_state = 12}, - [627] = {.lex_state = 0, .external_lex_state = 4}, + [624] = {.lex_state = 0}, + [625] = {.lex_state = 0}, + [626] = {.lex_state = 41}, + [627] = {.lex_state = 0}, [628] = {.lex_state = 0}, [629] = {.lex_state = 0}, - [630] = {.lex_state = 0, .external_lex_state = 11}, - [631] = {.lex_state = 41}, - [632] = {.lex_state = 0, .external_lex_state = 4}, - [633] = {.lex_state = 41}, + [630] = {.lex_state = 0}, + [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 = 11}, - [636] = {.lex_state = 0, .external_lex_state = 4}, - [637] = {.lex_state = 0, .external_lex_state = 5}, - [638] = {.lex_state = 0, .external_lex_state = 11}, - [639] = {.lex_state = 0, .external_lex_state = 12}, - [640] = {.lex_state = 0, .external_lex_state = 4}, + [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 = 12}, - [643] = {.lex_state = 0, .external_lex_state = 12}, - [644] = {.lex_state = 41}, + [642] = {.lex_state = 0, .external_lex_state = 4}, + [643] = {.lex_state = 0, .external_lex_state = 5}, + [644] = {.lex_state = 0, .external_lex_state = 4}, [645] = {.lex_state = 0, .external_lex_state = 4}, [646] = {.lex_state = 0, .external_lex_state = 4}, - [647] = {.lex_state = 0, .external_lex_state = 4}, - [648] = {.lex_state = 0}, - [649] = {.lex_state = 0}, - [650] = {.lex_state = 0, .external_lex_state = 4}, - [651] = {.lex_state = 0, .external_lex_state = 12}, - [652] = {.lex_state = 0}, - [653] = {.lex_state = 0, .external_lex_state = 12}, - [654] = {.lex_state = 0, .external_lex_state = 4}, - [655] = {.lex_state = 0, .external_lex_state = 5}, - [656] = {.lex_state = 0}, - [657] = {.lex_state = 0, .external_lex_state = 5}, - [658] = {.lex_state = 0, .external_lex_state = 12}, - [659] = {.lex_state = 0, .external_lex_state = 10}, - [660] = {.lex_state = 0, .external_lex_state = 12}, + [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 = 0, .external_lex_state = 12}, - [663] = {.lex_state = 0, .external_lex_state = 11}, - [664] = {.lex_state = 41}, - [665] = {.lex_state = 0, .external_lex_state = 12}, - [666] = {.lex_state = 0, .external_lex_state = 5}, - [667] = {.lex_state = 0, .external_lex_state = 4}, - [668] = {.lex_state = 41}, - [669] = {.lex_state = 0, .external_lex_state = 10}, - [670] = {.lex_state = 0}, - [671] = {.lex_state = 0}, - [672] = {.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}, + [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}, + [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}, }; enum { @@ -11839,7 +12504,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_identifier] = sym_heredoc_identifier, }; -static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_quoted_template_start] = true, [ts_external_token_quoted_template_end] = true, @@ -11864,7 +12529,6 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_template_interpolation_end] = true, }, [6] = { - [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, @@ -11876,6 +12540,7 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_identifier] = true, }, [8] = { + [ts_external_token_quoted_template_end] = true, [ts_external_token__template_literal_chunk] = true, [ts_external_token_template_interpolation_start] = true, [ts_external_token_template_directive_start] = true, @@ -11885,12 +12550,9 @@ static const bool ts_external_scanner_states[13][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__template_literal_chunk] = true, }, [10] = { - [ts_external_token_template_directive_start] = true, - }, - [11] = { [ts_external_token_quoted_template_end] = true, }, - [12] = { + [11] = { [ts_external_token_heredoc_identifier] = true, }, }; @@ -11953,13 +12615,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_identifier] = ACTIONS(1), }, [1] = { - [sym_config_file] = STATE(671), - [sym_body] = STATE(670), - [sym_attribute] = STATE(386), - [sym_block] = STATE(386), - [sym_object] = STATE(670), + [sym_config_file] = STATE(654), + [sym_body] = STATE(675), + [sym_attribute] = STATE(411), + [sym_block] = STATE(411), + [sym_object] = STATE(675), [sym_object_start] = STATE(15), - [aux_sym_body_repeat1] = STATE(386), + [aux_sym_body_repeat1] = STATE(411), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [sym_identifier] = ACTIONS(9), @@ -11994,23 +12656,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(71), 1, + STATE(58), 1, sym_for_intro, - STATE(303), 1, + STATE(153), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(526), 1, + STATE(620), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12024,13 +12686,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12071,23 +12733,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(39), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(55), 1, + STATE(54), 1, sym_for_intro, - STATE(275), 1, + STATE(255), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(551), 1, + STATE(581), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12101,13 +12763,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12148,23 +12810,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(41), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(59), 1, + STATE(78), 1, sym_for_intro, - STATE(156), 1, + STATE(194), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(580), 1, + STATE(585), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12178,13 +12840,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12225,23 +12887,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(43), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(64), 1, + STATE(72), 1, sym_for_intro, - STATE(336), 1, + STATE(298), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(587), 1, + STATE(622), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12255,13 +12917,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12302,23 +12964,23 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(45), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(80), 1, + STATE(63), 1, sym_for_intro, - STATE(196), 1, + STATE(323), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(576), 1, + STATE(565), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12332,13 +12994,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12354,7 +13016,155 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [535] = 29, + [535] = 28, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(50), 1, + anon_sym_RBRACE, + ACTIONS(52), 1, + sym_identifier, + ACTIONS(55), 1, + anon_sym_LPAREN, + ACTIONS(58), 1, + aux_sym_numeric_lit_token1, + ACTIONS(61), 1, + aux_sym_numeric_lit_token2, + ACTIONS(67), 1, + sym_null_lit, + ACTIONS(70), 1, + anon_sym_COMMA, + ACTIONS(73), 1, + anon_sym_LBRACK, + ACTIONS(79), 1, + anon_sym_LT_LT, + ACTIONS(82), 1, + anon_sym_LT_LT_DASH, + ACTIONS(85), 1, + sym_quoted_template_start, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(40), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(64), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(76), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(7), 2, + sym_object_elem, + aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [637] = 28, + ACTIONS(11), 1, + anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, + ACTIONS(27), 1, + anon_sym_LBRACK, + ACTIONS(33), 1, + anon_sym_LT_LT, + ACTIONS(35), 1, + anon_sym_LT_LT_DASH, + ACTIONS(37), 1, + sym_quoted_template_start, + ACTIONS(88), 1, + anon_sym_RBRACE, + ACTIONS(90), 1, + anon_sym_COMMA, + STATE(4), 1, + sym_object_start, + STATE(12), 1, + sym_tuple_start, + STATE(22), 1, + sym__comma, + STATE(403), 1, + sym_conditional, + STATE(533), 1, + sym_expression, + STATE(648), 1, + sym_heredoc_start, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(23), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(31), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(11), 2, + sym_object_elem, + aux_sym__object_elems_repeat1, + STATE(193), 2, + sym_tuple, + sym_object, + STATE(196), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(197), 2, + sym_unary_operation, + sym_binary_operation, + STATE(201), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(192), 3, + sym_numeric_lit, + sym_bool_lit, + sym_string_lit, + STATE(129), 8, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_operation, + sym_template_expr, + [739] = 29, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -12377,168 +13187,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(51), 1, - sym_for_intro, - STATE(339), 1, - sym_tuple_end, - STATE(376), 1, - sym_conditional, - STATE(396), 1, - sym_expression, - STATE(519), 1, - sym__tuple_elems, - STATE(643), 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(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(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, - [639] = 28, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(52), 1, - anon_sym_RBRACE, - ACTIONS(54), 1, - sym_identifier, - ACTIONS(57), 1, - anon_sym_LPAREN, - ACTIONS(60), 1, - aux_sym_numeric_lit_token1, - ACTIONS(63), 1, - aux_sym_numeric_lit_token2, - ACTIONS(69), 1, - sym_null_lit, - ACTIONS(72), 1, - anon_sym_COMMA, - ACTIONS(75), 1, - anon_sym_LBRACK, - ACTIONS(81), 1, - anon_sym_LT_LT, - ACTIONS(84), 1, - anon_sym_LT_LT_DASH, - ACTIONS(87), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(40), 1, - sym__comma, - STATE(376), 1, - sym_conditional, - STATE(477), 1, - sym_expression, - STATE(643), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(66), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(78), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(8), 2, - sym_object_elem, - aux_sym__object_elems_repeat1, - STATE(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(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, - [741] = 28, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - ACTIONS(90), 1, - anon_sym_RBRACE, ACTIONS(92), 1, - anon_sym_COMMA, - STATE(6), 1, + anon_sym_RBRACK, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(26), 1, - sym__comma, - STATE(376), 1, + STATE(52), 1, + sym_for_intro, + STATE(264), 1, + sym_tuple_end, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(420), 1, sym_expression, - STATE(643), 1, + STATE(560), 1, + sym__tuple_elems, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12549,19 +13214,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(8), 2, - sym_object_elem, - aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12602,21 +13264,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(94), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(56), 1, + STATE(50), 1, sym_for_intro, - STATE(169), 1, + STATE(286), 1, sym_tuple_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(396), 1, + STATE(420), 1, sym_expression, - STATE(586), 1, + STATE(602), 1, sym__tuple_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12630,13 +13292,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12677,17 +13339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(98), 1, anon_sym_COMMA, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(22), 1, + STATE(28), 1, sym__comma, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12698,19 +13360,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(9), 2, + STATE(7), 2, sym_object_elem, aux_sym__object_elems_repeat1, STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12751,21 +13413,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(100), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(58), 1, + STATE(77), 1, sym_for_intro, - STATE(290), 1, + STATE(213), 1, sym_tuple_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(396), 1, + STATE(420), 1, sym_expression, - STATE(525), 1, + STATE(567), 1, sym__tuple_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12779,13 +13441,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12826,21 +13488,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(102), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(53), 1, + STATE(57), 1, sym_for_intro, - STATE(279), 1, + STATE(317), 1, sym_tuple_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(396), 1, + STATE(420), 1, sym_expression, - STATE(541), 1, + STATE(578), 1, sym__tuple_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12854,13 +13516,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12901,21 +13563,21 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(104), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(79), 1, + STATE(55), 1, sym_for_intro, - STATE(205), 1, + STATE(165), 1, sym_tuple_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(396), 1, + STATE(420), 1, sym_expression, - STATE(529), 1, + STATE(595), 1, sym__tuple_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -12929,13 +13591,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -12972,23 +13634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(45), 1, + ACTIONS(41), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(11), 1, + STATE(8), 1, sym_object_elem, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(196), 1, + STATE(194), 1, sym_object_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(576), 1, + STATE(585), 1, sym__object_elems, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13002,13 +13664,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13047,19 +13709,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(106), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(342), 1, + STATE(297), 1, sym__function_call_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(388), 1, + STATE(414), 1, sym_expression, - STATE(518), 1, + STATE(597), 1, sym_function_arguments, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13073,13 +13735,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13118,19 +13780,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(108), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(168), 1, + STATE(143), 1, sym__function_call_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(388), 1, + STATE(414), 1, sym_expression, - STATE(606), 1, + STATE(599), 1, sym_function_arguments, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13144,13 +13806,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13189,19 +13851,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(110), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(296), 1, + STATE(191), 1, sym__function_call_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(388), 1, + STATE(414), 1, sym_expression, - STATE(544), 1, + STATE(554), 1, sym_function_arguments, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13215,13 +13877,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13260,19 +13922,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(112), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(191), 1, + STATE(339), 1, sym__function_call_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(388), 1, + STATE(414), 1, sym_expression, - STATE(527), 1, + STATE(603), 1, sym_function_arguments, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13286,13 +13948,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13331,19 +13993,19 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(114), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, STATE(267), 1, sym__function_call_end, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(388), 1, + STATE(414), 1, sym_expression, - STATE(539), 1, + STATE(580), 1, sym_function_arguments, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13357,13 +14019,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13404,15 +14066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(134), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(467), 1, + STATE(534), 1, sym_expression, - STATE(510), 1, + STATE(548), 1, sym_conditional, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13423,23 +14085,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13469,19 +14131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(90), 1, + ACTIONS(96), 1, anon_sym_RBRACE, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(349), 1, + STATE(350), 1, sym_object_elem, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13495,13 +14157,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -13542,15 +14204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_strip_marker, ACTIONS(138), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(494), 1, + STATE(497), 1, sym_expression, - STATE(510), 1, + STATE(548), 1, sym_conditional, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13561,23 +14223,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13611,15 +14273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_strip_marker, ACTIONS(142), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(510), 1, - sym_conditional, - STATE(515), 1, + STATE(545), 1, sym_expression, - STATE(642), 1, + STATE(548), 1, + sym_conditional, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13630,23 +14292,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13680,15 +14342,15 @@ static const uint16_t ts_small_parse_table[] = { sym_strip_marker, ACTIONS(146), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(457), 1, + STATE(503), 1, sym_expression, - STATE(510), 1, + STATE(548), 1, sym_conditional, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13699,23 +14361,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13727,64 +14389,64 @@ static const uint16_t ts_small_parse_table[] = { [2427] = 26, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(116), 1, + sym_identifier, + ACTIONS(118), 1, + anon_sym_LPAREN, + ACTIONS(120), 1, + aux_sym_numeric_lit_token1, + ACTIONS(122), 1, + aux_sym_numeric_lit_token2, + ACTIONS(126), 1, + sym_null_lit, + ACTIONS(132), 1, sym_quoted_template_start, ACTIONS(148), 1, - anon_sym_RBRACE, + sym_strip_marker, + ACTIONS(150), 1, + sym_template_interpolation_end, STATE(6), 1, sym_object_start, - STATE(14), 1, + STATE(13), 1, sym_tuple_start, - STATE(349), 1, - sym_object_elem, - STATE(376), 1, - sym_conditional, - STATE(477), 1, + STATE(521), 1, sym_expression, - STATE(643), 1, + STATE(548), 1, + sym_conditional, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(332), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(337), 2, + sym_tuple, + sym_object, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(129), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13814,19 +14476,19 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - ACTIONS(150), 1, - sym_strip_marker, ACTIONS(152), 1, + sym_strip_marker, + ACTIONS(154), 1, sym_template_interpolation_end, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(510), 1, - sym_conditional, STATE(514), 1, sym_expression, - STATE(642), 1, + STATE(548), 1, + sym_conditional, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -13837,23 +14499,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13865,64 +14527,64 @@ static const uint16_t ts_small_parse_table[] = { [2617] = 26, ACTIONS(11), 1, anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, + ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(154), 1, - sym_strip_marker, ACTIONS(156), 1, - sym_template_interpolation_end, - STATE(5), 1, + anon_sym_RBRACE, + STATE(4), 1, sym_object_start, STATE(12), 1, sym_tuple_start, - STATE(459), 1, - sym_expression, - STATE(510), 1, + STATE(350), 1, + sym_object_elem, + STATE(403), 1, sym_conditional, - STATE(642), 1, + STATE(533), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(316), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(331), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(329), 3, + 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(220), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -13935,13 +14597,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, @@ -14002,15 +14664,15 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(162), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(405), 1, + STATE(429), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14024,13 +14686,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14046,67 +14708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [2858] = 18, - ACTIONS(168), 1, - anon_sym_LBRACK, - ACTIONS(170), 1, - anon_sym_DOT, - ACTIONS(172), 1, - anon_sym_DOT_STAR, - ACTIONS(174), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(180), 1, - anon_sym_SLASH, - ACTIONS(188), 1, - anon_sym_AMP_AMP, - ACTIONS(190), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(178), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(182), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(184), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, - sym_new_index, - sym_legacy_index, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(166), 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(164), 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, - [2936] = 25, + [2858] = 25, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -14127,17 +14729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - ACTIONS(192), 1, + ACTIONS(164), 1, anon_sym_RPAREN, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(405), 1, + STATE(429), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14151,13 +14753,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14173,26 +14775,26 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [3028] = 8, - ACTIONS(180), 1, + [2950] = 8, + ACTIONS(172), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(178), 2, + ACTIONS(170), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 11, + ACTIONS(168), 11, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14204,7 +14806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(194), 18, + ACTIONS(166), 18, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14223,21 +14825,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3086] = 6, + [3008] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 12, + ACTIONS(168), 12, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14250,7 +14852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_LT_LT, - ACTIONS(194), 20, + ACTIONS(166), 20, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14271,86 +14873,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3140] = 9, - ACTIONS(180), 1, + [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_DASH, - anon_sym_PLUS, + anon_sym_GT, + anon_sym_LT, ACTIONS(178), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 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(194), 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(180), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(178), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(182), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(184), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, - sym_new_index, - sym_legacy_index, - STATE(167), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 9, + ACTIONS(168), 9, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14360,7 +14962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_BANG, anon_sym_LT_LT, - ACTIONS(194), 14, + ACTIONS(166), 14, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14375,38 +14977,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - [3264] = 12, - ACTIONS(180), 1, + [3186] = 12, + ACTIONS(172), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(178), 2, + ACTIONS(170), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(182), 2, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(184), 2, + ACTIONS(178), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(186), 2, + ACTIONS(180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 9, + ACTIONS(168), 9, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14416,7 +15018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_BANG, anon_sym_LT_LT, - ACTIONS(194), 12, + ACTIONS(166), 12, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14429,40 +15031,100 @@ static const uint16_t ts_small_parse_table[] = { 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(180), 1, + ACTIONS(172), 1, anon_sym_SLASH, - ACTIONS(188), 1, + ACTIONS(194), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(178), 2, + ACTIONS(170), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(182), 2, + ACTIONS(174), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(176), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(184), 2, + ACTIONS(178), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(186), 2, + ACTIONS(180), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(163), 2, - sym_attr_splat, - sym_full_splat, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, - STATE(167), 3, + STATE(170), 2, + sym_attr_splat, + sym_full_splat, + STATE(169), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 9, + ACTIONS(168), 9, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, @@ -14472,7 +15134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_BANG, anon_sym_LT_LT, - ACTIONS(194), 11, + ACTIONS(166), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -14507,15 +15169,15 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(198), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(405), 1, + STATE(429), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14529,13 +15191,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14572,17 +15234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(349), 1, + STATE(350), 1, sym_object_elem, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(477), 1, + STATE(533), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14596,13 +15258,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14641,15 +15303,15 @@ static const uint16_t ts_small_parse_table[] = { sym_quoted_template_start, ACTIONS(200), 1, anon_sym_RBRACK, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(405), 1, + STATE(429), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14663,13 +15325,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14688,60 +15350,60 @@ static const uint16_t ts_small_parse_table[] = { [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(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym_object_start, - STATE(13), 1, + STATE(12), 1, sym_tuple_start, - STATE(385), 1, - sym_expression, - STATE(392), 1, + STATE(403), 1, sym_conditional, - STATE(660), 1, + STATE(561), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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(181), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -14771,15 +15433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(472), 1, + STATE(613), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14793,13 +15455,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14836,15 +15498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(562), 1, + STATE(402), 1, sym_expression, - STATE(643), 1, + STATE(403), 1, + sym_conditional, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14858,13 +15520,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -14881,71 +15543,6 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [3941] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(496), 1, - sym_conditional, - STATE(505), 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(302), 2, - sym_tuple, - sym_object, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 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, - [4030] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -14966,15 +15563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(561), 1, + STATE(563), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -14988,13 +15585,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -15010,6 +15607,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_object_start, + STATE(10), 1, + sym_tuple_start, + STATE(515), 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, [4119] = 24, ACTIONS(11), 1, anon_sym_LBRACE, @@ -15031,15 +15693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(482), 1, + STATE(511), 1, sym_expression, - STATE(510), 1, + STATE(548), 1, sym_conditional, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15050,23 +15712,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(220), 8, + STATE(219), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15096,15 +15758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(377), 1, + STATE(589), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15118,13 +15780,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -15143,60 +15805,60 @@ static const uint16_t ts_small_parse_table[] = { [4297] = 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, + 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(6), 1, + STATE(3), 1, sym_object_start, - STATE(14), 1, + STATE(9), 1, sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(553), 1, + STATE(412), 1, sym_expression, - STATE(643), 1, + STATE(422), 1, + sym_conditional, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 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(129), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15208,60 +15870,60 @@ static const uint16_t ts_small_parse_table[] = { [4386] = 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, + 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(6), 1, + STATE(3), 1, sym_object_start, - STATE(14), 1, + STATE(9), 1, sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(516), 1, + STATE(419), 1, sym_expression, - STATE(643), 1, + STATE(422), 1, + sym_conditional, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 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(129), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15279,54 +15941,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(392), 1, - sym_conditional, - STATE(397), 1, + STATE(409), 1, sym_expression, - STATE(660), 1, + STATE(422), 1, + sym_conditional, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15344,54 +16006,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(383), 1, + STATE(421), 1, sym_expression, - STATE(392), 1, + STATE(422), 1, sym_conditional, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15409,54 +16071,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(392), 1, - sym_conditional, - STATE(394), 1, + STATE(415), 1, sym_expression, - STATE(660), 1, + STATE(422), 1, + sym_conditional, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15466,71 +16128,6 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [4742] = 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(3), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(387), 1, - sym_expression, - STATE(392), 1, - sym_conditional, - STATE(660), 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(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(274), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(181), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [4831] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15551,15 +16148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(548), 1, + STATE(576), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15573,13 +16170,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -15595,6 +16192,71 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -15604,54 +16266,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(391), 1, + STATE(413), 1, sym_expression, - STATE(392), 1, + STATE(422), 1, sym_conditional, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15669,54 +16331,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(382), 1, - sym_expression, - STATE(392), 1, + STATE(422), 1, sym_conditional, - STATE(660), 1, + STATE(424), 1, + sym_expression, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -15726,71 +16388,6 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [5098] = 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(3), 1, - sym_object_start, - STATE(13), 1, - sym_tuple_start, - STATE(392), 1, - sym_conditional, - STATE(400), 1, - sym_expression, - STATE(660), 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(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(274), 3, - sym_numeric_lit, - sym_bool_lit, - sym_string_lit, - STATE(181), 8, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_operation, - sym_template_expr, - [5187] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -15811,15 +16408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(565), 1, + STATE(582), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15833,13 +16430,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -15855,7 +16452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [5276] = 24, + [5187] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -15876,15 +16473,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(14), 1, sym_tuple_start, - STATE(347), 1, + STATE(346), 1, sym_expression, - STATE(348), 1, + STATE(347), 1, sym_conditional, - STATE(651), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15895,23 +16492,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(31), 8, + 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, @@ -15941,15 +16603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(528), 1, + STATE(631), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -15963,13 +16625,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -15986,6 +16648,71 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -16006,15 +16733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(534), 1, + STATE(593), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16028,13 +16755,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16050,71 +16777,6 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [5543] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(496), 1, - sym_conditional, - STATE(502), 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(302), 2, - sym_tuple, - sym_object, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 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, [5632] = 24, ACTIONS(11), 1, anon_sym_LBRACE, @@ -16136,15 +16798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(578), 1, + STATE(527), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16158,13 +16820,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16183,60 +16845,60 @@ static const uint16_t ts_small_parse_table[] = { [5721] = 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, + 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(6), 1, + STATE(3), 1, sym_object_start, - STATE(14), 1, + STATE(9), 1, sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(583), 1, + STATE(410), 1, sym_expression, - STATE(643), 1, + STATE(422), 1, + sym_conditional, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 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(129), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16266,15 +16928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(584), 1, + STATE(611), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16288,13 +16950,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16313,60 +16975,60 @@ static const uint16_t ts_small_parse_table[] = { [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(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, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(484), 1, - sym_expression, - STATE(496), 1, + STATE(403), 1, sym_conditional, - STATE(665), 1, + STATE(601), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(302), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(304), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(305), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(306), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, - STATE(301), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(222), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16396,15 +17058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(597), 1, + STATE(564), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16418,13 +17080,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16443,60 +17105,60 @@ static const uint16_t ts_small_parse_table[] = { [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(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym_object_start, - STATE(13), 1, + STATE(12), 1, sym_tuple_start, - STATE(381), 1, - sym_expression, - STATE(392), 1, + STATE(403), 1, sym_conditional, - STATE(660), 1, + STATE(481), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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(181), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16526,15 +17188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(446), 1, + STATE(429), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16548,13 +17210,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16571,6 +17233,71 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -16591,15 +17318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(537), 1, + STATE(566), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16613,13 +17340,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -16635,7 +17362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [6344] = 24, + [6433] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -16656,14 +17383,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(232), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym_object_start, - STATE(7), 1, + STATE(9), 1, sym_tuple_start, - STATE(495), 1, - sym_expression, - STATE(496), 1, + STATE(422), 1, sym_conditional, + STATE(430), 1, + sym_expression, STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, @@ -16675,19 +17402,84 @@ static const uint16_t ts_small_parse_table[] = { 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(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -16700,137 +17492,72 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [6433] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(585), 1, - sym_expression, - STATE(643), 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(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(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, - [6522] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(564), 1, - sym_expression, - STATE(643), 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(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(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, [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, @@ -16851,15 +17578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(14), 1, sym_tuple_start, - STATE(346), 1, - sym_expression, - STATE(348), 1, + STATE(347), 1, sym_conditional, - STATE(651), 1, + STATE(348), 1, + sym_expression, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -16870,23 +17597,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(31), 8, + STATE(37), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -16895,7 +17622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [6700] = 24, + [6789] = 24, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -16916,14 +17643,14 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(232), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym_object_start, - STATE(7), 1, + STATE(9), 1, sym_tuple_start, - STATE(469), 1, - sym_expression, - STATE(496), 1, + STATE(422), 1, sym_conditional, + STATE(428), 1, + sym_expression, STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, @@ -16935,88 +17662,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(302), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(304), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(305), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(306), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(301), 3, + STATE(253), 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(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(376), 1, - sym_conditional, - STATE(405), 1, - sym_expression, - STATE(643), 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(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(129), 8, + STATE(179), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17046,15 +17708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(552), 1, + STATE(596), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17068,13 +17730,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17111,15 +17773,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(392), 1, - sym_conditional, - STATE(401), 1, + STATE(536), 1, sym_expression, - STATE(660), 1, + STATE(549), 1, + sym_conditional, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17130,23 +17792,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(266), 2, + STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(268), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(302), 2, + sym_tuple, + sym_object, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(222), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17176,15 +17838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(536), 1, + STATE(591), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17198,13 +17860,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17221,71 +17883,6 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [7145] = 24, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(466), 1, - sym_expression, - STATE(496), 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(302), 2, - sym_tuple, - sym_object, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 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(11), 1, anon_sym_LBRACE, ACTIONS(15), 1, @@ -17306,15 +17903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(588), 1, + STATE(600), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17328,13 +17925,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17350,6 +17947,71 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -17371,15 +18033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(596), 1, + STATE(558), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17393,13 +18055,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17418,60 +18080,60 @@ static const uint16_t ts_small_parse_table[] = { [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(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, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(4), 1, sym_object_start, - STATE(7), 1, + STATE(12), 1, sym_tuple_start, - STATE(470), 1, - sym_expression, - STATE(496), 1, + STATE(403), 1, sym_conditional, - STATE(665), 1, + STATE(618), 1, + sym_expression, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(302), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(304), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(305), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(306), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, - STATE(301), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(222), 8, + STATE(129), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17501,15 +18163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(590), 1, + STATE(630), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17523,13 +18185,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17566,15 +18228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(392), 1, + STATE(549), 1, sym_conditional, - STATE(393), 1, + STATE(552), 1, sym_expression, - STATE(660), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17585,23 +18247,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(266), 2, + STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(268), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(302), 2, + sym_tuple, + sym_object, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(181), 8, + STATE(222), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -17631,15 +18293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(592), 1, + STATE(629), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17653,13 +18315,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17696,15 +18358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(376), 1, + STATE(403), 1, sym_conditional, - STATE(599), 1, + STATE(625), 1, sym_expression, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -17718,13 +18380,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -17741,14 +18403,14 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [7857] = 7, - ACTIONS(168), 1, + ACTIONS(186), 1, anon_sym_LBRACK, - ACTIONS(170), 1, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(90), 3, @@ -17788,14 +18450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [7911] = 7, - ACTIONS(168), 1, + ACTIONS(186), 1, anon_sym_LBRACK, - ACTIONS(170), 1, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(93), 3, @@ -17835,14 +18497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [7965] = 7, - ACTIONS(168), 1, + ACTIONS(186), 1, anon_sym_LBRACK, - ACTIONS(170), 1, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(92), 3, @@ -17882,14 +18544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, [8019] = 7, - ACTIONS(168), 1, + ACTIONS(186), 1, anon_sym_LBRACK, - ACTIONS(170), 1, + ACTIONS(188), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(93), 3, @@ -17936,7 +18598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(174), 2, + STATE(160), 2, sym_new_index, sym_legacy_index, STATE(93), 3, @@ -17996,11 +18658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18014,20 +18676,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(132), 8, + STATE(131), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18037,6 +18699,67 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -18057,11 +18780,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(660), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18072,84 +18795,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(266), 2, + STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(268), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 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(11), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(218), 1, - sym_identifier, - ACTIONS(220), 1, - anon_sym_LPAREN, - ACTIONS(222), 1, - aux_sym_numeric_lit_token1, - ACTIONS(224), 1, - aux_sym_numeric_lit_token2, - ACTIONS(228), 1, - sym_null_lit, - ACTIONS(232), 1, - sym_quoted_template_start, - STATE(2), 1, - sym_object_start, - STATE(7), 1, - sym_tuple_start, - STATE(665), 1, - sym_heredoc_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(226), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(230), 2, - anon_sym_DASH, - anon_sym_BANG, STATE(302), 2, sym_tuple, sym_object, - STATE(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(229), 8, + STATE(225), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18167,50 +18829,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(202), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(204), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(208), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(212), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(232), 8, + STATE(228), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18228,50 +18890,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(202), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(204), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(208), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(212), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(216), 8, + STATE(217), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18289,50 +18951,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(202), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(204), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(208), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(212), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(224), 8, + STATE(218), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18350,50 +19012,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(202), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(204), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(208), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(212), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(216), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(5), 1, sym_object_start, - STATE(7), 1, + STATE(10), 1, sym_tuple_start, - STATE(665), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + 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(304), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(305), 2, - sym_unary_operation, - sym_binary_operation, - STATE(306), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(301), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(235), 8, + STATE(236), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18423,11 +19085,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18438,19 +19100,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -18472,50 +19134,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(132), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(6), 1, sym_object_start, - STATE(10), 1, + STATE(13), 1, sym_tuple_start, - STATE(651), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, - sym_tuple, - sym_object, - STATE(159), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(332), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(337), 2, + sym_tuple, + sym_object, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(29), 8, + STATE(226), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18533,50 +19195,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(234), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(236), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(238), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(240), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(244), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(248), 1, sym_quoted_template_start, STATE(2), 1, sym_object_start, - STATE(7), 1, + STATE(14), 1, sym_tuple_start, - STATE(665), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(242), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(302), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(304), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(305), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(306), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(301), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(225), 8, + STATE(38), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18606,11 +19268,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18621,23 +19283,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(217), 8, + STATE(232), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18649,56 +19311,56 @@ static const uint16_t ts_small_parse_table[] = { [9040] = 22, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(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(14), 1, + STATE(13), 1, sym_tuple_start, - STATE(643), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, - sym_tuple, - sym_object, - STATE(197), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(332), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(337), 2, + sym_tuple, + sym_object, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(136), 8, + STATE(233), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18716,50 +19378,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, + ACTIONS(234), 1, sym_identifier, - ACTIONS(118), 1, + ACTIONS(236), 1, anon_sym_LPAREN, - ACTIONS(120), 1, + ACTIONS(238), 1, aux_sym_numeric_lit_token1, - ACTIONS(122), 1, + ACTIONS(240), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(244), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(248), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(2), 1, sym_object_start, - STATE(12), 1, + STATE(14), 1, sym_tuple_start, - STATE(642), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(242), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(316), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(331), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(156), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(158), 2, + sym_unary_operation, + sym_binary_operation, + STATE(161), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(233), 8, + STATE(36), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18777,50 +19439,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(218), 1, + ACTIONS(116), 1, sym_identifier, - ACTIONS(220), 1, + ACTIONS(118), 1, anon_sym_LPAREN, - ACTIONS(222), 1, + ACTIONS(120), 1, aux_sym_numeric_lit_token1, - ACTIONS(224), 1, + ACTIONS(122), 1, aux_sym_numeric_lit_token2, - ACTIONS(228), 1, + ACTIONS(126), 1, sym_null_lit, - ACTIONS(232), 1, + ACTIONS(132), 1, sym_quoted_template_start, - STATE(2), 1, + STATE(6), 1, sym_object_start, - STATE(7), 1, + STATE(13), 1, sym_tuple_start, - STATE(665), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(226), 2, + ACTIONS(124), 2, anon_sym_true, anon_sym_false, - ACTIONS(230), 2, + ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(302), 2, - sym_tuple, - sym_object, - STATE(304), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(305), 2, + STATE(332), 2, sym_unary_operation, sym_binary_operation, - STATE(306), 2, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(301), 3, + STATE(337), 2, + sym_tuple, + sym_object, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(236), 8, + STATE(220), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18838,50 +19500,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(116), 1, + ACTIONS(202), 1, sym_identifier, - ACTIONS(118), 1, + ACTIONS(204), 1, anon_sym_LPAREN, - ACTIONS(120), 1, + ACTIONS(206), 1, aux_sym_numeric_lit_token1, - ACTIONS(122), 1, + ACTIONS(208), 1, aux_sym_numeric_lit_token2, - ACTIONS(126), 1, + ACTIONS(212), 1, sym_null_lit, - ACTIONS(132), 1, + ACTIONS(216), 1, sym_quoted_template_start, STATE(5), 1, sym_object_start, - STATE(12), 1, + STATE(10), 1, sym_tuple_start, - STATE(642), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(210), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, STATE(292), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(316), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + 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(329), 3, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(218), 8, + STATE(216), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18911,11 +19573,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(14), 1, sym_tuple_start, - STATE(651), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -18926,23 +19588,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(38), 8, + STATE(35), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -18954,56 +19616,56 @@ static const uint16_t ts_small_parse_table[] = { [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(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(37), 1, sym_quoted_template_start, STATE(4), 1, sym_object_start, - STATE(10), 1, + STATE(12), 1, sym_tuple_start, - STATE(651), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(37), 8, + STATE(136), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19021,50 +19683,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(232), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(3), 1, sym_object_start, - STATE(10), 1, + STATE(9), 1, sym_tuple_start, - STATE(651), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(36), 8, + STATE(181), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19082,50 +19744,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(232), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(3), 1, sym_object_start, - STATE(10), 1, + STATE(9), 1, sym_tuple_start, - STATE(651), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(35), 8, + STATE(183), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19143,50 +19805,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(234), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(236), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(238), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(240), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(244), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(248), 1, + ACTIONS(232), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(3), 1, sym_object_start, - STATE(10), 1, + STATE(9), 1, sym_tuple_start, - STATE(651), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(242), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(246), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(257), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(258), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(34), 8, + STATE(178), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19204,46 +19866,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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, @@ -19265,50 +19927,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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, + STATE(180), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19326,50 +19988,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(257), 2, + sym_unary_operation, + sym_binary_operation, + STATE(258), 2, + sym_quoted_template, + sym_heredoc_template, + STATE(253), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(178), 8, + STATE(177), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19387,50 +20049,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, + ACTIONS(218), 1, sym_identifier, - ACTIONS(204), 1, + ACTIONS(220), 1, anon_sym_LPAREN, - ACTIONS(206), 1, + ACTIONS(222), 1, aux_sym_numeric_lit_token1, - ACTIONS(208), 1, + ACTIONS(224), 1, aux_sym_numeric_lit_token2, - ACTIONS(212), 1, + ACTIONS(228), 1, sym_null_lit, - ACTIONS(216), 1, + ACTIONS(232), 1, sym_quoted_template_start, STATE(3), 1, sym_object_start, - STATE(13), 1, + STATE(9), 1, sym_tuple_start, - STATE(660), 1, + STATE(665), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(226), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(230), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(254), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(256), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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, + STATE(176), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19442,56 +20104,56 @@ static const uint16_t ts_small_parse_table[] = { [10119] = 22, ACTIONS(11), 1, anon_sym_LBRACE, + ACTIONS(15), 1, + sym_identifier, + ACTIONS(17), 1, + anon_sym_LPAREN, + ACTIONS(19), 1, + aux_sym_numeric_lit_token1, + ACTIONS(21), 1, + aux_sym_numeric_lit_token2, + ACTIONS(25), 1, + sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(202), 1, - sym_identifier, - ACTIONS(204), 1, - anon_sym_LPAREN, - ACTIONS(206), 1, - aux_sym_numeric_lit_token1, - ACTIONS(208), 1, - aux_sym_numeric_lit_token2, - ACTIONS(212), 1, - sym_null_lit, - ACTIONS(216), 1, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym_object_start, - STATE(13), 1, + STATE(12), 1, sym_tuple_start, - STATE(660), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(210), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(214), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(265), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(266), 2, - sym_unary_operation, - sym_binary_operation, - STATE(268), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + 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(179), 8, + STATE(135), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19521,11 +20183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(216), 1, sym_quoted_template_start, - STATE(3), 1, + STATE(5), 1, sym_object_start, - STATE(13), 1, + STATE(10), 1, sym_tuple_start, - STATE(660), 1, + STATE(670), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19536,23 +20198,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(214), 2, anon_sym_DASH, anon_sym_BANG, - STATE(263), 2, - sym_tuple, - sym_object, - STATE(265), 2, + STATE(292), 2, sym_quoted_template, sym_heredoc_template, - STATE(266), 2, + STATE(294), 2, sym_unary_operation, sym_binary_operation, - STATE(268), 2, + STATE(296), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(274), 3, + STATE(302), 2, + sym_tuple, + sym_object, + STATE(306), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(177), 8, + STATE(224), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19562,128 +20224,6 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [10285] = 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(5), 1, - sym_object_start, - STATE(12), 1, - sym_tuple_start, - STATE(642), 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(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(316), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(331), 2, - sym_tuple, - sym_object, - STATE(329), 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, - [10368] = 22, - ACTIONS(11), 1, - anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LT_LT, - ACTIONS(35), 1, - anon_sym_LT_LT_DASH, - ACTIONS(37), 1, - sym_quoted_template_start, - STATE(6), 1, - sym_object_start, - STATE(14), 1, - sym_tuple_start, - STATE(643), 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(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, - [10451] = 22, ACTIONS(11), 1, anon_sym_LBRACE, ACTIONS(27), 1, @@ -19704,11 +20244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(248), 1, sym_quoted_template_start, - STATE(4), 1, + STATE(2), 1, sym_object_start, - STATE(10), 1, + STATE(14), 1, sym_tuple_start, - STATE(651), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19719,19 +20259,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(155), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(159), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(161), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(162), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(154), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -19744,7 +20284,68 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_operation, sym_template_expr, - [10534] = 22, + [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, anon_sym_LBRACE, ACTIONS(15), 1, @@ -19765,11 +20366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19783,13 +20384,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -19805,6 +20406,67 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -19826,11 +20488,11 @@ static const uint16_t ts_small_parse_table[] = { sym_null_lit, ACTIONS(132), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(6), 1, sym_object_start, - STATE(12), 1, + STATE(13), 1, sym_tuple_start, - STATE(642), 1, + STATE(647), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19841,19 +20503,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, + STATE(329), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(316), 2, + STATE(332), 2, + sym_unary_operation, + sym_binary_operation, + STATE(333), 2, sym_quoted_template, sym_heredoc_template, - STATE(331), 2, + STATE(337), 2, sym_tuple, sym_object, - STATE(329), 3, + STATE(340), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, @@ -19869,56 +20531,56 @@ static const uint16_t ts_small_parse_table[] = { [10700] = 22, ACTIONS(11), 1, anon_sym_LBRACE, - ACTIONS(15), 1, - sym_identifier, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(19), 1, - aux_sym_numeric_lit_token1, - ACTIONS(21), 1, - aux_sym_numeric_lit_token2, - ACTIONS(25), 1, - sym_null_lit, ACTIONS(27), 1, anon_sym_LBRACK, ACTIONS(33), 1, anon_sym_LT_LT, ACTIONS(35), 1, anon_sym_LT_LT_DASH, - ACTIONS(37), 1, + ACTIONS(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(6), 1, + STATE(2), 1, sym_object_start, STATE(14), 1, sym_tuple_start, - STATE(643), 1, + STATE(667), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(23), 2, + ACTIONS(242), 2, anon_sym_true, anon_sym_false, - ACTIONS(31), 2, + ACTIONS(246), 2, anon_sym_DASH, anon_sym_BANG, - STATE(193), 2, + STATE(152), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(156), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(158), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(161), 2, sym_quoted_template, sym_heredoc_template, - STATE(192), 3, + STATE(151), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(130), 8, + STATE(29), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19948,11 +20610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -19966,20 +20628,20 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, sym_numeric_lit, sym_bool_lit, sym_string_lit, - STATE(131), 8, + STATE(130), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -19991,56 +20653,56 @@ static const uint16_t ts_small_parse_table[] = { [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(116), 1, - sym_identifier, - ACTIONS(118), 1, - anon_sym_LPAREN, - ACTIONS(120), 1, - aux_sym_numeric_lit_token1, - ACTIONS(122), 1, - aux_sym_numeric_lit_token2, - ACTIONS(126), 1, - sym_null_lit, - ACTIONS(132), 1, + ACTIONS(37), 1, sym_quoted_template_start, - STATE(5), 1, + STATE(4), 1, sym_object_start, STATE(12), 1, sym_tuple_start, - STATE(642), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(124), 2, + ACTIONS(23), 2, anon_sym_true, anon_sym_false, - ACTIONS(128), 2, + ACTIONS(31), 2, anon_sym_DASH, anon_sym_BANG, - STATE(283), 2, - sym_unary_operation, - sym_binary_operation, - STATE(292), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(316), 2, - sym_quoted_template, - sym_heredoc_template, - STATE(331), 2, + STATE(193), 2, sym_tuple, sym_object, - STATE(329), 3, + 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(226), 8, + STATE(132), 8, sym__expr_term, sym_literal_value, sym_collection_value, @@ -20070,11 +20732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, ACTIONS(37), 1, sym_quoted_template_start, - STATE(6), 1, + STATE(4), 1, sym_object_start, - STATE(14), 1, + STATE(12), 1, sym_tuple_start, - STATE(643), 1, + STATE(648), 1, sym_heredoc_start, ACTIONS(3), 2, sym_comment, @@ -20088,13 +20750,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(193), 2, sym_tuple, sym_object, - STATE(197), 2, + STATE(196), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(201), 2, + STATE(197), 2, sym_unary_operation, sym_binary_operation, - STATE(204), 2, + STATE(201), 2, sym_quoted_template, sym_heredoc_template, STATE(192), 3, @@ -20111,7 +20773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_operation, sym_template_expr, [11032] = 18, - ACTIONS(166), 1, + ACTIONS(184), 1, anon_sym_EQ, ACTIONS(276), 1, anon_sym_LBRACK, @@ -20146,16 +20808,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - STATE(211), 3, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(164), 10, + ACTIONS(182), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20190,20 +20852,20 @@ static const uint16_t ts_small_parse_table[] = { 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(196), 3, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(211), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 13, + ACTIONS(166), 13, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20239,20 +20901,20 @@ static const uint16_t ts_small_parse_table[] = { 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(196), 3, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(211), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 14, + ACTIONS(166), 14, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20286,20 +20948,20 @@ static const uint16_t ts_small_parse_table[] = { 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(196), 3, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(168), 3, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, - STATE(211), 3, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 16, + ACTIONS(166), 16, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20329,22 +20991,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 5, + ACTIONS(168), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 18, + ACTIONS(166), 18, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20368,23 +21030,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 6, + ACTIONS(168), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 22, + ACTIONS(166), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20417,22 +21079,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 5, + ACTIONS(168), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 20, + ACTIONS(166), 20, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -20458,12 +21120,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(211), 2, + sym_new_index, + sym_legacy_index, + STATE(204), 3, sym_index, sym_get_attr, sym_splat, @@ -20505,7 +21167,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(199), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(138), 3, @@ -20548,7 +21210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(199), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(142), 3, @@ -20591,7 +21253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(199), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(140), 3, @@ -20634,7 +21296,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(199), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(142), 3, @@ -20718,7 +21380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(199), 2, + STATE(211), 2, sym_new_index, sym_legacy_index, STATE(142), 3, @@ -21972,7 +22634,7 @@ static const uint16_t ts_small_parse_table[] = { [13110] = 5, ACTIONS(440), 1, anon_sym_LPAREN, - STATE(19), 1, + STATE(18), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, @@ -22015,7 +22677,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(196), 2, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, ACTIONS(442), 2, @@ -22033,17 +22695,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(452), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 8, + ACTIONS(166), 8, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22058,7 +22720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(196), 2, + ACTIONS(168), 2, anon_sym_LBRACK, anon_sym_DOT, ACTIONS(442), 2, @@ -22076,17 +22738,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(452), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 9, + ACTIONS(166), 9, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22100,23 +22762,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 5, + ACTIONS(168), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 17, + ACTIONS(166), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22134,91 +22796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13311] = 11, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(444), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(448), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(450), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(248), 2, - sym_new_index, - sym_legacy_index, - STATE(269), 2, - sym_attr_splat, - sym_full_splat, - STATE(270), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 11, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13365] = 9, - ACTIONS(446), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(444), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(248), 2, - sym_new_index, - sym_legacy_index, - STATE(269), 2, - sym_attr_splat, - sym_full_splat, - STATE(270), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(194), 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, - [13415] = 17, + [13311] = 17, ACTIONS(446), 1, anon_sym_SLASH, ACTIONS(454), 1, @@ -22251,33 +22829,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(452), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(164), 5, + ACTIONS(182), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [13481] = 6, + [13377] = 11, + ACTIONS(446), 1, + anon_sym_SLASH, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(444), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(450), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + 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, @@ -22305,6 +22926,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [13475] = 9, + ACTIONS(446), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(444), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + STATE(262), 2, + sym_attr_splat, + sym_full_splat, + STATE(260), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(168), 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LT, + ACTIONS(166), 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, [13525] = 8, ACTIONS(446), 1, anon_sym_SLASH, @@ -22314,22 +22976,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(444), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, - STATE(269), 2, + STATE(262), 2, sym_attr_splat, sym_full_splat, - STATE(270), 3, + STATE(260), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 4, + ACTIONS(168), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 15, + ACTIONS(166), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -22383,14 +23045,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 6, + ACTIONS(342), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 22, + ACTIONS(340), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22414,74 +23076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [13647] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(370), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(368), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13684] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13721] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22515,7 +23109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13758] = 3, + [13684] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22549,75 +23143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13795] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13832] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [13869] = 3, + [13721] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22651,18 +23177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13906] = 3, + [13758] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(362), 6, + ACTIONS(322), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(360), 22, + ACTIONS(320), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22685,7 +23211,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13943] = 3, + [13795] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13832] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22719,7 +23279,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [13980] = 3, + [13869] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13906] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [13943] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -22753,6 +23381,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [13980] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, [14017] = 3, ACTIONS(3), 2, sym_comment, @@ -22791,14 +23453,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(378), 6, + ACTIONS(374), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(376), 22, + ACTIONS(372), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22825,14 +23487,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 6, + ACTIONS(338), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 22, + ACTIONS(336), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22859,14 +23521,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 6, + ACTIONS(422), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 22, + ACTIONS(420), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22893,14 +23555,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(374), 6, + ACTIONS(434), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(372), 22, + ACTIONS(432), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22961,14 +23623,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 6, + ACTIONS(398), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 22, + ACTIONS(396), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -22995,14 +23657,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(430), 6, + ACTIONS(362), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(428), 22, + ACTIONS(360), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23026,40 +23688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [14313] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14350] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23093,177 +23721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14387] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14424] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(382), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14461] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14498] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14535] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(426), 6, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(424), 22, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [14572] = 3, + [14350] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23297,7 +23755,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14609] = 3, + [14387] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(390), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14424] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14461] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23331,18 +23857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14646] = 3, + [14498] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 6, + ACTIONS(426), 6, anon_sym_EQ, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 22, + ACTIONS(424), 22, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -23365,7 +23891,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14683] = 3, + [14535] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14572] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(382), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14609] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14646] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23399,7 +24027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14720] = 3, + [14683] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -23433,7 +24061,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14757] = 9, + [14720] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 6, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 22, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [14757] = 6, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(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, @@ -23445,22 +24143,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(468), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(319), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 4, + ACTIONS(168), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 11, + ACTIONS(166), 11, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -23472,28 +24170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14805] = 6, + [14847] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(287), 2, - sym_new_index, - sym_legacy_index, STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(286), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 5, + ACTIONS(168), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 15, - sym_template_interpolation_end, + ACTIONS(166), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -23508,17 +24206,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14847] = 6, + [14889] = 17, + 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, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, + 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(286), 3, + STATE(335), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(182), 3, + sym_template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(338), 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, @@ -23544,22 +24289,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [14889] = 7, - ACTIONS(472), 1, + [14995] = 7, + ACTIONS(496), 1, anon_sym_LBRACK, - ACTIONS(475), 1, + ACTIONS(499), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, ACTIONS(268), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(219), 3, + STATE(221), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -23581,91 +24326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [14933] = 17, - ACTIONS(478), 1, - anon_sym_LBRACK, - ACTIONS(480), 1, - anon_sym_DOT, - ACTIONS(482), 1, - anon_sym_DOT_STAR, - ACTIONS(484), 1, - anon_sym_LBRACK_STAR_RBRACK, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(498), 1, - anon_sym_AMP_AMP, - ACTIONS(500), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(494), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(164), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - [14997] = 7, - ACTIONS(456), 1, - anon_sym_LBRACK, - ACTIONS(458), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(248), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(260), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(231), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(258), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [15041] = 17, + [15039] = 17, ACTIONS(470), 1, anon_sym_SLASH, ACTIONS(502), 1, @@ -23698,21 +24359,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, + STATE(288), 2, sym_attr_splat, sym_full_splat, - ACTIONS(164), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(182), 3, sym_template_directive_end, anon_sym_QMARK, sym_strip_marker, - STATE(319), 3, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - [15105] = 7, + [15103] = 7, ACTIONS(456), 1, anon_sym_LBRACK, ACTIONS(458), 1, @@ -23720,14 +24381,342 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + STATE(261), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(260), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(234), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(258), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [15147] = 13, + ACTIONS(470), 1, + anon_sym_SLASH, + ACTIONS(516), 1, + anon_sym_AMP_AMP, + 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, + 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, + 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, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(166), 7, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15257] = 13, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(492), 1, + anon_sym_AMP_AMP, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(490), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(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), 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, + 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, + 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, + 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, + STATE(288), 2, + sym_attr_splat, + sym_full_splat, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(166), 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, + [15419] = 11, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(168), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(486), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(488), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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), 9, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15471] = 9, + ACTIONS(484), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(480), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(482), 2, + anon_sym_STAR, + anon_sym_PERCENT, + STATE(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), 11, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [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, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(234), 3, + STATE(235), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -23749,28 +24738,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15149] = 6, + [15563] = 6, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(333), 2, - sym_new_index, - sym_legacy_index, + STATE(300), 2, + sym_attr_splat, + sym_full_splat, STATE(335), 2, - sym_attr_splat, - sym_full_splat, - STATE(319), 3, + sym_new_index, + sym_legacy_index, + STATE(338), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 5, + ACTIONS(168), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 15, - sym_template_directive_end, + ACTIONS(166), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -23785,249 +24774,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15191] = 13, - ACTIONS(470), 1, + [15605] = 8, + ACTIONS(484), 1, anon_sym_SLASH, - ACTIONS(516), 1, - anon_sym_AMP_AMP, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(196), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(466), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(468), 2, + ACTIONS(482), 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(333), 2, - sym_new_index, - sym_legacy_index, + STATE(300), 2, + sym_attr_splat, + sym_full_splat, STATE(335), 2, - sym_attr_splat, - sym_full_splat, - STATE(319), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 6, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15247] = 13, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(498), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(494), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(287), 2, sym_new_index, sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, + STATE(338), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(194), 6, + 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_PIPE_PIPE, - sym_strip_marker, - [15303] = 12, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(486), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(494), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(496), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 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, - [15357] = 11, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 2, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(492), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(494), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 9, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15409] = 12, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 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(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, - sym_attr_splat, - sym_full_splat, - STATE(319), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 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, - [15463] = 9, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(486), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(194), 11, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -24035,7 +24812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15511] = 7, + [15651] = 7, ACTIONS(456), 1, anon_sym_LBRACK, ACTIONS(458), 1, @@ -24043,14 +24820,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, ACTIONS(264), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(219), 3, + STATE(221), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -24072,86 +24849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15555] = 11, - ACTIONS(470), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(196), 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, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, - sym_attr_splat, - sym_full_splat, - STATE(319), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(194), 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, - [15607] = 8, - ACTIONS(490), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(488), 2, - anon_sym_STAR, - anon_sym_PERCENT, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - STATE(288), 2, - sym_attr_splat, - sym_full_splat, - STATE(286), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(196), 4, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LT, - ACTIONS(194), 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, - [15653] = 7, + [15695] = 7, ACTIONS(456), 1, anon_sym_LBRACK, ACTIONS(458), 1, @@ -24159,14 +24857,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(248), 2, + STATE(261), 2, sym_new_index, sym_legacy_index, ACTIONS(256), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(219), 3, + STATE(221), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -24188,7 +24886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [15697] = 8, + [15739] = 8, ACTIONS(470), 1, anon_sym_SLASH, ACTIONS(3), 2, @@ -24197,22 +24895,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(468), 2, anon_sym_STAR, anon_sym_PERCENT, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, + STATE(288), 2, sym_attr_splat, sym_full_splat, - STATE(319), 3, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + STATE(290), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(196), 4, + ACTIONS(168), 4, anon_sym_LBRACK, anon_sym_DOT, anon_sym_GT, anon_sym_LT, - ACTIONS(194), 13, + ACTIONS(166), 13, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24226,58 +24924,22 @@ 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(333), 2, - sym_new_index, - sym_legacy_index, - STATE(335), 2, - sym_attr_splat, - sym_full_splat, - STATE(319), 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, [15785] = 7, - ACTIONS(478), 1, + ACTIONS(472), 1, anon_sym_LBRACK, - ACTIONS(480), 1, + ACTIONS(474), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(287), 2, + STATE(335), 2, sym_new_index, sym_legacy_index, ACTIONS(264), 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, @@ -24298,21 +24960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15827] = 7, - ACTIONS(478), 1, + ACTIONS(472), 1, anon_sym_LBRACK, - ACTIONS(480), 1, + ACTIONS(474), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(287), 2, + STATE(335), 2, sym_new_index, sym_legacy_index, ACTIONS(256), 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, @@ -24333,76 +24995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [15869] = 7, - ACTIONS(520), 1, - anon_sym_LBRACK, - ACTIONS(523), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(268), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(239), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15911] = 7, - ACTIONS(526), 1, - anon_sym_LBRACK, - ACTIONS(529), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(287), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(268), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(240), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(266), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [15953] = 7, ACTIONS(502), 1, anon_sym_LBRACK, ACTIONS(504), 1, @@ -24410,14 +25002,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(333), 2, + STATE(289), 2, sym_new_index, sym_legacy_index, ACTIONS(260), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(245), 3, + STATE(242), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, @@ -24437,15 +25029,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [15995] = 7, - ACTIONS(478), 1, + [15911] = 7, + ACTIONS(520), 1, anon_sym_LBRACK, - ACTIONS(480), 1, + ACTIONS(523), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(287), 2, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(240), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(266), 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, + [15953] = 7, + ACTIONS(526), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(335), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(241), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(266), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [15995] = 7, + ACTIONS(502), 1, + anon_sym_LBRACK, + ACTIONS(504), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(240), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(262), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [16037] = 7, + ACTIONS(472), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(335), 2, sym_new_index, sym_legacy_index, ACTIONS(252), 3, @@ -24472,15 +25169,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16037] = 7, - ACTIONS(478), 1, + [16079] = 7, + ACTIONS(502), 1, anon_sym_LBRACK, - ACTIONS(480), 1, + ACTIONS(504), 1, anon_sym_DOT, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(287), 2, + STATE(289), 2, + sym_new_index, + sym_legacy_index, + ACTIONS(252), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + STATE(246), 3, + sym_index, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(250), 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, + [16121] = 7, + ACTIONS(472), 1, + anon_sym_LBRACK, + ACTIONS(474), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(335), 2, sym_new_index, sym_legacy_index, ACTIONS(260), 3, @@ -24507,76 +25239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [16079] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, - ACTIONS(504), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(256), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(239), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(254), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [16121] = 7, - ACTIONS(502), 1, - anon_sym_LBRACK, - ACTIONS(504), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(333), 2, - sym_new_index, - sym_legacy_index, - ACTIONS(264), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - STATE(239), 3, - sym_index, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(262), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, [16163] = 7, ACTIONS(502), 1, anon_sym_LBRACK, @@ -24585,18 +25247,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(333), 2, + STATE(289), 2, sym_new_index, sym_legacy_index, - ACTIONS(252), 3, + ACTIONS(256), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(244), 3, + STATE(240), 3, sym_index, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(250), 15, + ACTIONS(254), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -24648,13 +25310,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(438), 5, + ACTIONS(394), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(436), 17, + ACTIONS(392), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24676,13 +25338,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(318), 5, + ACTIONS(334), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(316), 17, + ACTIONS(332), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24734,13 +25396,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(326), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 17, + ACTIONS(324), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24762,13 +25424,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(370), 5, + ACTIONS(330), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(368), 17, + ACTIONS(328), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24787,90 +25449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, [16401] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(338), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(336), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16432] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(342), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(340), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16463] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16494] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -24898,17 +25476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16525] = 3, + [16432] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(398), 5, + ACTIONS(350), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(396), 17, + ACTIONS(348), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -24926,7 +25504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16556] = 3, + [16463] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -24954,7 +25532,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16587] = 3, + [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, @@ -24982,17 +25588,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16618] = 3, + [16556] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(382), 5, + ACTIONS(386), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(380), 17, + 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, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25014,13 +25676,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(402), 5, + ACTIONS(382), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(400), 17, + ACTIONS(380), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25066,38 +25728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16711] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16742] = 5, + [16711] = 5, ACTIONS(536), 1, anon_sym_LPAREN, - STATE(18), 1, + STATE(19), 1, sym__function_call_start, ACTIONS(3), 2, sym_comment, @@ -25124,147 +25758,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, + [16746] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(402), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(400), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, [16777] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16808] = 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, - [16839] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16870] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16901] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [16932] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25292,17 +25814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16963] = 3, + [16808] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(330), 5, + ACTIONS(318), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(328), 17, + ACTIONS(316), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25320,35 +25842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [16994] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17025] = 3, + [16839] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25376,7 +25870,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17056] = 3, + [16870] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16901] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [16932] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25404,17 +25954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17087] = 3, + [16963] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(366), 5, + ACTIONS(434), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(364), 17, + ACTIONS(432), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25432,35 +25982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17118] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(334), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 17, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [17149] = 3, + [16994] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25488,7 +26010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17180] = 3, + [17025] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25516,17 +26038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17211] = 3, + [17056] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(418), 5, + ACTIONS(414), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(416), 17, + ACTIONS(412), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25544,7 +26066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17242] = 3, + [17087] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -25572,17 +26094,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [17273] = 3, + [17118] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(326), 5, + ACTIONS(390), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(324), 17, + ACTIONS(388), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17149] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17180] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(370), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(368), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17211] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(362), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17242] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(342), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 17, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [17273] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 17, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_DOT_STAR, @@ -25604,14 +26266,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(406), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, - sym_template_interpolation_end, + ACTIONS(404), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -25627,448 +26289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [17333] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17362] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17391] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(326), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(324), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17420] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(410), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(408), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17449] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17478] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17507] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(406), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(404), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17536] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(418), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(416), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17565] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(430), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(428), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17594] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17623] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(350), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(348), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17652] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(314), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17681] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(330), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(328), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17710] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17739] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(334), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(332), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17768] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17797] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(322), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(320), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17826] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26094,7 +26314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [17855] = 3, + [17362] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26105,162 +26325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, ACTIONS(356), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17884] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17913] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(366), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17942] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(378), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(376), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [17971] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(386), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(384), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18000] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18029] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26276,293 +26340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18058] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(426), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(424), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18087] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18116] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(402), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(400), 15, - sym_template_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, - [18145] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(382), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18174] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(318), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18203] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18232] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(330), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(328), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18261] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(354), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(352), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18290] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(390), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(388), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18319] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(338), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(336), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18348] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(318), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(316), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18377] = 3, + [17391] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -26588,17 +26366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [18406] = 3, + [17420] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(342), 5, + ACTIONS(402), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(340), 15, + ACTIONS(400), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26614,18 +26392,902 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, + [17449] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(394), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(392), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17478] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(422), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(420), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17507] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(382), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 15, + sym_template_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, + [17536] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(418), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17565] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(398), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17594] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17623] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17652] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17681] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17710] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17739] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17768] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(354), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(352), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17797] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(426), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17826] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(422), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(420), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17855] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17884] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17913] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(406), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(404), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17942] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [17971] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(390), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(388), 15, + sym_template_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, + [18000] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18029] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(334), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(332), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18058] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(330), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18087] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18116] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18145] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(378), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(376), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18174] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(358), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(356), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18203] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(434), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18232] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(430), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18261] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(426), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18290] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(414), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(412), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18319] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(402), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(400), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18348] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(438), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(436), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18377] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(322), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(320), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18406] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(362), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(360), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, [18435] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(334), 5, + ACTIONS(390), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(332), 15, - sym_template_interpolation_end, + ACTIONS(388), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26670,14 +27332,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(346), 5, + ACTIONS(354), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(344), 15, - sym_template_directive_end, + ACTIONS(352), 15, + sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26696,13 +27358,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(338), 5, + ACTIONS(394), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(336), 15, + ACTIONS(392), 15, sym_template_interpolation_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -26722,14 +27384,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(350), 5, + ACTIONS(378), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(348), 15, - sym_template_interpolation_end, + ACTIONS(376), 15, + sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, anon_sym_QMARK, @@ -26745,474 +27407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, sym_strip_marker, [18580] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(354), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(352), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18609] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(374), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(372), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18638] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(382), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(380), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18667] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(358), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(356), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18696] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(402), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(400), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18725] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(362), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(360), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18754] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(422), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(420), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18783] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(438), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(436), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18812] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(426), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(424), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18841] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(394), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(392), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18870] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(366), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(364), 15, - sym_template_interpolation_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18899] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(406), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(404), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18928] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(434), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(432), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18957] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(418), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(416), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [18986] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(430), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(428), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [19015] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(314), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(312), 15, - sym_template_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, - [19044] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(414), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(412), 15, - sym_template_directive_end, - anon_sym_DOT_STAR, - anon_sym_LBRACK_STAR_RBRACK, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [19073] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(398), 5, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(396), 15, - sym_template_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, - [19102] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27238,17 +27432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19131] = 3, + [18609] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(322), 5, + ACTIONS(362), 5, anon_sym_LBRACK, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(320), 15, + ACTIONS(360), 15, sym_template_directive_end, anon_sym_DOT_STAR, anon_sym_LBRACK_STAR_RBRACK, @@ -27264,7 +27458,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [19160] = 3, + [18638] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(342), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(340), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18667] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(366), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(364), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18696] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18725] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(318), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18754] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(374), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(372), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18783] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(386), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(384), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18812] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(410), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(408), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18841] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(382), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(380), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18870] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(398), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(396), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18899] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(350), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(348), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18928] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(418), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(416), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18957] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(314), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(312), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [18986] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(346), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(344), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19015] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(334), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(332), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19044] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(330), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(328), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19073] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(326), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(324), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19102] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(338), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(336), 15, + sym_template_directive_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19131] = 3, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(318), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(316), 15, + sym_template_interpolation_end, + anon_sym_DOT_STAR, + anon_sym_LBRACK_STAR_RBRACK, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [19160] = 4, + ACTIONS(542), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, @@ -27275,7 +27939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(538), 11, + ACTIONS(538), 10, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27283,24 +27947,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_numeric_lit_token2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19186] = 4, - ACTIONS(546), 1, - anon_sym_QMARK, + [19188] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(544), 6, + ACTIONS(184), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(542), 10, + ACTIONS(182), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27308,6 +27969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_numeric_lit_token2, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, @@ -27315,14 +27977,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(166), 6, + ACTIONS(546), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(164), 11, + ACTIONS(544), 11, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27338,20 +28000,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(548), 6, + ACTIONS(550), 7, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, + anon_sym_for, anon_sym_LT_LT, - ACTIONS(52), 10, + ACTIONS(548), 9, 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, @@ -27360,20 +28022,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(552), 7, + ACTIONS(552), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, - anon_sym_for, anon_sym_LT_LT, - ACTIONS(550), 9, + 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, @@ -27400,49 +28062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19315] = 13, - ACTIONS(558), 1, - sym_quoted_template_end, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, - sym_template_directive_start, - STATE(357), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(404), 1, - aux_sym_template_literal_repeat1, - STATE(422), 1, - sym_template_literal, - STATE(442), 1, - sym_template_if_branch, - STATE(625), 1, - sym__template, + [19315] = 3, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, - sym_template_for, - sym_template_if, - STATE(373), 3, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19359] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(552), 6, + ACTIONS(550), 6, sym_identifier, aux_sym_numeric_lit_token1, anon_sym_true, anon_sym_false, sym_null_lit, anon_sym_LT_LT, - ACTIONS(550), 9, + ACTIONS(548), 9, sym_quoted_template_start, anon_sym_LBRACE, anon_sym_RBRACE, @@ -27452,1773 +28083,2330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_BANG, anon_sym_LT_LT_DASH, - [19383] = 13, - ACTIONS(560), 1, + [19339] = 11, + ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(562), 1, + ACTIONS(560), 1, sym_template_interpolation_start, - ACTIONS(564), 1, + ACTIONS(562), 1, sym_template_directive_start, - ACTIONS(566), 1, - sym_quoted_template_end, - STATE(357), 1, - sym_template_for_start, - STATE(370), 1, + STATE(359), 1, sym_template_if_intro, - STATE(404), 1, + STATE(376), 1, + sym_template_else_intro, + STATE(389), 1, + sym_template_for_start, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(442), 1, - sym_template_if_branch, - STATE(448), 1, - sym_template_literal, - STATE(630), 1, - sym__template, + STATE(488), 1, + sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(373), 3, + STATE(360), 4, + aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19427] = 12, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, + [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(570), 1, + ACTIONS(560), 1, sym_template_interpolation_start, ACTIONS(572), 1, - sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(399), 1, - aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - STATE(639), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(454), 2, - sym_template_for, - sym_template_if, - STATE(371), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19469] = 13, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, sym_template_directive_start, - ACTIONS(574), 1, - sym_quoted_template_end, - STATE(357), 1, - sym_template_for_start, - STATE(370), 1, + STATE(359), 1, sym_template_if_intro, - STATE(404), 1, + STATE(381), 1, + sym_template_else_intro, + STATE(389), 1, + sym_template_for_start, + STATE(445), 1, aux_sym_template_literal_repeat1, - STATE(413), 1, - sym_template_literal, - STATE(442), 1, - sym_template_if_branch, - STATE(638), 1, - sym__template, + STATE(490), 1, + sym_template_if_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, + STATE(547), 2, sym_template_for, sym_template_if, - STATE(373), 3, + STATE(401), 4, + aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19513] = 12, + [19463] = 11, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(572), 1, + sym_template_directive_start, + STATE(359), 1, + sym_template_if_intro, + STATE(382), 1, + sym_template_else_intro, + STATE(389), 1, + sym_template_for_start, + STATE(445), 1, + aux_sym_template_literal_repeat1, + STATE(477), 1, + sym_template_if_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(547), 2, + sym_template_for, + sym_template_if, + STATE(356), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [19502] = 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(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_directive_start, + STATE(359), 1, + sym_template_if_intro, + STATE(373), 1, + sym_template_else_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(401), 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, ACTIONS(580), 1, sym_template_directive_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(420), 1, - sym_template_for_end, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, - aux_sym_template_literal_repeat1, - STATE(523), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(513), 2, - sym_template_for, - sym_template_if, - STATE(375), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19555] = 12, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, - sym__template_literal_chunk, - ACTIONS(570), 1, - sym_template_interpolation_start, ACTIONS(582), 1, sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, + STATE(357), 1, sym_template_if_intro, - STATE(399), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - STATE(658), 1, - sym__template, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(454), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(371), 4, + STATE(365), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19597] = 12, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, + [19655] = 10, + ACTIONS(576), 1, sym__template_literal_chunk, - ACTIONS(570), 1, + ACTIONS(578), 1, sym_template_interpolation_start, + ACTIONS(580), 1, + sym_template_directive_start, ACTIONS(584), 1, sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, + STATE(357), 1, sym_template_if_intro, - STATE(399), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - STATE(626), 1, - sym__template, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(454), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(371), 4, + STATE(365), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19639] = 12, + [19691] = 10, ACTIONS(576), 1, sym__template_literal_chunk, ACTIONS(578), 1, sym_template_interpolation_start, - ACTIONS(586), 1, + ACTIONS(580), 1, sym_template_directive_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, + ACTIONS(586), 1, + sym_heredoc_identifier, + STATE(357), 1, sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(433), 1, - sym_template_for_end, - STATE(455), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(594), 1, - sym__template, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(513), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(375), 4, + STATE(365), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19681] = 12, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, + [19727] = 10, + ACTIONS(576), 1, sym__template_literal_chunk, - ACTIONS(570), 1, + ACTIONS(578), 1, sym_template_interpolation_start, + ACTIONS(580), 1, + sym_template_directive_start, ACTIONS(588), 1, sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, + STATE(357), 1, sym_template_if_intro, - STATE(399), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - STATE(621), 1, - sym__template, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(454), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(371), 4, + STATE(363), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19723] = 12, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, + [19763] = 10, ACTIONS(590), 1, - sym_template_directive_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, - aux_sym_template_literal_repeat1, - STATE(508), 1, - sym_template_for_end, - STATE(559), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(513), 2, - sym_template_for, - sym_template_if, - STATE(375), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19765] = 12, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, sym__template_literal_chunk, - ACTIONS(570), 1, + ACTIONS(593), 1, sym_template_interpolation_start, - ACTIONS(592), 1, - sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(399), 1, - aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - STATE(662), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(454), 2, - sym_template_for, - sym_template_if, - STATE(371), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19807] = 13, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(594), 1, - sym_quoted_template_end, - STATE(357), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(404), 1, - aux_sym_template_literal_repeat1, - STATE(435), 1, - sym_template_literal, - STATE(442), 1, - sym_template_if_branch, - STATE(617), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(432), 2, - sym_template_for, - sym_template_if, - STATE(373), 3, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [19851] = 13, - ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, - sym_template_interpolation_start, - ACTIONS(564), 1, - sym_template_directive_start, ACTIONS(596), 1, - sym_quoted_template_end, + sym_template_directive_start, + ACTIONS(599), 1, + sym_heredoc_identifier, STATE(357), 1, - sym_template_for_start, - STATE(370), 1, sym_template_if_intro, - STATE(404), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(427), 1, - sym_template_literal, - STATE(442), 1, - sym_template_if_branch, - STATE(663), 1, - sym__template, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(373), 3, + STATE(365), 4, + aux_sym__template, + sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19895] = 11, - ACTIONS(598), 1, + [19799] = 10, + ACTIONS(580), 1, + sym_template_directive_start, + ACTIONS(601), 1, sym_quoted_template_end, - ACTIONS(600), 1, - sym__template_literal_chunk, ACTIONS(603), 1, + sym__template_literal_chunk, + ACTIONS(605), 1, sym_template_interpolation_start, - ACTIONS(606), 1, + 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_for_start, - STATE(370), 1, sym_template_if_intro, - STATE(404), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, - STATE(442), 1, - sym_template_if_branch, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(366), 4, + STATE(388), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [19934] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(611), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(609), 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, - [19957] = 3, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(615), 6, - sym_identifier, - aux_sym_numeric_lit_token1, - anon_sym_true, - anon_sym_false, - sym_null_lit, - anon_sym_LT_LT, - ACTIONS(613), 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, - [19980] = 11, - ACTIONS(598), 1, - sym_heredoc_identifier, - ACTIONS(606), 1, - sym_template_directive_start, - ACTIONS(617), 1, + [19871] = 10, + ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(620), 1, - sym_template_interpolation_start, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(399), 1, - aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(454), 2, - sym_template_for, - sym_template_if, - STATE(369), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [20019] = 11, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, - aux_sym_template_literal_repeat1, - STATE(669), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(513), 2, - sym_template_for, - sym_template_if, - STATE(375), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [20058] = 11, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(568), 1, - sym__template_literal_chunk, - ACTIONS(570), 1, - sym_template_interpolation_start, - ACTIONS(623), 1, - sym_heredoc_identifier, - STATE(360), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(399), 1, - aux_sym_template_literal_repeat1, - STATE(419), 1, - sym_template_if_branch, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(454), 2, - sym_template_for, - sym_template_if, - STATE(369), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [20097] = 11, - ACTIONS(564), 1, - sym_template_directive_start, - ACTIONS(576), 1, - sym__template_literal_chunk, - ACTIONS(578), 1, - sym_template_interpolation_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, - sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, - aux_sym_template_literal_repeat1, - STATE(659), 1, - sym__template, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(513), 2, - sym_template_for, - sym_template_if, - STATE(375), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym__template_repeat1, - [20136] = 11, ACTIONS(560), 1, - sym__template_literal_chunk, - ACTIONS(562), 1, sym_template_interpolation_start, - ACTIONS(564), 1, + 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(357), 1, - sym_template_for_start, - STATE(370), 1, + STATE(353), 1, sym_template_if_intro, - STATE(404), 1, + STATE(399), 1, + sym_template_for_start, + STATE(423), 1, aux_sym_template_literal_repeat1, - STATE(442), 1, - sym_template_if_branch, + STATE(487), 1, + sym_template_literal, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(432), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(366), 4, - sym_template_literal, + STATE(375), 3, + aux_sym__template, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [20175] = 10, - ACTIONS(606), 1, - sym_template_directive_start, - ACTIONS(625), 1, + [20235] = 10, + ACTIONS(558), 1, sym__template_literal_chunk, - ACTIONS(628), 1, + ACTIONS(560), 1, sym_template_interpolation_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, + ACTIONS(625), 1, + sym_template_directive_start, + STATE(359), 1, sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, + 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(513), 2, + STATE(452), 2, sym_template_for, sym_template_if, - STATE(374), 4, + STATE(383), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [20211] = 10, + [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(623), 1, + ACTIONS(580), 1, sym_template_directive_start, - STATE(362), 1, - sym_template_for_start, - STATE(370), 1, + ACTIONS(635), 1, + sym_heredoc_identifier, + STATE(357), 1, sym_template_if_intro, - STATE(421), 1, - sym_template_if_branch, - STATE(455), 1, + STATE(393), 1, + sym_template_for_start, + STATE(417), 1, aux_sym_template_literal_repeat1, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(513), 2, + STATE(446), 2, sym_template_for, sym_template_if, - STATE(374), 4, + STATE(362), 4, + aux_sym__template, sym_template_literal, sym_template_interpolation, sym_template_directive, - aux_sym__template_repeat1, - [20247] = 3, - ACTIONS(166), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(164), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - [20267] = 3, - ACTIONS(540), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(538), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - [20287] = 7, - ACTIONS(631), 1, - anon_sym_EQ, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(635), 1, - sym_identifier, + [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, + sym_template_for, + sym_template_if, + STATE(368), 4, + aux_sym__template, + 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, + 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, + 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, + [20885] = 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, + sym_template_for, + sym_template_if, + STATE(401), 4, + aux_sym__template, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + [20921] = 11, + ACTIONS(580), 1, + sym_template_directive_start, + ACTIONS(603), 1, + sym__template_literal_chunk, + ACTIONS(605), 1, + sym_template_interpolation_start, + ACTIONS(651), 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(479), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(452), 2, + sym_template_for, + sym_template_if, + STATE(366), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [20959] = 10, + ACTIONS(558), 1, + sym__template_literal_chunk, + ACTIONS(560), 1, + sym_template_interpolation_start, + ACTIONS(647), 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(491), 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, + [20995] = 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(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, + sym_template_interpolation_start, + ACTIONS(653), 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(455), 1, + sym_template_literal, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + STATE(452), 2, + sym_template_for, + sym_template_if, + STATE(395), 3, + aux_sym__template, + sym_template_interpolation, + sym_template_directive, + [21069] = 9, + ACTIONS(596), 1, + sym_template_directive_start, + ACTIONS(655), 1, + sym__template_literal_chunk, + ACTIONS(658), 1, + sym_template_interpolation_start, + STATE(359), 1, + sym_template_if_intro, + STATE(389), 1, + sym_template_for_start, + 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, + [21102] = 3, + ACTIONS(546), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(544), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + [21122] = 3, + ACTIONS(184), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(182), 10, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ_GT, + sym_ellipsis, + anon_sym_QMARK, + [21142] = 6, + 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(663), 1, + anon_sym_EQ, + ACTIONS(665), 1, + anon_sym_LBRACE, + ACTIONS(667), 1, + sym_identifier, + ACTIONS(669), 1, sym_quoted_template_start, - STATE(379), 1, + STATE(406), 1, sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(384), 2, + STATE(407), 2, sym_string_lit, aux_sym_block_repeat1, - [20311] = 6, + [21188] = 6, ACTIONS(9), 1, sym_identifier, - ACTIONS(639), 1, + ACTIONS(661), 1, anon_sym_RBRACE, - STATE(478), 1, + STATE(502), 1, sym_block_end, - STATE(593), 1, + STATE(627), 1, sym_body, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(386), 3, + STATE(411), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [20333] = 6, - ACTIONS(9), 1, + [21210] = 6, + ACTIONS(665), 1, + anon_sym_LBRACE, + ACTIONS(669), 1, + sym_quoted_template_start, + ACTIONS(671), 1, sym_identifier, - ACTIONS(639), 1, - anon_sym_RBRACE, - STATE(504), 1, - sym_block_end, - STATE(520), 1, - sym_body, + STATE(404), 1, + sym_block_start, ACTIONS(3), 2, sym_comment, sym__whitespace, - STATE(386), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [20355] = 7, - ACTIONS(45), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(643), 1, + STATE(418), 2, + sym_string_lit, + aux_sym_block_repeat1, + [21231] = 5, + ACTIONS(675), 1, + anon_sym_COMMA, + STATE(70), 1, + sym__comma, + STATE(408), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(673), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, sym_ellipsis, - ACTIONS(645), 1, + [21250] = 7, + ACTIONS(39), 1, + anon_sym_RBRACE, + ACTIONS(678), 1, + anon_sym_if, + ACTIONS(680), 1, + sym_ellipsis, + ACTIONS(682), 1, anon_sym_QMARK, - STATE(213), 1, + STATE(278), 1, + sym_object_end, + STATE(607), 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, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(686), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + STATE(416), 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, - [20378] = 7, + [21336] = 7, + ACTIONS(45), 1, + anon_sym_RBRACE, + ACTIONS(678), 1, + anon_sym_if, + ACTIONS(682), 1, + anon_sym_QMARK, + ACTIONS(690), 1, + sym_ellipsis, + STATE(283), 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, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(702), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + STATE(416), 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, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + 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, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21564] = 6, + ACTIONS(104), 1, + anon_sym_RBRACK, + ACTIONS(678), 1, + anon_sym_if, + ACTIONS(682), 1, + anon_sym_QMARK, + STATE(166), 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, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21604] = 6, + ACTIONS(725), 1, + anon_sym_for, + ACTIONS(727), 1, + anon_sym_if, + ACTIONS(731), 1, + anon_sym_else, + ACTIONS(735), 1, + sym_strip_marker, + ACTIONS(737), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21624] = 6, + ACTIONS(100), 1, + anon_sym_RBRACK, + ACTIONS(678), 1, + anon_sym_if, + ACTIONS(682), 1, + anon_sym_QMARK, + STATE(208), 1, + sym_tuple_end, + STATE(604), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21644] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + 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, + 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, + anon_sym_COMMA, + ACTIONS(750), 1, + sym_ellipsis, + STATE(31), 1, + sym__comma, + STATE(408), 1, + aux_sym__tuple_elems_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21726] = 4, + ACTIONS(752), 1, + sym__template_literal_chunk, + STATE(434), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(743), 3, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21742] = 5, + ACTIONS(725), 1, + anon_sym_for, + ACTIONS(727), 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, + anon_sym_else, + ACTIONS(769), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21804] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(771), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21815] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(773), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21826] = 3, + ACTIONS(775), 1, + sym_quoted_template_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(777), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21839] = 5, + ACTIONS(41), 1, + anon_sym_RBRACE, + ACTIONS(678), 1, + anon_sym_if, + STATE(203), 1, + sym_object_end, + STATE(610), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21856] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(779), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21867] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(781), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21878] = 4, + ACTIONS(783), 1, + sym__template_literal_chunk, + STATE(469), 1, + aux_sym_template_literal_repeat1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(709), 2, + sym_template_interpolation_start, + sym_template_directive_start, + [21893] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 4, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + sym_heredoc_identifier, + [21904] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(787), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21915] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(789), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21926] = 5, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(767), 1, + anon_sym_else, + ACTIONS(791), 1, + anon_sym_endif, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21943] = 5, ACTIONS(43), 1, anon_sym_RBRACE, - ACTIONS(641), 1, + ACTIONS(678), 1, anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - ACTIONS(647), 1, - sym_ellipsis, - STATE(282), 1, + STATE(327), 1, + sym_object_end, + STATE(571), 1, + sym_for_cond, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [21960] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(793), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21971] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(785), 4, + sym_quoted_template_end, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [21982] = 5, + ACTIONS(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, + anon_sym_RBRACE, + ACTIONS(678), 1, + anon_sym_if, + STATE(320), 1, sym_object_end, STATE(573), 1, sym_for_cond, ACTIONS(3), 2, sym_comment, sym__whitespace, - [20401] = 7, - ACTIONS(39), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - ACTIONS(649), 1, - sym_ellipsis, - STATE(256), 1, - sym_object_end, - STATE(531), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20424] = 6, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(637), 1, - sym_quoted_template_start, - ACTIONS(651), 1, - sym_identifier, - STATE(380), 1, - sym_block_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(398), 2, - sym_string_lit, - aux_sym_block_repeat1, - [20445] = 7, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - sym_ellipsis, - STATE(323), 1, - sym_object_end, - STATE(540), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20468] = 4, - ACTIONS(9), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(655), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(390), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [20485] = 7, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - ACTIONS(657), 1, - sym_ellipsis, - STATE(151), 1, - sym_object_end, - STATE(570), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20508] = 7, - ACTIONS(659), 1, - anon_sym_RPAREN, - ACTIONS(661), 1, - anon_sym_COMMA, - ACTIONS(663), 1, - sym_ellipsis, - ACTIONS(665), 1, - anon_sym_QMARK, - STATE(30), 1, - sym__comma, - STATE(403), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20531] = 5, - ACTIONS(669), 1, - anon_sym_COMMA, - STATE(77), 1, - sym__comma, - STATE(389), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(667), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - sym_ellipsis, - [20550] = 4, - ACTIONS(674), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(672), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - STATE(390), 3, - sym_attribute, - sym_block, - aux_sym_body_repeat1, - [20567] = 6, - ACTIONS(94), 1, - anon_sym_RBRACK, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - STATE(160), 1, - sym_tuple_end, - STATE(581), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20587] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(164), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [20599] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(538), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [20611] = 6, - ACTIONS(102), 1, - anon_sym_RBRACK, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - STATE(260), 1, - sym_tuple_end, - STATE(532), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20631] = 4, - ACTIONS(677), 1, - sym__template_literal_chunk, - STATE(395), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(680), 3, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20647] = 6, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(682), 1, - anon_sym_COMMA, - ACTIONS(684), 1, - anon_sym_RBRACK, - STATE(39), 1, - sym__comma, - STATE(453), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20667] = 6, - ACTIONS(47), 1, - anon_sym_RBRACK, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - STATE(328), 1, - sym_tuple_end, - STATE(533), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20687] = 5, - ACTIONS(686), 1, - anon_sym_LBRACE, - ACTIONS(688), 1, - sym_identifier, - ACTIONS(691), 1, - sym_quoted_template_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - STATE(398), 2, - sym_string_lit, - aux_sym_block_repeat1, - [20705] = 4, - ACTIONS(694), 1, - sym__template_literal_chunk, - STATE(395), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(696), 3, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20721] = 6, - ACTIONS(100), 1, - anon_sym_RBRACK, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - STATE(311), 1, - sym_tuple_end, - STATE(571), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20741] = 6, - ACTIONS(104), 1, - anon_sym_RBRACK, - ACTIONS(641), 1, - anon_sym_if, - ACTIONS(645), 1, - anon_sym_QMARK, - STATE(207), 1, - sym_tuple_end, - STATE(582), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20761] = 4, - ACTIONS(698), 1, - sym__template_literal_chunk, - STATE(402), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(680), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [20777] = 6, - ACTIONS(162), 1, - anon_sym_RPAREN, - ACTIONS(701), 1, - anon_sym_COMMA, - ACTIONS(703), 1, - sym_ellipsis, - STATE(32), 1, - sym__comma, - STATE(389), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20797] = 4, - ACTIONS(705), 1, - sym__template_literal_chunk, - STATE(402), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(696), 3, - sym_quoted_template_end, - sym_template_interpolation_start, - sym_template_directive_start, - [20813] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(667), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_ellipsis, - [20827] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(707), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [20838] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(709), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20849] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(711), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20860] = 5, - ACTIONS(41), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - STATE(150), 1, - sym_object_end, - STATE(558), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20877] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(713), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20888] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(715), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20899] = 5, - ACTIONS(717), 1, - sym_quoted_template_end, - ACTIONS(719), 1, - sym__template_literal_chunk, - STATE(462), 1, - aux_sym_template_literal_repeat1, - STATE(635), 1, - sym_template_literal, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20916] = 3, - ACTIONS(721), 1, + [22016] = 3, + ACTIONS(799), 1, sym_quoted_template_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(723), 3, + ACTIONS(777), 3, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [20929] = 2, + [22029] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(725), 4, + ACTIONS(801), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - sym_heredoc_identifier, - [20940] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(727), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20951] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [20962] = 5, - ACTIONS(731), 1, + [22040] = 5, + ACTIONS(763), 1, anon_sym_for, - ACTIONS(733), 1, - anon_sym_if, - ACTIONS(735), 1, - sym_strip_marker, - ACTIONS(737), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [20979] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(725), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [20990] = 5, - ACTIONS(739), 1, - sym_template_directive_start, - STATE(372), 1, - sym_template_else_intro, - STATE(407), 1, - sym_template_if_end, - STATE(595), 1, - sym_template_else_branch, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21007] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(741), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21018] = 5, - ACTIONS(743), 1, - sym_template_directive_start, - STATE(372), 1, - sym_template_else_intro, - STATE(507), 1, - sym_template_if_end, - STATE(560), 1, - sym_template_else_branch, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21035] = 3, - ACTIONS(745), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(723), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21048] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(747), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21059] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(709), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21070] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21081] = 5, - ACTIONS(731), 1, - anon_sym_for, - ACTIONS(733), 1, - anon_sym_if, - ACTIONS(751), 1, - sym_strip_marker, - ACTIONS(753), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21098] = 3, - ACTIONS(755), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(723), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21111] = 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, - [21122] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(727), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21133] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(759), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21144] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(761), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21155] = 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, - [21166] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(741), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21177] = 5, - ACTIONS(43), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - STATE(322), 1, - sym_object_end, - STATE(574), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21194] = 3, ACTIONS(765), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(723), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21207] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(707), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21218] = 4, + anon_sym_if, ACTIONS(767), 1, - sym__template_literal_chunk, - STATE(437), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(680), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [21233] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(715), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21244] = 5, - ACTIONS(39), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - STATE(254), 1, - sym_object_end, - STATE(530), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21261] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(713), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21272] = 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, - [21283] = 5, - ACTIONS(770), 1, - sym_template_directive_start, - STATE(372), 1, - sym_template_else_intro, - STATE(424), 1, - sym_template_if_end, - STATE(524), 1, - sym_template_else_branch, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21300] = 5, - ACTIONS(731), 1, - anon_sym_for, - ACTIONS(733), 1, - anon_sym_if, - ACTIONS(772), 1, - sym_strip_marker, - ACTIONS(774), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21317] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21328] = 5, - ACTIONS(45), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - STATE(202), 1, - sym_object_end, - STATE(557), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21345] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(776), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [21358] = 5, - ACTIONS(13), 1, - anon_sym_RBRACE, - ACTIONS(641), 1, - anon_sym_if, - STATE(320), 1, - sym_object_end, - STATE(542), 1, - sym_for_cond, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21375] = 3, - ACTIONS(778), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(723), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21388] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(761), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21399] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(759), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21410] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(711), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21421] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 4, - sym_quoted_template_end, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21432] = 5, - ACTIONS(198), 1, - anon_sym_RBRACK, - ACTIONS(780), 1, - anon_sym_COMMA, - STATE(41), 1, - sym__comma, - STATE(389), 1, - aux_sym__tuple_elems_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21449] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(763), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21460] = 4, - ACTIONS(782), 1, - sym__template_literal_chunk, - STATE(437), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(696), 2, - sym_template_interpolation_start, - sym_template_directive_start, - [21475] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(747), 4, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - sym_heredoc_identifier, - [21486] = 4, - ACTIONS(136), 1, - sym_strip_marker, - ACTIONS(138), 1, - sym_template_interpolation_end, - ACTIONS(784), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21500] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(786), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [21510] = 4, - ACTIONS(784), 1, - anon_sym_QMARK, - ACTIONS(788), 1, - sym_strip_marker, - ACTIONS(790), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21524] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(792), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21534] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(316), 3, - sym_quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [21544] = 4, - ACTIONS(696), 1, - sym_quoted_template_end, - ACTIONS(794), 1, - sym__template_literal_chunk, - STATE(501), 1, - aux_sym_template_literal_repeat1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21558] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(796), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21568] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(798), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21578] = 4, - ACTIONS(800), 1, - sym_strip_marker, - ACTIONS(802), 1, anon_sym_else, - ACTIONS(804), 1, + ACTIONS(803), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21592] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(808), 1, - sym_strip_marker, - ACTIONS(810), 1, - sym_template_directive_end, + [22057] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21606] = 4, - ACTIONS(784), 1, - anon_sym_QMARK, - ACTIONS(812), 1, - sym_strip_marker, - ACTIONS(814), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21620] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(816), 3, + ACTIONS(805), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21630] = 2, + [22068] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(538), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [21640] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(818), 1, - sym_strip_marker, - ACTIONS(820), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21654] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(822), 3, + ACTIONS(789), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21664] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, + sym_heredoc_identifier, + [22079] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(824), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - [21676] = 2, + 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(826), 3, - ts_builtin_sym_end, + 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, - sym_identifier, - [21686] = 4, - ACTIONS(828), 1, - anon_sym_for, - ACTIONS(830), 1, + ACTIONS(678), 1, anon_sym_if, - ACTIONS(832), 1, + 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, + anon_sym_for, + ACTIONS(727), 1, + anon_sym_if, + ACTIONS(809), 1, + sym_strip_marker, + ACTIONS(811), 1, anon_sym_endfor, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21700] = 2, + [22146] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(715), 3, + ACTIONS(787), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21710] = 2, + sym_heredoc_identifier, + [22157] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(713), 3, + ACTIONS(793), 4, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21720] = 3, - ACTIONS(665), 1, + 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, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(834), 2, - anon_sym_EQ, - anon_sym_COLON, - [21732] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(836), 3, + ACTIONS(832), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [21742] = 2, + [22355] = 5, + ACTIONS(725), 1, + anon_sym_for, + ACTIONS(727), 1, + anon_sym_if, + ACTIONS(834), 1, + sym_strip_marker, + ACTIONS(836), 1, + anon_sym_endfor, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(711), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21752] = 2, + [22372] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(761), 3, + ACTIONS(818), 4, + sym_quoted_template_end, sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21762] = 2, + [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, + anon_sym_for, + ACTIONS(727), 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, + 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, + 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, @@ -29226,79 +30414,69 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21772] = 2, + [22506] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(538), 3, - sym_template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - [21782] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(759), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21792] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(838), 1, - sym_strip_marker, - ACTIONS(840), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21806] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(747), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21816] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(749), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21826] = 4, - ACTIONS(828), 1, + ACTIONS(844), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22516] = 4, + ACTIONS(763), 1, anon_sym_for, - ACTIONS(830), 1, + ACTIONS(765), 1, anon_sym_if, - ACTIONS(842), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [21840] = 4, - ACTIONS(802), 1, - anon_sym_else, - ACTIONS(844), 1, - sym_strip_marker, - ACTIONS(846), 1, + ACTIONS(791), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21854] = 4, - ACTIONS(828), 1, + [22530] = 4, + ACTIONS(763), 1, anon_sym_for, - ACTIONS(830), 1, + ACTIONS(765), 1, anon_sym_if, - ACTIONS(848), 1, + ACTIONS(846), 1, anon_sym_endfor, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21868] = 2, + [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, @@ -29306,824 +30484,868 @@ static const uint16_t ts_small_parse_table[] = { sym__template_literal_chunk, sym_template_interpolation_start, sym_template_directive_start, - [21878] = 2, + [22598] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(725), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21888] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(727), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21898] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(729), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21908] = 4, - ACTIONS(784), 1, + ACTIONS(852), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22608] = 4, + ACTIONS(848), 1, anon_sym_QMARK, - ACTIONS(852), 1, - sym_strip_marker, ACTIONS(854), 1, + sym_strip_marker, + ACTIONS(856), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21922] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(856), 1, - sym_strip_marker, - ACTIONS(858), 1, - sym_template_directive_end, + [22622] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21936] = 2, + 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(164), 3, - sym_template_directive_end, - anon_sym_QMARK, - sym_strip_marker, - [21946] = 2, + 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, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [21956] = 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [22652] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(348), 3, - sym_quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [21966] = 4, - ACTIONS(802), 1, - anon_sym_else, - ACTIONS(862), 1, - sym_strip_marker, - ACTIONS(864), 1, + 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, - [21980] = 4, - ACTIONS(731), 1, - anon_sym_for, - ACTIONS(733), 1, - anon_sym_if, - ACTIONS(866), 1, - sym_strip_marker, + [22676] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [21994] = 4, - ACTIONS(680), 1, - sym_quoted_template_end, - ACTIONS(868), 1, + ACTIONS(820), 3, sym__template_literal_chunk, - STATE(501), 1, + 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, - [22008] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(871), 1, + [22730] = 4, + ACTIONS(144), 1, sym_strip_marker, - ACTIONS(873), 1, + 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, - [22022] = 2, + [22758] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - ACTIONS(875), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22032] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(877), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [22042] = 4, - ACTIONS(806), 1, - anon_sym_QMARK, - ACTIONS(879), 1, - sym_strip_marker, - ACTIONS(881), 1, + ACTIONS(544), 3, sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22056] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(883), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22066] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(709), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22076] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(741), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22086] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(707), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22096] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(164), 3, - sym_template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - [22106] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(885), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22116] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(887), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22126] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(763), 3, - sym__template_literal_chunk, - sym_template_interpolation_start, - sym_template_directive_start, - [22136] = 4, - ACTIONS(154), 1, + [22768] = 4, + ACTIONS(725), 1, + anon_sym_for, + ACTIONS(727), 1, + anon_sym_if, + ACTIONS(874), 1, sym_strip_marker, - ACTIONS(156), 1, - sym_template_interpolation_end, - ACTIONS(784), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22150] = 4, + [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(784), 1, + ACTIONS(848), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22164] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(889), 1, - anon_sym_COLON, + [22826] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22175] = 3, - ACTIONS(891), 1, + ACTIONS(396), 3, + sym_quoted_template_start, + anon_sym_LBRACE, sym_identifier, - ACTIONS(893), 1, - aux_sym_legacy_index_token1, + [22836] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22186] = 3, - ACTIONS(895), 1, - anon_sym_RPAREN, - STATE(332), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22197] = 3, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(338), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22208] = 3, - ACTIONS(639), 1, - anon_sym_RBRACE, - STATE(458), 1, - sym_block_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22219] = 3, - ACTIONS(897), 1, + 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(899), 1, + ACTIONS(880), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22230] = 3, - ACTIONS(828), 1, + [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(830), 1, + ACTIONS(765), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22241] = 3, - ACTIONS(901), 1, - sym_template_directive_start, - STATE(429), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22252] = 3, - ACTIONS(903), 1, - sym_template_directive_start, - STATE(418), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22263] = 3, - ACTIONS(100), 1, - anon_sym_RBRACK, - STATE(307), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22274] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(340), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22285] = 3, - ACTIONS(905), 1, - anon_sym_RPAREN, - STATE(208), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22296] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(907), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22307] = 3, - ACTIONS(104), 1, - anon_sym_RBRACK, - STATE(206), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22318] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(253), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22329] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(254), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22340] = 3, - ACTIONS(102), 1, - anon_sym_RBRACK, - STATE(258), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22351] = 3, - ACTIONS(47), 1, - anon_sym_RBRACK, - STATE(326), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22362] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(909), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22373] = 3, - ACTIONS(911), 1, - anon_sym_COMMA, - ACTIONS(913), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22384] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22395] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(917), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22406] = 2, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - ACTIONS(919), 2, - anon_sym_RBRACE, - sym_identifier, - [22415] = 3, - ACTIONS(921), 1, - anon_sym_RPAREN, - STATE(262), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22426] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(320), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22437] = 3, - ACTIONS(102), 1, - anon_sym_RBRACK, - STATE(272), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22448] = 3, - ACTIONS(13), 1, - anon_sym_RBRACE, - STATE(317), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22459] = 3, - ACTIONS(923), 1, - anon_sym_COMMA, - ACTIONS(925), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22470] = 3, - ACTIONS(927), 1, - anon_sym_RPAREN, - STATE(309), 1, - sym__function_call_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22481] = 3, - ACTIONS(929), 1, - anon_sym_COMMA, - ACTIONS(931), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22492] = 3, - ACTIONS(737), 1, + ACTIONS(887), 1, anon_sym_endfor, - ACTIONS(933), 1, - sym_strip_marker, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22503] = 3, - ACTIONS(935), 1, + [22920] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(336), 3, + sym_quoted_template_start, + anon_sym_LBRACE, sym_identifier, - ACTIONS(937), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22514] = 3, - ACTIONS(665), 1, + [22930] = 4, + ACTIONS(868), 1, anon_sym_QMARK, - ACTIONS(939), 1, - anon_sym_EQ_GT, + ACTIONS(889), 1, + sym_strip_marker, + ACTIONS(891), 1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22525] = 3, - ACTIONS(941), 1, - anon_sym_else, - ACTIONS(943), 1, + [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, + ACTIONS(781), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [22990] = 4, + ACTIONS(868), 1, + anon_sym_QMARK, + ACTIONS(901), 1, + sym_strip_marker, + ACTIONS(903), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23004] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(803), 1, anon_sym_endif, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22536] = 3, - ACTIONS(945), 1, + [23018] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(905), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23028] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(822), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23038] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(789), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23048] = 4, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(907), 1, + anon_sym_endfor, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23062] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(807), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23072] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(909), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23082] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(911), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23092] = 4, + ACTIONS(848), 1, + anon_sym_QMARK, + ACTIONS(913), 1, sym_strip_marker, - ACTIONS(947), 1, + ACTIONS(915), 1, + sym_template_interpolation_end, + 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, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22547] = 3, - ACTIONS(39), 1, - anon_sym_RBRACE, - STATE(277), 1, - sym_object_end, + [23120] = 2, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22558] = 3, - ACTIONS(665), 1, + ACTIONS(785), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23130] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(182), 3, + sym_template_interpolation_end, anon_sym_QMARK, - ACTIONS(949), 1, + 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(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(921), 3, + ts_builtin_sym_end, + 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, + anon_sym_QMARK, + ACTIONS(925), 1, + sym_strip_marker, + ACTIONS(927), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23184] = 2, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + ACTIONS(929), 3, + sym__template_literal_chunk, + sym_template_interpolation_start, + sym_template_directive_start, + [23194] = 3, + ACTIONS(931), 1, + anon_sym_RPAREN, + STATE(209), 1, + sym__function_call_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23205] = 3, + ACTIONS(933), 1, + sym_strip_marker, + ACTIONS(935), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23216] = 3, + 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, - [22569] = 3, - ACTIONS(665), 1, + [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, - [22580] = 3, - ACTIONS(953), 1, - sym_identifier, - ACTIONS(955), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22591] = 3, - ACTIONS(957), 1, - sym_strip_marker, - ACTIONS(959), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22602] = 3, - ACTIONS(864), 1, - anon_sym_endif, - ACTIONS(961), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22613] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(185), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22624] = 3, + [23282] = 3, ACTIONS(41), 1, anon_sym_RBRACE, - STATE(149), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22635] = 3, - ACTIONS(963), 1, - sym_template_directive_start, - STATE(492), 1, - sym_template_for_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22646] = 3, - ACTIONS(965), 1, - sym_template_directive_start, - STATE(491), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22657] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(967), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22668] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(969), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22679] = 3, - ACTIONS(941), 1, - anon_sym_else, - ACTIONS(971), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22690] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(973), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22701] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(975), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22712] = 3, - ACTIONS(977), 1, - sym_strip_marker, - ACTIONS(979), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22723] = 3, - ACTIONS(774), 1, - anon_sym_endfor, - ACTIONS(981), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22734] = 3, - ACTIONS(983), 1, - sym_strip_marker, - ACTIONS(985), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22745] = 3, - ACTIONS(804), 1, - anon_sym_endif, - ACTIONS(987), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22756] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(150), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22767] = 3, - ACTIONS(100), 1, - anon_sym_RBRACK, - STATE(315), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22778] = 3, - ACTIONS(989), 1, - sym_strip_marker, - ACTIONS(991), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22789] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(322), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22800] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(324), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22811] = 3, - ACTIONS(993), 1, - sym_strip_marker, - ACTIONS(995), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22822] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, STATE(203), 1, sym_object_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22833] = 3, - ACTIONS(941), 1, - anon_sym_else, - ACTIONS(997), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22844] = 3, - ACTIONS(665), 1, + [23293] = 3, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(999), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22855] = 3, - ACTIONS(45), 1, - anon_sym_RBRACE, - STATE(202), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22866] = 3, - ACTIONS(41), 1, - anon_sym_RBRACE, - STATE(172), 1, - sym_object_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22877] = 3, - ACTIONS(94), 1, - anon_sym_RBRACK, - STATE(153), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22888] = 3, - ACTIONS(104), 1, - anon_sym_RBRACK, - STATE(195), 1, - sym_tuple_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22899] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22910] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, - ACTIONS(1003), 1, + ACTIONS(953), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22921] = 3, - ACTIONS(665), 1, + [23304] = 3, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(1005), 1, + ACTIONS(955), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23315] = 3, + ACTIONS(45), 1, + anon_sym_RBRACE, + STATE(334), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23326] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(957), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23337] = 3, + ACTIONS(100), 1, + anon_sym_RBRACK, + STATE(200), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23348] = 3, + ACTIONS(959), 1, + sym_strip_marker, + ACTIONS(961), 1, + sym_template_directive_end, + 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, + 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, + sym_block_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23599] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(995), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22932] = 3, - ACTIONS(94), 1, + [23610] = 3, + ACTIONS(997), 1, + sym_identifier, + ACTIONS(999), 1, + aux_sym_legacy_index_token1, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23621] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1001), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23632] = 3, + ACTIONS(763), 1, + anon_sym_for, + ACTIONS(765), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23643] = 3, + ACTIONS(104), 1, anon_sym_RBRACK, STATE(173), 1, sym_tuple_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22943] = 3, - ACTIONS(43), 1, - anon_sym_RBRACE, - STATE(291), 1, - sym_object_end, + [23654] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1003), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_comment, sym__whitespace, - [22954] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, + [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, - [22965] = 3, - ACTIONS(1009), 1, - sym_identifier, - ACTIONS(1011), 1, - aux_sym_legacy_index_token1, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [22976] = 3, - ACTIONS(665), 1, + [23698] = 3, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(1013), 1, + 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, - [22987] = 3, + [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, sym_strip_marker, ACTIONS(1017), 1, @@ -30131,71 +31353,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [22998] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, + [23764] = 3, ACTIONS(1019), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23009] = 3, - ACTIONS(639), 1, - anon_sym_RBRACE, - STATE(504), 1, - sym_block_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23020] = 3, + sym_strip_marker, ACTIONS(1021), 1, - sym_template_directive_start, - STATE(415), 1, - sym_template_for_end, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23031] = 3, + [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_template_directive_start, - STATE(414), 1, - sym_template_if_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23042] = 3, - ACTIONS(665), 1, - anon_sym_QMARK, + sym_strip_marker, ACTIONS(1025), 1, - anon_sym_COLON, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23053] = 3, - ACTIONS(665), 1, + [23797] = 3, + ACTIONS(102), 1, + anon_sym_RBRACK, + STATE(311), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23808] = 3, + ACTIONS(41), 1, + anon_sym_RBRACE, + STATE(185), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23819] = 3, + ACTIONS(698), 1, anon_sym_QMARK, ACTIONS(1027), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23064] = 3, + [23830] = 3, ACTIONS(1029), 1, - sym_identifier, + sym_strip_marker, ACTIONS(1031), 1, - aux_sym_legacy_index_token1, + sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23075] = 3, - ACTIONS(665), 1, + [23841] = 3, + ACTIONS(698), 1, anon_sym_QMARK, ACTIONS(1033), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23086] = 3, + [23852] = 3, ACTIONS(1035), 1, sym_strip_marker, ACTIONS(1037), 1, @@ -30203,450 +31425,414 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_comment, sym__whitespace, - [23097] = 3, + [23863] = 3, + ACTIONS(39), 1, + anon_sym_RBRACE, + STATE(280), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23874] = 3, ACTIONS(1039), 1, - sym_strip_marker, + sym_identifier, ACTIONS(1041), 1, - sym_template_directive_end, + aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23108] = 3, - ACTIONS(753), 1, - anon_sym_endfor, + [23885] = 3, ACTIONS(1043), 1, - sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23119] = 3, + sym_identifier, ACTIONS(1045), 1, - sym_strip_marker, - ACTIONS(1047), 1, - sym_template_directive_end, + aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23130] = 3, - ACTIONS(846), 1, - anon_sym_endif, + [23896] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1047), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23907] = 3, + ACTIONS(104), 1, + anon_sym_RBRACK, + STATE(159), 1, + sym_tuple_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23918] = 3, + ACTIONS(13), 1, + anon_sym_RBRACE, + STATE(167), 1, + sym_object_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23929] = 3, ACTIONS(1049), 1, sym_strip_marker, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23141] = 3, ACTIONS(1051), 1, - sym_strip_marker, + 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, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23152] = 3, + anon_sym_COMMA, ACTIONS(1055), 1, - anon_sym_RPAREN, - STATE(170), 1, - sym__function_call_end, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23163] = 3, + [23962] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(1057), 1, - sym_strip_marker, - ACTIONS(1059), 1, - sym_template_directive_end, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23174] = 3, + [23973] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [23984] = 3, ACTIONS(1061), 1, - sym_strip_marker, + sym_identifier, ACTIONS(1063), 1, - sym_template_directive_end, + aux_sym_legacy_index_token1, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23185] = 2, - ACTIONS(848), 1, - anon_sym_endfor, + [23995] = 3, + ACTIONS(661), 1, + anon_sym_RBRACE, + STATE(494), 1, + sym_block_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23193] = 2, - ACTIONS(1059), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23201] = 2, - ACTIONS(1063), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23209] = 2, - ACTIONS(971), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23217] = 2, + [24006] = 3, ACTIONS(1065), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23225] = 2, + anon_sym_COMMA, ACTIONS(1067), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24017] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1069), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24028] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1071), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24039] = 3, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(1073), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24050] = 2, + ACTIONS(1075), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24058] = 2, + ACTIONS(1077), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23233] = 2, + [24066] = 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, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23241] = 2, - ACTIONS(1069), 1, - sym_template_interpolation_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23249] = 2, - ACTIONS(1071), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23257] = 2, - ACTIONS(1053), 1, + [24130] = 2, + ACTIONS(1031), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23265] = 2, - ACTIONS(943), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23273] = 2, - ACTIONS(854), 1, + [24138] = 2, + ACTIONS(1089), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23281] = 2, - ACTIONS(1073), 1, + [24146] = 2, + ACTIONS(935), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24154] = 2, + ACTIONS(1025), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24162] = 2, + ACTIONS(1091), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24170] = 2, + ACTIONS(1093), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23289] = 2, - ACTIONS(842), 1, - anon_sym_endfor, + [24178] = 2, + ACTIONS(1095), 1, + sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23297] = 2, - ACTIONS(192), 1, + [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, - [23305] = 2, - ACTIONS(1017), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23313] = 2, - ACTIONS(1075), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23321] = 2, - ACTIONS(1077), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23329] = 2, - ACTIONS(873), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23337] = 2, - ACTIONS(1079), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23345] = 2, - ACTIONS(1081), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23353] = 2, - ACTIONS(1083), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23361] = 2, - ACTIONS(1085), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23369] = 2, - ACTIONS(1087), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23377] = 2, - ACTIONS(1089), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23385] = 2, - ACTIONS(1091), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23393] = 2, - ACTIONS(1093), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23401] = 2, - ACTIONS(1095), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23409] = 2, + [24202] = 2, ACTIONS(1097), 1, - sym_template_interpolation_end, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23417] = 2, + [24210] = 2, ACTIONS(1099), 1, - sym_quoted_template_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23425] = 2, + [24218] = 2, ACTIONS(1101), 1, - sym_heredoc_identifier, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23433] = 2, + [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, - [23441] = 2, + [24242] = 2, + ACTIONS(983), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24250] = 2, ACTIONS(1105), 1, - sym_template_directive_end, + sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23449] = 2, + [24258] = 2, ACTIONS(1107), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23457] = 2, - ACTIONS(1109), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23465] = 2, - ACTIONS(1111), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23473] = 2, - ACTIONS(1113), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23481] = 2, - ACTIONS(810), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23489] = 2, - ACTIONS(1115), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23497] = 2, - ACTIONS(1117), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23505] = 2, - ACTIONS(997), 1, - anon_sym_endif, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23513] = 2, - ACTIONS(995), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23521] = 2, - ACTIONS(1119), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23529] = 2, - ACTIONS(832), 1, - anon_sym_endfor, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23537] = 2, - ACTIONS(1121), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23545] = 2, - ACTIONS(991), 1, - sym_template_directive_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23553] = 2, - ACTIONS(1123), 1, + [24266] = 2, + ACTIONS(899), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23561] = 2, + [24274] = 2, + ACTIONS(1109), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24282] = 2, + ACTIONS(1111), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24290] = 2, + ACTIONS(1113), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24298] = 2, ACTIONS(162), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23569] = 2, - ACTIONS(790), 1, + [24306] = 2, + ACTIONS(1115), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24314] = 2, + ACTIONS(1117), 1, + sym_heredoc_identifier, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24322] = 2, + ACTIONS(1119), 1, + sym_template_directive_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24330] = 2, + ACTIONS(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, - [23577] = 2, + [24354] = 2, ACTIONS(1125), 1, sym_heredoc_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23585] = 2, + [24362] = 2, ACTIONS(1127), 1, - sym_template_directive_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23593] = 2, - ACTIONS(1129), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23601] = 2, - ACTIONS(858), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23609] = 2, - ACTIONS(1131), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23617] = 2, - ACTIONS(1133), 1, - sym_quoted_template_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23625] = 2, - ACTIONS(1135), 1, + [24370] = 2, + ACTIONS(1129), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23633] = 2, - ACTIONS(1137), 1, - sym_heredoc_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23641] = 2, - ACTIONS(814), 1, + [24378] = 2, + ACTIONS(915), 1, sym_template_interpolation_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23649] = 2, - ACTIONS(1139), 1, + [24386] = 2, + ACTIONS(1131), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24394] = 2, + ACTIONS(1133), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym__whitespace, + [24402] = 2, + ACTIONS(919), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, sym__whitespace, - [23657] = 2, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23665] = 2, - ACTIONS(1143), 1, - sym_template_directive_start, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23673] = 2, - ACTIONS(1145), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23681] = 2, - ACTIONS(1147), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym_comment, - sym__whitespace, - [23689] = 2, - ACTIONS(881), 1, + [24410] = 2, + ACTIONS(927), 1, sym_template_directive_end, ACTIONS(3), 2, sym_comment, @@ -30660,8 +31846,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5)] = 321, [SMALL_STATE(6)] = 428, [SMALL_STATE(7)] = 535, - [SMALL_STATE(8)] = 639, - [SMALL_STATE(9)] = 741, + [SMALL_STATE(8)] = 637, + [SMALL_STATE(9)] = 739, [SMALL_STATE(10)] = 843, [SMALL_STATE(11)] = 947, [SMALL_STATE(12)] = 1049, @@ -30684,12 +31870,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)] = 2936, - [SMALL_STATE(33)] = 3028, - [SMALL_STATE(34)] = 3086, - [SMALL_STATE(35)] = 3140, - [SMALL_STATE(36)] = 3200, - [SMALL_STATE(37)] = 3264, + [SMALL_STATE(32)] = 2950, + [SMALL_STATE(33)] = 3008, + [SMALL_STATE(34)] = 3062, + [SMALL_STATE(35)] = 3122, + [SMALL_STATE(36)] = 3186, + [SMALL_STATE(37)] = 3252, [SMALL_STATE(38)] = 3330, [SMALL_STATE(39)] = 3398, [SMALL_STATE(40)] = 3490, @@ -30832,9 +32018,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(177)] = 13211, [SMALL_STATE(178)] = 13267, [SMALL_STATE(179)] = 13311, - [SMALL_STATE(180)] = 13365, - [SMALL_STATE(181)] = 13415, - [SMALL_STATE(182)] = 13481, + [SMALL_STATE(180)] = 13377, + [SMALL_STATE(181)] = 13431, + [SMALL_STATE(182)] = 13475, [SMALL_STATE(183)] = 13525, [SMALL_STATE(184)] = 13573, [SMALL_STATE(185)] = 13610, @@ -30869,26 +32055,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)] = 14805, + [SMALL_STATE(217)] = 14799, [SMALL_STATE(218)] = 14847, [SMALL_STATE(219)] = 14889, - [SMALL_STATE(220)] = 14933, - [SMALL_STATE(221)] = 14997, - [SMALL_STATE(222)] = 15041, - [SMALL_STATE(223)] = 15105, - [SMALL_STATE(224)] = 15149, - [SMALL_STATE(225)] = 15191, - [SMALL_STATE(226)] = 15247, - [SMALL_STATE(227)] = 15303, - [SMALL_STATE(228)] = 15357, - [SMALL_STATE(229)] = 15409, - [SMALL_STATE(230)] = 15463, - [SMALL_STATE(231)] = 15511, - [SMALL_STATE(232)] = 15555, - [SMALL_STATE(233)] = 15607, - [SMALL_STATE(234)] = 15653, - [SMALL_STATE(235)] = 15697, - [SMALL_STATE(236)] = 15743, + [SMALL_STATE(220)] = 14953, + [SMALL_STATE(221)] = 14995, + [SMALL_STATE(222)] = 15039, + [SMALL_STATE(223)] = 15103, + [SMALL_STATE(224)] = 15147, + [SMALL_STATE(225)] = 15203, + [SMALL_STATE(226)] = 15257, + [SMALL_STATE(227)] = 15313, + [SMALL_STATE(228)] = 15367, + [SMALL_STATE(229)] = 15419, + [SMALL_STATE(230)] = 15471, + [SMALL_STATE(231)] = 15519, + [SMALL_STATE(232)] = 15563, + [SMALL_STATE(233)] = 15605, + [SMALL_STATE(234)] = 15651, + [SMALL_STATE(235)] = 15695, + [SMALL_STATE(236)] = 15739, [SMALL_STATE(237)] = 15785, [SMALL_STATE(238)] = 15827, [SMALL_STATE(239)] = 15869, @@ -30916,7 +32102,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(261)] = 16649, [SMALL_STATE(262)] = 16680, [SMALL_STATE(263)] = 16711, - [SMALL_STATE(264)] = 16742, + [SMALL_STATE(264)] = 16746, [SMALL_STATE(265)] = 16777, [SMALL_STATE(266)] = 16808, [SMALL_STATE(267)] = 16839, @@ -30999,332 +32185,337 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(344)] = 19102, [SMALL_STATE(345)] = 19131, [SMALL_STATE(346)] = 19160, - [SMALL_STATE(347)] = 19186, + [SMALL_STATE(347)] = 19188, [SMALL_STATE(348)] = 19214, [SMALL_STATE(349)] = 19240, [SMALL_STATE(350)] = 19265, [SMALL_STATE(351)] = 19290, [SMALL_STATE(352)] = 19315, - [SMALL_STATE(353)] = 19359, - [SMALL_STATE(354)] = 19383, - [SMALL_STATE(355)] = 19427, - [SMALL_STATE(356)] = 19469, - [SMALL_STATE(357)] = 19513, - [SMALL_STATE(358)] = 19555, - [SMALL_STATE(359)] = 19597, - [SMALL_STATE(360)] = 19639, - [SMALL_STATE(361)] = 19681, - [SMALL_STATE(362)] = 19723, - [SMALL_STATE(363)] = 19765, - [SMALL_STATE(364)] = 19807, - [SMALL_STATE(365)] = 19851, - [SMALL_STATE(366)] = 19895, - [SMALL_STATE(367)] = 19934, - [SMALL_STATE(368)] = 19957, - [SMALL_STATE(369)] = 19980, - [SMALL_STATE(370)] = 20019, - [SMALL_STATE(371)] = 20058, - [SMALL_STATE(372)] = 20097, - [SMALL_STATE(373)] = 20136, - [SMALL_STATE(374)] = 20175, - [SMALL_STATE(375)] = 20211, - [SMALL_STATE(376)] = 20247, - [SMALL_STATE(377)] = 20267, - [SMALL_STATE(378)] = 20287, - [SMALL_STATE(379)] = 20311, - [SMALL_STATE(380)] = 20333, - [SMALL_STATE(381)] = 20355, - [SMALL_STATE(382)] = 20378, - [SMALL_STATE(383)] = 20401, - [SMALL_STATE(384)] = 20424, - [SMALL_STATE(385)] = 20445, - [SMALL_STATE(386)] = 20468, - [SMALL_STATE(387)] = 20485, - [SMALL_STATE(388)] = 20508, - [SMALL_STATE(389)] = 20531, - [SMALL_STATE(390)] = 20550, - [SMALL_STATE(391)] = 20567, - [SMALL_STATE(392)] = 20587, - [SMALL_STATE(393)] = 20599, - [SMALL_STATE(394)] = 20611, - [SMALL_STATE(395)] = 20631, - [SMALL_STATE(396)] = 20647, - [SMALL_STATE(397)] = 20667, - [SMALL_STATE(398)] = 20687, - [SMALL_STATE(399)] = 20705, - [SMALL_STATE(400)] = 20721, - [SMALL_STATE(401)] = 20741, - [SMALL_STATE(402)] = 20761, - [SMALL_STATE(403)] = 20777, - [SMALL_STATE(404)] = 20797, - [SMALL_STATE(405)] = 20813, - [SMALL_STATE(406)] = 20827, - [SMALL_STATE(407)] = 20838, - [SMALL_STATE(408)] = 20849, - [SMALL_STATE(409)] = 20860, - [SMALL_STATE(410)] = 20877, - [SMALL_STATE(411)] = 20888, - [SMALL_STATE(412)] = 20899, - [SMALL_STATE(413)] = 20916, - [SMALL_STATE(414)] = 20929, - [SMALL_STATE(415)] = 20940, - [SMALL_STATE(416)] = 20951, - [SMALL_STATE(417)] = 20962, - [SMALL_STATE(418)] = 20979, - [SMALL_STATE(419)] = 20990, - [SMALL_STATE(420)] = 21007, - [SMALL_STATE(421)] = 21018, - [SMALL_STATE(422)] = 21035, - [SMALL_STATE(423)] = 21048, - [SMALL_STATE(424)] = 21059, - [SMALL_STATE(425)] = 21070, - [SMALL_STATE(426)] = 21081, - [SMALL_STATE(427)] = 21098, - [SMALL_STATE(428)] = 21111, - [SMALL_STATE(429)] = 21122, - [SMALL_STATE(430)] = 21133, - [SMALL_STATE(431)] = 21144, - [SMALL_STATE(432)] = 21155, - [SMALL_STATE(433)] = 21166, - [SMALL_STATE(434)] = 21177, - [SMALL_STATE(435)] = 21194, - [SMALL_STATE(436)] = 21207, - [SMALL_STATE(437)] = 21218, - [SMALL_STATE(438)] = 21233, - [SMALL_STATE(439)] = 21244, - [SMALL_STATE(440)] = 21261, - [SMALL_STATE(441)] = 21272, - [SMALL_STATE(442)] = 21283, - [SMALL_STATE(443)] = 21300, - [SMALL_STATE(444)] = 21317, - [SMALL_STATE(445)] = 21328, - [SMALL_STATE(446)] = 21345, - [SMALL_STATE(447)] = 21358, - [SMALL_STATE(448)] = 21375, - [SMALL_STATE(449)] = 21388, - [SMALL_STATE(450)] = 21399, - [SMALL_STATE(451)] = 21410, - [SMALL_STATE(452)] = 21421, - [SMALL_STATE(453)] = 21432, - [SMALL_STATE(454)] = 21449, - [SMALL_STATE(455)] = 21460, - [SMALL_STATE(456)] = 21475, - [SMALL_STATE(457)] = 21486, - [SMALL_STATE(458)] = 21500, - [SMALL_STATE(459)] = 21510, - [SMALL_STATE(460)] = 21524, - [SMALL_STATE(461)] = 21534, - [SMALL_STATE(462)] = 21544, - [SMALL_STATE(463)] = 21558, - [SMALL_STATE(464)] = 21568, - [SMALL_STATE(465)] = 21578, - [SMALL_STATE(466)] = 21592, - [SMALL_STATE(467)] = 21606, - [SMALL_STATE(468)] = 21620, - [SMALL_STATE(469)] = 21630, - [SMALL_STATE(470)] = 21640, - [SMALL_STATE(471)] = 21654, - [SMALL_STATE(472)] = 21664, - [SMALL_STATE(473)] = 21676, - [SMALL_STATE(474)] = 21686, - [SMALL_STATE(475)] = 21700, - [SMALL_STATE(476)] = 21710, - [SMALL_STATE(477)] = 21720, - [SMALL_STATE(478)] = 21732, - [SMALL_STATE(479)] = 21742, - [SMALL_STATE(480)] = 21752, - [SMALL_STATE(481)] = 21762, - [SMALL_STATE(482)] = 21772, - [SMALL_STATE(483)] = 21782, - [SMALL_STATE(484)] = 21792, - [SMALL_STATE(485)] = 21806, - [SMALL_STATE(486)] = 21816, - [SMALL_STATE(487)] = 21826, - [SMALL_STATE(488)] = 21840, - [SMALL_STATE(489)] = 21854, - [SMALL_STATE(490)] = 21868, - [SMALL_STATE(491)] = 21878, - [SMALL_STATE(492)] = 21888, - [SMALL_STATE(493)] = 21898, - [SMALL_STATE(494)] = 21908, - [SMALL_STATE(495)] = 21922, - [SMALL_STATE(496)] = 21936, - [SMALL_STATE(497)] = 21946, - [SMALL_STATE(498)] = 21956, - [SMALL_STATE(499)] = 21966, - [SMALL_STATE(500)] = 21980, - [SMALL_STATE(501)] = 21994, - [SMALL_STATE(502)] = 22008, - [SMALL_STATE(503)] = 22022, - [SMALL_STATE(504)] = 22032, - [SMALL_STATE(505)] = 22042, - [SMALL_STATE(506)] = 22056, - [SMALL_STATE(507)] = 22066, - [SMALL_STATE(508)] = 22076, - [SMALL_STATE(509)] = 22086, - [SMALL_STATE(510)] = 22096, - [SMALL_STATE(511)] = 22106, - [SMALL_STATE(512)] = 22116, - [SMALL_STATE(513)] = 22126, - [SMALL_STATE(514)] = 22136, - [SMALL_STATE(515)] = 22150, - [SMALL_STATE(516)] = 22164, - [SMALL_STATE(517)] = 22175, - [SMALL_STATE(518)] = 22186, - [SMALL_STATE(519)] = 22197, - [SMALL_STATE(520)] = 22208, - [SMALL_STATE(521)] = 22219, - [SMALL_STATE(522)] = 22230, - [SMALL_STATE(523)] = 22241, - [SMALL_STATE(524)] = 22252, - [SMALL_STATE(525)] = 22263, - [SMALL_STATE(526)] = 22274, - [SMALL_STATE(527)] = 22285, - [SMALL_STATE(528)] = 22296, - [SMALL_STATE(529)] = 22307, - [SMALL_STATE(530)] = 22318, - [SMALL_STATE(531)] = 22329, - [SMALL_STATE(532)] = 22340, - [SMALL_STATE(533)] = 22351, - [SMALL_STATE(534)] = 22362, - [SMALL_STATE(535)] = 22373, - [SMALL_STATE(536)] = 22384, - [SMALL_STATE(537)] = 22395, - [SMALL_STATE(538)] = 22406, - [SMALL_STATE(539)] = 22415, - [SMALL_STATE(540)] = 22426, - [SMALL_STATE(541)] = 22437, - [SMALL_STATE(542)] = 22448, - [SMALL_STATE(543)] = 22459, - [SMALL_STATE(544)] = 22470, - [SMALL_STATE(545)] = 22481, - [SMALL_STATE(546)] = 22492, - [SMALL_STATE(547)] = 22503, - [SMALL_STATE(548)] = 22514, - [SMALL_STATE(549)] = 22525, - [SMALL_STATE(550)] = 22536, - [SMALL_STATE(551)] = 22547, - [SMALL_STATE(552)] = 22558, - [SMALL_STATE(553)] = 22569, - [SMALL_STATE(554)] = 22580, - [SMALL_STATE(555)] = 22591, - [SMALL_STATE(556)] = 22602, - [SMALL_STATE(557)] = 22613, - [SMALL_STATE(558)] = 22624, - [SMALL_STATE(559)] = 22635, - [SMALL_STATE(560)] = 22646, - [SMALL_STATE(561)] = 22657, - [SMALL_STATE(562)] = 22668, - [SMALL_STATE(563)] = 22679, - [SMALL_STATE(564)] = 22690, - [SMALL_STATE(565)] = 22701, - [SMALL_STATE(566)] = 22712, - [SMALL_STATE(567)] = 22723, - [SMALL_STATE(568)] = 22734, - [SMALL_STATE(569)] = 22745, - [SMALL_STATE(570)] = 22756, - [SMALL_STATE(571)] = 22767, - [SMALL_STATE(572)] = 22778, - [SMALL_STATE(573)] = 22789, - [SMALL_STATE(574)] = 22800, - [SMALL_STATE(575)] = 22811, - [SMALL_STATE(576)] = 22822, - [SMALL_STATE(577)] = 22833, - [SMALL_STATE(578)] = 22844, - [SMALL_STATE(579)] = 22855, - [SMALL_STATE(580)] = 22866, - [SMALL_STATE(581)] = 22877, - [SMALL_STATE(582)] = 22888, - [SMALL_STATE(583)] = 22899, - [SMALL_STATE(584)] = 22910, - [SMALL_STATE(585)] = 22921, - [SMALL_STATE(586)] = 22932, - [SMALL_STATE(587)] = 22943, - [SMALL_STATE(588)] = 22954, - [SMALL_STATE(589)] = 22965, - [SMALL_STATE(590)] = 22976, - [SMALL_STATE(591)] = 22987, - [SMALL_STATE(592)] = 22998, - [SMALL_STATE(593)] = 23009, - [SMALL_STATE(594)] = 23020, - [SMALL_STATE(595)] = 23031, - [SMALL_STATE(596)] = 23042, - [SMALL_STATE(597)] = 23053, - [SMALL_STATE(598)] = 23064, - [SMALL_STATE(599)] = 23075, - [SMALL_STATE(600)] = 23086, - [SMALL_STATE(601)] = 23097, - [SMALL_STATE(602)] = 23108, - [SMALL_STATE(603)] = 23119, - [SMALL_STATE(604)] = 23130, - [SMALL_STATE(605)] = 23141, - [SMALL_STATE(606)] = 23152, - [SMALL_STATE(607)] = 23163, - [SMALL_STATE(608)] = 23174, - [SMALL_STATE(609)] = 23185, - [SMALL_STATE(610)] = 23193, - [SMALL_STATE(611)] = 23201, - [SMALL_STATE(612)] = 23209, - [SMALL_STATE(613)] = 23217, - [SMALL_STATE(614)] = 23225, - [SMALL_STATE(615)] = 23233, - [SMALL_STATE(616)] = 23241, - [SMALL_STATE(617)] = 23249, - [SMALL_STATE(618)] = 23257, - [SMALL_STATE(619)] = 23265, - [SMALL_STATE(620)] = 23273, - [SMALL_STATE(621)] = 23281, - [SMALL_STATE(622)] = 23289, - [SMALL_STATE(623)] = 23297, - [SMALL_STATE(624)] = 23305, - [SMALL_STATE(625)] = 23313, - [SMALL_STATE(626)] = 23321, - [SMALL_STATE(627)] = 23329, - [SMALL_STATE(628)] = 23337, - [SMALL_STATE(629)] = 23345, - [SMALL_STATE(630)] = 23353, - [SMALL_STATE(631)] = 23361, - [SMALL_STATE(632)] = 23369, - [SMALL_STATE(633)] = 23377, - [SMALL_STATE(634)] = 23385, - [SMALL_STATE(635)] = 23393, - [SMALL_STATE(636)] = 23401, - [SMALL_STATE(637)] = 23409, - [SMALL_STATE(638)] = 23417, - [SMALL_STATE(639)] = 23425, - [SMALL_STATE(640)] = 23433, - [SMALL_STATE(641)] = 23441, - [SMALL_STATE(642)] = 23449, - [SMALL_STATE(643)] = 23457, - [SMALL_STATE(644)] = 23465, - [SMALL_STATE(645)] = 23473, - [SMALL_STATE(646)] = 23481, - [SMALL_STATE(647)] = 23489, - [SMALL_STATE(648)] = 23497, - [SMALL_STATE(649)] = 23505, - [SMALL_STATE(650)] = 23513, - [SMALL_STATE(651)] = 23521, - [SMALL_STATE(652)] = 23529, - [SMALL_STATE(653)] = 23537, - [SMALL_STATE(654)] = 23545, - [SMALL_STATE(655)] = 23553, - [SMALL_STATE(656)] = 23561, - [SMALL_STATE(657)] = 23569, - [SMALL_STATE(658)] = 23577, - [SMALL_STATE(659)] = 23585, - [SMALL_STATE(660)] = 23593, - [SMALL_STATE(661)] = 23601, - [SMALL_STATE(662)] = 23609, - [SMALL_STATE(663)] = 23617, - [SMALL_STATE(664)] = 23625, - [SMALL_STATE(665)] = 23633, - [SMALL_STATE(666)] = 23641, - [SMALL_STATE(667)] = 23649, - [SMALL_STATE(668)] = 23657, - [SMALL_STATE(669)] = 23665, - [SMALL_STATE(670)] = 23673, - [SMALL_STATE(671)] = 23681, - [SMALL_STATE(672)] = 23689, + [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(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(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(385)] = 20489, + [SMALL_STATE(386)] = 20525, + [SMALL_STATE(387)] = 20561, + [SMALL_STATE(388)] = 20597, + [SMALL_STATE(389)] = 20633, + [SMALL_STATE(390)] = 20669, + [SMALL_STATE(391)] = 20705, + [SMALL_STATE(392)] = 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(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(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(456)] = 22029, + [SMALL_STATE(457)] = 22040, + [SMALL_STATE(458)] = 22057, + [SMALL_STATE(459)] = 22068, + [SMALL_STATE(460)] = 22079, + [SMALL_STATE(461)] = 22090, + [SMALL_STATE(462)] = 22101, + [SMALL_STATE(463)] = 22118, + [SMALL_STATE(464)] = 22129, + [SMALL_STATE(465)] = 22146, + [SMALL_STATE(466)] = 22157, + [SMALL_STATE(467)] = 22168, + [SMALL_STATE(468)] = 22179, + [SMALL_STATE(469)] = 22192, + [SMALL_STATE(470)] = 22207, + [SMALL_STATE(471)] = 22218, + [SMALL_STATE(472)] = 22229, + [SMALL_STATE(473)] = 22240, + [SMALL_STATE(474)] = 22257, + [SMALL_STATE(475)] = 22268, + [SMALL_STATE(476)] = 22279, + [SMALL_STATE(477)] = 22290, + [SMALL_STATE(478)] = 22301, + [SMALL_STATE(479)] = 22312, + [SMALL_STATE(480)] = 22325, + [SMALL_STATE(481)] = 22342, + [SMALL_STATE(482)] = 22355, + [SMALL_STATE(483)] = 22372, + [SMALL_STATE(484)] = 22383, + [SMALL_STATE(485)] = 22394, + [SMALL_STATE(486)] = 22405, + [SMALL_STATE(487)] = 22422, + [SMALL_STATE(488)] = 22435, + [SMALL_STATE(489)] = 22446, + [SMALL_STATE(490)] = 22463, + [SMALL_STATE(491)] = 22474, + [SMALL_STATE(492)] = 22485, + [SMALL_STATE(493)] = 22496, + [SMALL_STATE(494)] = 22506, + [SMALL_STATE(495)] = 22516, + [SMALL_STATE(496)] = 22530, + [SMALL_STATE(497)] = 22544, + [SMALL_STATE(498)] = 22558, + [SMALL_STATE(499)] = 22568, + [SMALL_STATE(500)] = 22578, + [SMALL_STATE(501)] = 22588, + [SMALL_STATE(502)] = 22598, + [SMALL_STATE(503)] = 22608, + [SMALL_STATE(504)] = 22622, + [SMALL_STATE(505)] = 22632, + [SMALL_STATE(506)] = 22642, + [SMALL_STATE(507)] = 22652, + [SMALL_STATE(508)] = 22662, + [SMALL_STATE(509)] = 22676, + [SMALL_STATE(510)] = 22686, + [SMALL_STATE(511)] = 22696, + [SMALL_STATE(512)] = 22706, + [SMALL_STATE(513)] = 22716, + [SMALL_STATE(514)] = 22730, + [SMALL_STATE(515)] = 22744, + [SMALL_STATE(516)] = 22758, + [SMALL_STATE(517)] = 22768, + [SMALL_STATE(518)] = 22782, + [SMALL_STATE(519)] = 22792, + [SMALL_STATE(520)] = 22802, + [SMALL_STATE(521)] = 22812, + [SMALL_STATE(522)] = 22826, + [SMALL_STATE(523)] = 22836, + [SMALL_STATE(524)] = 22846, + [SMALL_STATE(525)] = 22860, + [SMALL_STATE(526)] = 22874, + [SMALL_STATE(527)] = 22884, + [SMALL_STATE(528)] = 22896, + [SMALL_STATE(529)] = 22906, + [SMALL_STATE(530)] = 22920, + [SMALL_STATE(531)] = 22930, + [SMALL_STATE(532)] = 22944, + [SMALL_STATE(533)] = 22954, + [SMALL_STATE(534)] = 22966, + [SMALL_STATE(535)] = 22980, + [SMALL_STATE(536)] = 22990, + [SMALL_STATE(537)] = 23004, + [SMALL_STATE(538)] = 23018, + [SMALL_STATE(539)] = 23028, + [SMALL_STATE(540)] = 23038, + [SMALL_STATE(541)] = 23048, + [SMALL_STATE(542)] = 23062, + [SMALL_STATE(543)] = 23072, + [SMALL_STATE(544)] = 23082, + [SMALL_STATE(545)] = 23092, + [SMALL_STATE(546)] = 23106, + [SMALL_STATE(547)] = 23120, + [SMALL_STATE(548)] = 23130, + [SMALL_STATE(549)] = 23140, + [SMALL_STATE(550)] = 23150, + [SMALL_STATE(551)] = 23160, + [SMALL_STATE(552)] = 23170, + [SMALL_STATE(553)] = 23184, + [SMALL_STATE(554)] = 23194, + [SMALL_STATE(555)] = 23205, + [SMALL_STATE(556)] = 23216, + [SMALL_STATE(557)] = 23227, + [SMALL_STATE(558)] = 23238, + [SMALL_STATE(559)] = 23249, + [SMALL_STATE(560)] = 23260, + [SMALL_STATE(561)] = 23271, + [SMALL_STATE(562)] = 23282, + [SMALL_STATE(563)] = 23293, + [SMALL_STATE(564)] = 23304, + [SMALL_STATE(565)] = 23315, + [SMALL_STATE(566)] = 23326, + [SMALL_STATE(567)] = 23337, + [SMALL_STATE(568)] = 23348, + [SMALL_STATE(569)] = 23359, + [SMALL_STATE(570)] = 23370, + [SMALL_STATE(571)] = 23379, + [SMALL_STATE(572)] = 23390, + [SMALL_STATE(573)] = 23401, + [SMALL_STATE(574)] = 23412, + [SMALL_STATE(575)] = 23423, + [SMALL_STATE(576)] = 23434, + [SMALL_STATE(577)] = 23445, + [SMALL_STATE(578)] = 23456, + [SMALL_STATE(579)] = 23467, + [SMALL_STATE(580)] = 23478, + [SMALL_STATE(581)] = 23489, + [SMALL_STATE(582)] = 23500, + [SMALL_STATE(583)] = 23511, + [SMALL_STATE(584)] = 23522, + [SMALL_STATE(585)] = 23533, + [SMALL_STATE(586)] = 23544, + [SMALL_STATE(587)] = 23555, + [SMALL_STATE(588)] = 23566, + [SMALL_STATE(589)] = 23577, + [SMALL_STATE(590)] = 23588, + [SMALL_STATE(591)] = 23599, + [SMALL_STATE(592)] = 23610, + [SMALL_STATE(593)] = 23621, + [SMALL_STATE(594)] = 23632, + [SMALL_STATE(595)] = 23643, + [SMALL_STATE(596)] = 23654, + [SMALL_STATE(597)] = 23665, + [SMALL_STATE(598)] = 23676, + [SMALL_STATE(599)] = 23687, + [SMALL_STATE(600)] = 23698, + [SMALL_STATE(601)] = 23709, + [SMALL_STATE(602)] = 23720, + [SMALL_STATE(603)] = 23731, + [SMALL_STATE(604)] = 23742, + [SMALL_STATE(605)] = 23753, + [SMALL_STATE(606)] = 23764, + [SMALL_STATE(607)] = 23775, + [SMALL_STATE(608)] = 23786, + [SMALL_STATE(609)] = 23797, + [SMALL_STATE(610)] = 23808, + [SMALL_STATE(611)] = 23819, + [SMALL_STATE(612)] = 23830, + [SMALL_STATE(613)] = 23841, + [SMALL_STATE(614)] = 23852, + [SMALL_STATE(615)] = 23863, + [SMALL_STATE(616)] = 23874, + [SMALL_STATE(617)] = 23885, + [SMALL_STATE(618)] = 23896, + [SMALL_STATE(619)] = 23907, + [SMALL_STATE(620)] = 23918, + [SMALL_STATE(621)] = 23929, + [SMALL_STATE(622)] = 23940, + [SMALL_STATE(623)] = 23951, + [SMALL_STATE(624)] = 23962, + [SMALL_STATE(625)] = 23973, + [SMALL_STATE(626)] = 23984, + [SMALL_STATE(627)] = 23995, + [SMALL_STATE(628)] = 24006, + [SMALL_STATE(629)] = 24017, + [SMALL_STATE(630)] = 24028, + [SMALL_STATE(631)] = 24039, + [SMALL_STATE(632)] = 24050, + [SMALL_STATE(633)] = 24058, + [SMALL_STATE(634)] = 24066, + [SMALL_STATE(635)] = 24074, + [SMALL_STATE(636)] = 24082, + [SMALL_STATE(637)] = 24090, + [SMALL_STATE(638)] = 24098, + [SMALL_STATE(639)] = 24106, + [SMALL_STATE(640)] = 24114, + [SMALL_STATE(641)] = 24122, + [SMALL_STATE(642)] = 24130, + [SMALL_STATE(643)] = 24138, + [SMALL_STATE(644)] = 24146, + [SMALL_STATE(645)] = 24154, + [SMALL_STATE(646)] = 24162, + [SMALL_STATE(647)] = 24170, + [SMALL_STATE(648)] = 24178, + [SMALL_STATE(649)] = 24186, + [SMALL_STATE(650)] = 24194, + [SMALL_STATE(651)] = 24202, + [SMALL_STATE(652)] = 24210, + [SMALL_STATE(653)] = 24218, + [SMALL_STATE(654)] = 24226, + [SMALL_STATE(655)] = 24234, + [SMALL_STATE(656)] = 24242, + [SMALL_STATE(657)] = 24250, + [SMALL_STATE(658)] = 24258, + [SMALL_STATE(659)] = 24266, + [SMALL_STATE(660)] = 24274, + [SMALL_STATE(661)] = 24282, + [SMALL_STATE(662)] = 24290, + [SMALL_STATE(663)] = 24298, + [SMALL_STATE(664)] = 24306, + [SMALL_STATE(665)] = 24314, + [SMALL_STATE(666)] = 24322, + [SMALL_STATE(667)] = 24330, + [SMALL_STATE(668)] = 24338, + [SMALL_STATE(669)] = 24346, + [SMALL_STATE(670)] = 24354, + [SMALL_STATE(671)] = 24362, + [SMALL_STATE(672)] = 24370, + [SMALL_STATE(673)] = 24378, + [SMALL_STATE(674)] = 24386, + [SMALL_STATE(675)] = 24394, + [SMALL_STATE(676)] = 24402, + [SMALL_STATE(677)] = 24410, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -31332,121 +32523,121 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [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(78), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [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(668), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(350), - [52] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(175), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(78), - [60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(188), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(188), - [66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(189), - [69] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(192), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(40), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(351), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(105), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(653), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(653), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__object_elems_repeat1, 2), SHIFT_REPEAT(352), - [90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 2), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [96] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 1), - [98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [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(264), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__object_elems, 3), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [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_expression, 1), - [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [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}}, REDUCE(sym_function_arguments, 3), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), + [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(247), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [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(82), + [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(154), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [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), @@ -31457,29 +32648,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(68), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(589), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [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(121), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [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(94), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [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(62), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(547), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2), + [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), @@ -31488,402 +32679,395 @@ static const TSParseActionEntry ts_parse_actions[] = { [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_for_object_expr, 8), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_index, 2), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_index, 2), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 4), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 4), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_index, 3), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_index, 3), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_end, 1), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_end, 1), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_template, 3), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_template, 3), - [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [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_index, 1), - [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 1), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [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(598), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [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 = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(85), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(598), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(85), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(626), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(65), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(517), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(44), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(554), + [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(18), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_elem, 3, .production_id = 1), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__object_elems_repeat1, 2), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_start, 1), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_start, 1), + [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(184), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [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(417), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(404), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(24), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(500), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(399), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(25), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__template, 1), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(455), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 2), SHIFT_REPEAT(27), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), - [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_elems_repeat1, 2), SHIFT_REPEAT(77), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(378), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(395), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_elems, 1), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(398), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(412), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(402), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 2), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 2), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 4), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 5), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 5), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__template_repeat1, 1), - [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if, 3), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 3), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for, 2), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 3), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_end, 3), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_end, 4), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_directive, 1), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(437), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 4), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 6), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 5), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 6), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_intro, 5), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_end, 1), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [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), + [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}}, SHIFT(616), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 7), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(501), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 8), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 9), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_intro, 4), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_for_start, 10), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_start, 1), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_start, 1), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_else_branch, 2), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_if_branch, 2), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), - [1147] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [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), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), }; #ifdef __cplusplus @@ -31934,6 +33118,7 @@ extern const TSLanguage *tree_sitter_hcl(void) { tree_sitter_hcl_external_scanner_serialize, tree_sitter_hcl_external_scanner_deserialize, }, + .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/test/corpus/templates.txt b/test/corpus/templates.txt index 7fe6bc3..12bbb3d 100644 --- a/test/corpus/templates.txt +++ b/test/corpus/templates.txt @@ -452,7 +452,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX template if directive in quoted template ================================================================================ -foo = "%{if cond } foo %{else} bar %{endif}" +foo = "%{if cond} foo %{else} bar %{endif}" -------------------------------------------------------------------------------- @@ -466,20 +466,304 @@ foo = "%{if cond } foo %{else} bar %{endif}" (quoted_template_start) (template_directive (template_if - (template_if_branch - (template_if_intro - (template_directive_start) - (expression - (variable_expr - (identifier))) - (template_directive_end)) - (template_literal)) - (template_else_branch - (template_else_intro - (template_directive_start) - (template_directive_end)) - (template_literal)) + (template_if_intro + (template_directive_start) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_literal) + (template_else_intro + (template_directive_start) + (template_directive_end)) + (template_literal) (template_if_end (template_directive_start) (template_directive_end)))) (quoted_template_end))))))) + +================================================================================ +template nested for directives with interlaced chunks +================================================================================ + +foo = "%{for a in b} x %{for c in a} ${c} %{endfor} %{endfor}" + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (quoted_template + (quoted_template_start) + (template_directive + (template_for + (template_for_start + (template_directive_start) + (identifier) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_literal) + (template_directive + (template_for + (template_for_start + (template_directive_start) + (identifier) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_interpolation + (template_interpolation_start) + (expression + (variable_expr + (identifier))) + (template_interpolation_end)) + (template_for_end + (template_directive_start) + (template_directive_end)))) + (template_for_end + (template_directive_start) + (template_directive_end)))) + (quoted_template_end))))))) + +================================================================================ +template nested if directives with interlaced chunks +================================================================================ + +foo = "%{if a} %{if b} y %{else} x %{endif} %{endif}" + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (quoted_template + (quoted_template_start) + (template_directive + (template_if + (template_if_intro + (template_directive_start) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_directive + (template_if + (template_if_intro + (template_directive_start) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_literal) + (template_else_intro + (template_directive_start) + (template_directive_end)) + (template_literal) + (template_if_end + (template_directive_start) + (template_directive_end)))) + (template_if_end + (template_directive_start) + (template_directive_end)))) + (quoted_template_end))))))) + +================================================================================ +template empty if else statement +================================================================================ + +foo = "%{if a} %{else} %{endif}" + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (quoted_template + (quoted_template_start) + (template_directive + (template_if + (template_if_intro + (template_directive_start) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_else_intro + (template_directive_start) + (template_directive_end)) + (template_if_end + (template_directive_start) + (template_directive_end)))) + (quoted_template_end))))))) + +================================================================================ +template empty for statement +================================================================================ + +foo = "%{for a in b} %{endfor}" + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (quoted_template + (quoted_template_start) + (template_directive + (template_for + (template_for_start + (template_directive_start) + (identifier) + (expression + (variable_expr + (identifier))) + (template_directive_end)) + (template_for_end + (template_directive_start) + (template_directive_end)))) + (quoted_template_end))))))) + +================================================================================ +template parenthesis in heredoc for directive with nested if 1 +================================================================================ + +tpl6 = <<-EOF + %{ for a in f(b) ~} + ( %{~if a~} "true" %{~else~} "false" %{~endif~} ) + %{ endfor ~} +EOF + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (heredoc_template + (heredoc_start) + (heredoc_identifier) + (template_directive + (template_for + (template_for_start + (template_directive_start) + (identifier) + (expression + (function_call + (identifier) + (function_arguments + (expression + (variable_expr + (identifier)))))) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_directive + (template_if + (template_if_intro + (template_directive_start) + (strip_marker) + (expression + (variable_expr + (identifier))) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_else_intro + (template_directive_start) + (strip_marker) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_if_end + (template_directive_start) + (strip_marker) + (strip_marker) + (template_directive_end)))) + (template_literal) + (template_for_end + (template_directive_start) + (strip_marker) + (template_directive_end)))) + (heredoc_identifier))))))) + +================================================================================ +template parenthesis in heredoc for directive with nested if 2 +================================================================================ + +tpl6 = <<-EOF + %{ for a in f(b) ~} + ("foo") + %{~if a~} "true" %{~else~} "false" %{~endif~} + %{ endfor ~} +EOF + +-------------------------------------------------------------------------------- + +(config_file + (body + (attribute + (identifier) + (expression + (template_expr + (heredoc_template + (heredoc_start) + (heredoc_identifier) + (template_directive + (template_for + (template_for_start + (template_directive_start) + (identifier) + (expression + (function_call + (identifier) + (function_arguments + (expression + (variable_expr + (identifier)))))) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_directive + (template_if + (template_if_intro + (template_directive_start) + (strip_marker) + (expression + (variable_expr + (identifier))) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_else_intro + (template_directive_start) + (strip_marker) + (strip_marker) + (template_directive_end)) + (template_literal) + (template_if_end + (template_directive_start) + (strip_marker) + (strip_marker) + (template_directive_end)))) + (template_for_end + (template_directive_start) + (strip_marker) + (template_directive_end)))) + (heredoc_identifier)))))))