diff --git a/grammar.js b/grammar.js index 51b1bbb..7c443f2 100644 --- a/grammar.js +++ b/grammar.js @@ -16,8 +16,6 @@ module.exports = grammar({ name: 'hcl', conflicts: $ => [ - [$.body], - [$.object_elem, $.variable_expr], [$.attr_splat], [$.full_splat], // string literals are just quoted template without template stuff @@ -136,7 +134,7 @@ module.exports = grammar({ _object_end: $ => '}', object_elem: $ => seq( - choice($.identifier, $.expression), + $.expression, choice('=', ':'), $.expression, ), diff --git a/src/grammar.json b/src/grammar.json index 2e74c1d..61f3cee 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -414,17 +414,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "expression" }, { "type": "CHOICE", @@ -1219,13 +1210,6 @@ } ], "conflicts": [ - [ - "body" - ], - [ - "object_elem", - "variable_expr" - ], [ "attr_splat" ], diff --git a/src/node-types.json b/src/node-types.json index 38ec207..90eb03f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -507,10 +507,6 @@ { "type": "expression", "named": true - }, - { - "type": "identifier", - "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 4a31619..7bf7a2c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 312 +#define STATE_COUNT 311 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 92 #define ALIAS_COUNT 0 @@ -2244,7 +2244,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(30); + if (eof) ADVANCE(31); if (lookahead == '!') ADVANCE(75); if (lookahead == '#') ADVANCE(89); if (lookahead == '%') ADVANCE(77); @@ -2264,12 +2264,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '?') ADVANCE(72); if (lookahead == '[') ADVANCE(60); if (lookahead == ']') ADVANCE(62); - if (lookahead == 'f') ADVANCE(12); - if (lookahead == 'i') ADVANCE(16); - if (lookahead == 'n') ADVANCE(24); - if (lookahead == 't') ADVANCE(21); + if (lookahead == 'f') ADVANCE(13); + if (lookahead == 'i') ADVANCE(17); + if (lookahead == 'n') ADVANCE(25); + if (lookahead == 't') ADVANCE(22); if (lookahead == '{') ADVANCE(34); - if (lookahead == '|') ADVANCE(25); + if (lookahead == '|') ADVANCE(26); if (lookahead == '}') ADVANCE(35); if (lookahead == '~') ADVANCE(87); if (lookahead == '\t' || @@ -2289,15 +2289,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(73); if (lookahead == '.') ADVANCE(64); if (lookahead == '/') ADVANCE(76); - if (lookahead == ':') ADVANCE(63); if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(32); + if (lookahead == '=') ADVANCE(11); if (lookahead == '>') ADVANCE(79); if (lookahead == '?') ADVANCE(72); if (lookahead == '[') ADVANCE(60); if (lookahead == ']') ADVANCE(62); - if (lookahead == 'i') ADVANCE(15); - if (lookahead == '|') ADVANCE(25); + if (lookahead == 'i') ADVANCE(16); + if (lookahead == '|') ADVANCE(26); if (lookahead == '}') ADVANCE(35); if (lookahead == '\t' || lookahead == '\n' || @@ -2312,7 +2311,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(65); if (lookahead == '-') ADVANCE(73); if (lookahead == '/') ADVANCE(6); - if (lookahead == '=') ADVANCE(11); + if (lookahead == '=') ADVANCE(12); if (lookahead == '?') ADVANCE(72); if (lookahead == '[') ADVANCE(60); if (lookahead == 'f') ADVANCE(37); @@ -2334,7 +2333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(73); if (lookahead == '/') ADVANCE(6); if (lookahead == ':') ADVANCE(63); - if (lookahead == '=') ADVANCE(31); + if (lookahead == '=') ADVANCE(32); if (lookahead == '?') ADVANCE(72); if (lookahead == '[') ADVANCE(60); if (lookahead == ']') ADVANCE(62); @@ -2353,7 +2352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == '#') ADVANCE(89); if (lookahead == '/') ADVANCE(6); - if (lookahead == '=') ADVANCE(31); + if (lookahead == '=') ADVANCE(32); if (lookahead == '{') ADVANCE(34); if (lookahead == '\t' || lookahead == '\n' || @@ -2384,65 +2383,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(84); END_STATE(); case 11: - if (lookahead == '>') ADVANCE(66); + if (lookahead == '=') ADVANCE(83); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(17); - if (lookahead == 'o') ADVANCE(20); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(54); + if (lookahead == 'a') ADVANCE(18); + if (lookahead == 'o') ADVANCE(21); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'e') ADVANCE(54); END_STATE(); case 15: - if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'e') ADVANCE(56); END_STATE(); case 16: if (lookahead == 'f') ADVANCE(70); - if (lookahead == 'n') ADVANCE(69); END_STATE(); case 17: - if (lookahead == 'l') ADVANCE(22); + if (lookahead == 'f') ADVANCE(70); + if (lookahead == 'n') ADVANCE(69); END_STATE(); case 18: - if (lookahead == 'l') ADVANCE(58); + if (lookahead == 'l') ADVANCE(23); END_STATE(); case 19: - if (lookahead == 'l') ADVANCE(18); + if (lookahead == 'l') ADVANCE(58); END_STATE(); case 20: - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'l') ADVANCE(19); END_STATE(); case 21: - if (lookahead == 'r') ADVANCE(23); + if (lookahead == 'r') ADVANCE(67); END_STATE(); case 22: - if (lookahead == 's') ADVANCE(14); + if (lookahead == 'r') ADVANCE(24); END_STATE(); case 23: - if (lookahead == 'u') ADVANCE(13); + if (lookahead == 's') ADVANCE(15); END_STATE(); case 24: - if (lookahead == 'u') ADVANCE(19); + if (lookahead == 'u') ADVANCE(14); END_STATE(); case 25: - if (lookahead == '|') ADVANCE(86); + if (lookahead == 'u') ADVANCE(20); END_STATE(); case 26: - if (lookahead == '+' || - lookahead == '-') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + if (lookahead == '|') ADVANCE(86); END_STATE(); case 27: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); - END_STATE(); - case 28: + if (lookahead == '+' || + lookahead == '-') ADVANCE(29); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); END_STATE(); + case 28: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); + END_STATE(); case 29: - if (eof) ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); + END_STATE(); + case 30: + if (eof) ADVANCE(31); if (lookahead == '!') ADVANCE(10); if (lookahead == '#') ADVANCE(89); if (lookahead == '%') ADVANCE(77); @@ -2463,24 +2465,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(60); if (lookahead == ']') ADVANCE(62); if (lookahead == '{') ADVANCE(34); - if (lookahead == '|') ADVANCE(25); + if (lookahead == '|') ADVANCE(26); if (lookahead == '}') ADVANCE(35); if (lookahead == '~') ADVANCE(87); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(29) + lookahead == ' ') SKIP(30) if (sym_identifier_character_set_1(lookahead)) ADVANCE(48); END_STATE(); - case 30: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 32: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(83); END_STATE(); case 33: ACCEPT_TOKEN(anon_sym_EQ); @@ -2566,13 +2564,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 51: ACCEPT_TOKEN(sym_numeric_lit); - if (lookahead == '.') ADVANCE(27); + if (lookahead == '.') ADVANCE(28); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); case 52: ACCEPT_TOKEN(sym_numeric_lit); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(26); + lookahead == 'e') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); END_STATE(); case 53: @@ -2706,7 +2704,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 29}, + [1] = {.lex_state = 30}, [2] = {.lex_state = 3, .external_lex_state = 2}, [3] = {.lex_state = 3, .external_lex_state = 2}, [4] = {.lex_state = 3, .external_lex_state = 2}, @@ -2727,7 +2725,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 2, .external_lex_state = 2}, [20] = {.lex_state = 2, .external_lex_state = 2}, [21] = {.lex_state = 2, .external_lex_state = 2}, - [22] = {.lex_state = 29}, + [22] = {.lex_state = 30}, [23] = {.lex_state = 2, .external_lex_state = 2}, [24] = {.lex_state = 2, .external_lex_state = 2}, [25] = {.lex_state = 2, .external_lex_state = 2}, @@ -2752,39 +2750,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 2, .external_lex_state = 2}, [45] = {.lex_state = 2, .external_lex_state = 2}, [46] = {.lex_state = 2, .external_lex_state = 2}, - [47] = {.lex_state = 29}, - [48] = {.lex_state = 29}, - [49] = {.lex_state = 29}, - [50] = {.lex_state = 29}, - [51] = {.lex_state = 29}, - [52] = {.lex_state = 29}, - [53] = {.lex_state = 29}, - [54] = {.lex_state = 29}, - [55] = {.lex_state = 29}, - [56] = {.lex_state = 29}, - [57] = {.lex_state = 29}, - [58] = {.lex_state = 29}, - [59] = {.lex_state = 29}, - [60] = {.lex_state = 29}, - [61] = {.lex_state = 29}, - [62] = {.lex_state = 29}, - [63] = {.lex_state = 29}, - [64] = {.lex_state = 29}, - [65] = {.lex_state = 29}, - [66] = {.lex_state = 29}, - [67] = {.lex_state = 29}, - [68] = {.lex_state = 29}, - [69] = {.lex_state = 29}, - [70] = {.lex_state = 29}, - [71] = {.lex_state = 29}, - [72] = {.lex_state = 29}, - [73] = {.lex_state = 29}, - [74] = {.lex_state = 29}, - [75] = {.lex_state = 29}, - [76] = {.lex_state = 29}, - [77] = {.lex_state = 29}, - [78] = {.lex_state = 29}, - [79] = {.lex_state = 29}, + [47] = {.lex_state = 30}, + [48] = {.lex_state = 30}, + [49] = {.lex_state = 30}, + [50] = {.lex_state = 30}, + [51] = {.lex_state = 30}, + [52] = {.lex_state = 30}, + [53] = {.lex_state = 30}, + [54] = {.lex_state = 30}, + [55] = {.lex_state = 30}, + [56] = {.lex_state = 30}, + [57] = {.lex_state = 30}, + [58] = {.lex_state = 30}, + [59] = {.lex_state = 30}, + [60] = {.lex_state = 30}, + [61] = {.lex_state = 30}, + [62] = {.lex_state = 30}, + [63] = {.lex_state = 30}, + [64] = {.lex_state = 30}, + [65] = {.lex_state = 30}, + [66] = {.lex_state = 30}, + [67] = {.lex_state = 30}, + [68] = {.lex_state = 30}, + [69] = {.lex_state = 30}, + [70] = {.lex_state = 30}, + [71] = {.lex_state = 30}, + [72] = {.lex_state = 30}, + [73] = {.lex_state = 30}, + [74] = {.lex_state = 30}, + [75] = {.lex_state = 30}, + [76] = {.lex_state = 30}, + [77] = {.lex_state = 30}, + [78] = {.lex_state = 30}, + [79] = {.lex_state = 30}, [80] = {.lex_state = 1}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, @@ -2810,26 +2808,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [102] = {.lex_state = 1}, [103] = {.lex_state = 1}, [104] = {.lex_state = 1}, - [105] = {.lex_state = 29, .external_lex_state = 3}, + [105] = {.lex_state = 30, .external_lex_state = 3}, [106] = {.lex_state = 1}, [107] = {.lex_state = 1}, [108] = {.lex_state = 1}, [109] = {.lex_state = 1}, - [110] = {.lex_state = 29, .external_lex_state = 3}, - [111] = {.lex_state = 29, .external_lex_state = 3}, - [112] = {.lex_state = 29, .external_lex_state = 3}, + [110] = {.lex_state = 30, .external_lex_state = 3}, + [111] = {.lex_state = 30, .external_lex_state = 3}, + [112] = {.lex_state = 30, .external_lex_state = 3}, [113] = {.lex_state = 1}, [114] = {.lex_state = 1}, [115] = {.lex_state = 1}, [116] = {.lex_state = 1}, - [117] = {.lex_state = 1}, - [118] = {.lex_state = 29, .external_lex_state = 3}, + [117] = {.lex_state = 30, .external_lex_state = 3}, + [118] = {.lex_state = 1}, [119] = {.lex_state = 1}, - [120] = {.lex_state = 1}, - [121] = {.lex_state = 29, .external_lex_state = 3}, + [120] = {.lex_state = 30, .external_lex_state = 3}, + [121] = {.lex_state = 1}, [122] = {.lex_state = 1}, - [123] = {.lex_state = 1}, - [124] = {.lex_state = 29, .external_lex_state = 3}, + [123] = {.lex_state = 30, .external_lex_state = 3}, + [124] = {.lex_state = 1}, [125] = {.lex_state = 1}, [126] = {.lex_state = 1}, [127] = {.lex_state = 1}, @@ -2840,7 +2838,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [132] = {.lex_state = 1}, [133] = {.lex_state = 1}, [134] = {.lex_state = 1}, - [135] = {.lex_state = 29, .external_lex_state = 3}, + [135] = {.lex_state = 30, .external_lex_state = 3}, [136] = {.lex_state = 1}, [137] = {.lex_state = 1}, [138] = {.lex_state = 1}, @@ -2848,145 +2846,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 1}, [141] = {.lex_state = 1}, [142] = {.lex_state = 1}, - [143] = {.lex_state = 1}, - [144] = {.lex_state = 29, .external_lex_state = 3}, - [145] = {.lex_state = 29}, - [146] = {.lex_state = 29, .external_lex_state = 3}, - [147] = {.lex_state = 29}, - [148] = {.lex_state = 29}, - [149] = {.lex_state = 29, .external_lex_state = 3}, - [150] = {.lex_state = 29, .external_lex_state = 3}, - [151] = {.lex_state = 29}, - [152] = {.lex_state = 29}, - [153] = {.lex_state = 29, .external_lex_state = 3}, - [154] = {.lex_state = 29, .external_lex_state = 3}, - [155] = {.lex_state = 29}, - [156] = {.lex_state = 29, .external_lex_state = 3}, - [157] = {.lex_state = 29}, - [158] = {.lex_state = 29, .external_lex_state = 3}, - [159] = {.lex_state = 29, .external_lex_state = 3}, - [160] = {.lex_state = 29, .external_lex_state = 3}, - [161] = {.lex_state = 29, .external_lex_state = 3}, - [162] = {.lex_state = 29, .external_lex_state = 3}, - [163] = {.lex_state = 29, .external_lex_state = 3}, - [164] = {.lex_state = 29, .external_lex_state = 3}, - [165] = {.lex_state = 29, .external_lex_state = 3}, - [166] = {.lex_state = 29, .external_lex_state = 3}, - [167] = {.lex_state = 29, .external_lex_state = 3}, - [168] = {.lex_state = 29, .external_lex_state = 3}, - [169] = {.lex_state = 29, .external_lex_state = 3}, - [170] = {.lex_state = 29, .external_lex_state = 3}, - [171] = {.lex_state = 29, .external_lex_state = 3}, - [172] = {.lex_state = 29, .external_lex_state = 3}, - [173] = {.lex_state = 29, .external_lex_state = 3}, - [174] = {.lex_state = 29, .external_lex_state = 3}, - [175] = {.lex_state = 29, .external_lex_state = 3}, - [176] = {.lex_state = 29, .external_lex_state = 3}, + [143] = {.lex_state = 30, .external_lex_state = 3}, + [144] = {.lex_state = 30}, + [145] = {.lex_state = 30, .external_lex_state = 3}, + [146] = {.lex_state = 30}, + [147] = {.lex_state = 30}, + [148] = {.lex_state = 30, .external_lex_state = 3}, + [149] = {.lex_state = 30, .external_lex_state = 3}, + [150] = {.lex_state = 30}, + [151] = {.lex_state = 30}, + [152] = {.lex_state = 30, .external_lex_state = 3}, + [153] = {.lex_state = 30, .external_lex_state = 3}, + [154] = {.lex_state = 30}, + [155] = {.lex_state = 30}, + [156] = {.lex_state = 30, .external_lex_state = 3}, + [157] = {.lex_state = 30, .external_lex_state = 3}, + [158] = {.lex_state = 30, .external_lex_state = 3}, + [159] = {.lex_state = 30, .external_lex_state = 3}, + [160] = {.lex_state = 30, .external_lex_state = 3}, + [161] = {.lex_state = 30, .external_lex_state = 3}, + [162] = {.lex_state = 30, .external_lex_state = 3}, + [163] = {.lex_state = 30, .external_lex_state = 3}, + [164] = {.lex_state = 30, .external_lex_state = 3}, + [165] = {.lex_state = 30, .external_lex_state = 3}, + [166] = {.lex_state = 30, .external_lex_state = 3}, + [167] = {.lex_state = 30, .external_lex_state = 3}, + [168] = {.lex_state = 30, .external_lex_state = 3}, + [169] = {.lex_state = 30, .external_lex_state = 3}, + [170] = {.lex_state = 30, .external_lex_state = 3}, + [171] = {.lex_state = 30, .external_lex_state = 3}, + [172] = {.lex_state = 30, .external_lex_state = 3}, + [173] = {.lex_state = 30, .external_lex_state = 3}, + [174] = {.lex_state = 30, .external_lex_state = 3}, + [175] = {.lex_state = 30, .external_lex_state = 3}, + [176] = {.lex_state = 0}, [177] = {.lex_state = 0}, [178] = {.lex_state = 0}, [179] = {.lex_state = 0}, [180] = {.lex_state = 0}, [181] = {.lex_state = 0}, [182] = {.lex_state = 0}, - [183] = {.lex_state = 0}, + [183] = {.lex_state = 30}, [184] = {.lex_state = 2, .external_lex_state = 2}, - [185] = {.lex_state = 29}, - [186] = {.lex_state = 29}, - [187] = {.lex_state = 2, .external_lex_state = 2}, - [188] = {.lex_state = 29}, + [185] = {.lex_state = 2, .external_lex_state = 2}, + [186] = {.lex_state = 30}, + [187] = {.lex_state = 30}, + [188] = {.lex_state = 0, .external_lex_state = 3}, [189] = {.lex_state = 0, .external_lex_state = 3}, [190] = {.lex_state = 0, .external_lex_state = 3}, [191] = {.lex_state = 0, .external_lex_state = 3}, [192] = {.lex_state = 0, .external_lex_state = 3}, [193] = {.lex_state = 0, .external_lex_state = 3}, [194] = {.lex_state = 0, .external_lex_state = 3}, - [195] = {.lex_state = 0, .external_lex_state = 3}, + [195] = {.lex_state = 0, .external_lex_state = 4}, [196] = {.lex_state = 0, .external_lex_state = 4}, [197] = {.lex_state = 0, .external_lex_state = 4}, [198] = {.lex_state = 0, .external_lex_state = 4}, [199] = {.lex_state = 0, .external_lex_state = 4}, [200] = {.lex_state = 0, .external_lex_state = 4}, [201] = {.lex_state = 0, .external_lex_state = 4}, - [202] = {.lex_state = 0, .external_lex_state = 4}, - [203] = {.lex_state = 4, .external_lex_state = 2}, - [204] = {.lex_state = 29}, - [205] = {.lex_state = 29}, - [206] = {.lex_state = 0}, - [207] = {.lex_state = 29}, + [202] = {.lex_state = 4, .external_lex_state = 2}, + [203] = {.lex_state = 30}, + [204] = {.lex_state = 30}, + [205] = {.lex_state = 0}, + [206] = {.lex_state = 30}, + [207] = {.lex_state = 0}, [208] = {.lex_state = 0}, - [209] = {.lex_state = 0}, - [210] = {.lex_state = 29}, - [211] = {.lex_state = 29, .external_lex_state = 2}, + [209] = {.lex_state = 30}, + [210] = {.lex_state = 30, .external_lex_state = 2}, + [211] = {.lex_state = 0}, [212] = {.lex_state = 0}, - [213] = {.lex_state = 0}, + [213] = {.lex_state = 30, .external_lex_state = 2}, [214] = {.lex_state = 0}, [215] = {.lex_state = 0}, [216] = {.lex_state = 0}, [217] = {.lex_state = 0}, - [218] = {.lex_state = 29, .external_lex_state = 2}, + [218] = {.lex_state = 0}, [219] = {.lex_state = 0}, [220] = {.lex_state = 0}, - [221] = {.lex_state = 0}, - [222] = {.lex_state = 29}, + [221] = {.lex_state = 30}, + [222] = {.lex_state = 0}, [223] = {.lex_state = 0}, [224] = {.lex_state = 0}, [225] = {.lex_state = 0}, [226] = {.lex_state = 0}, - [227] = {.lex_state = 0, .external_lex_state = 4}, - [228] = {.lex_state = 0}, + [227] = {.lex_state = 0}, + [228] = {.lex_state = 0, .external_lex_state = 4}, [229] = {.lex_state = 0}, [230] = {.lex_state = 0}, [231] = {.lex_state = 0}, - [232] = {.lex_state = 0}, - [233] = {.lex_state = 0, .external_lex_state = 4}, + [232] = {.lex_state = 0, .external_lex_state = 4}, + [233] = {.lex_state = 0}, [234] = {.lex_state = 0}, [235] = {.lex_state = 0}, [236] = {.lex_state = 0}, - [237] = {.lex_state = 0}, - [238] = {.lex_state = 0}, - [239] = {.lex_state = 29, .external_lex_state = 2}, - [240] = {.lex_state = 0, .external_lex_state = 5}, + [237] = {.lex_state = 0, .external_lex_state = 4}, + [238] = {.lex_state = 0, .external_lex_state = 3}, + [239] = {.lex_state = 0, .external_lex_state = 4}, + [240] = {.lex_state = 0, .external_lex_state = 3}, [241] = {.lex_state = 0, .external_lex_state = 3}, - [242] = {.lex_state = 0, .external_lex_state = 3}, - [243] = {.lex_state = 0}, - [244] = {.lex_state = 0, .external_lex_state = 6}, + [242] = {.lex_state = 0, .external_lex_state = 5}, + [243] = {.lex_state = 0, .external_lex_state = 6}, + [244] = {.lex_state = 0}, [245] = {.lex_state = 0}, - [246] = {.lex_state = 0, .external_lex_state = 4}, - [247] = {.lex_state = 0, .external_lex_state = 4}, - [248] = {.lex_state = 29}, - [249] = {.lex_state = 0, .external_lex_state = 3}, - [250] = {.lex_state = 0, .external_lex_state = 3}, - [251] = {.lex_state = 0}, - [252] = {.lex_state = 0, .external_lex_state = 3}, + [246] = {.lex_state = 0, .external_lex_state = 3}, + [247] = {.lex_state = 0}, + [248] = {.lex_state = 0, .external_lex_state = 4}, + [249] = {.lex_state = 30}, + [250] = {.lex_state = 0, .external_lex_state = 4}, + [251] = {.lex_state = 0, .external_lex_state = 3}, + [252] = {.lex_state = 0, .external_lex_state = 4}, [253] = {.lex_state = 0}, - [254] = {.lex_state = 29}, - [255] = {.lex_state = 29}, - [256] = {.lex_state = 0, .external_lex_state = 4}, - [257] = {.lex_state = 3}, - [258] = {.lex_state = 0}, + [254] = {.lex_state = 30}, + [255] = {.lex_state = 0}, + [256] = {.lex_state = 3}, + [257] = {.lex_state = 30}, + [258] = {.lex_state = 30, .external_lex_state = 2}, [259] = {.lex_state = 0, .external_lex_state = 4}, [260] = {.lex_state = 0, .external_lex_state = 6}, - [261] = {.lex_state = 0, .external_lex_state = 4}, - [262] = {.lex_state = 0, .external_lex_state = 4}, + [261] = {.lex_state = 0}, + [262] = {.lex_state = 0}, [263] = {.lex_state = 0}, [264] = {.lex_state = 0}, - [265] = {.lex_state = 2}, - [266] = {.lex_state = 29}, + [265] = {.lex_state = 0}, + [266] = {.lex_state = 0}, [267] = {.lex_state = 0}, [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, - [270] = {.lex_state = 2}, + [269] = {.lex_state = 2}, + [270] = {.lex_state = 0}, [271] = {.lex_state = 0}, - [272] = {.lex_state = 0}, - [273] = {.lex_state = 0}, - [274] = {.lex_state = 29}, + [272] = {.lex_state = 30}, + [273] = {.lex_state = 30}, + [274] = {.lex_state = 0}, [275] = {.lex_state = 0}, - [276] = {.lex_state = 0}, + [276] = {.lex_state = 2}, [277] = {.lex_state = 0}, [278] = {.lex_state = 0}, [279] = {.lex_state = 0}, - [280] = {.lex_state = 0}, - [281] = {.lex_state = 2}, + [280] = {.lex_state = 2}, + [281] = {.lex_state = 0}, [282] = {.lex_state = 0}, [283] = {.lex_state = 0}, [284] = {.lex_state = 0}, @@ -2994,8 +2992,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 0}, [287] = {.lex_state = 0}, [288] = {.lex_state = 0}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 29}, + [289] = {.lex_state = 30}, + [290] = {.lex_state = 0}, [291] = {.lex_state = 0}, [292] = {.lex_state = 0}, [293] = {.lex_state = 0, .external_lex_state = 3}, @@ -3003,20 +3001,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [295] = {.lex_state = 0}, [296] = {.lex_state = 0}, [297] = {.lex_state = 0}, - [298] = {.lex_state = 0}, + [298] = {.lex_state = 30}, [299] = {.lex_state = 0}, - [300] = {.lex_state = 29}, - [301] = {.lex_state = 29}, - [302] = {.lex_state = 0, .external_lex_state = 7}, - [303] = {.lex_state = 29}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 0, .external_lex_state = 3}, - [306] = {.lex_state = 29}, + [300] = {.lex_state = 30}, + [301] = {.lex_state = 0, .external_lex_state = 7}, + [302] = {.lex_state = 30}, + [303] = {.lex_state = 0, .external_lex_state = 3}, + [304] = {.lex_state = 30}, + [305] = {.lex_state = 0}, + [306] = {.lex_state = 0}, [307] = {.lex_state = 0}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 29}, + [308] = {.lex_state = 30}, + [309] = {.lex_state = 0}, [310] = {.lex_state = 0}, - [311] = {.lex_state = 0}, }; enum { @@ -3112,11 +3109,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_interpolation_end] = ACTIONS(1), }, [1] = { - [sym_config_file] = STATE(311), - [sym_body] = STATE(310), - [sym_attribute] = STATE(207), - [sym_block] = STATE(207), - [aux_sym_body_repeat1] = STATE(207), + [sym_config_file] = STATE(310), + [sym_body] = STATE(309), + [sym_attribute] = STATE(206), + [sym_block] = STATE(206), + [aux_sym_body_repeat1] = STATE(206), [sym_identifier] = ACTIONS(5), [sym_comment] = ACTIONS(3), }, @@ -3148,13 +3145,13 @@ static const uint16_t ts_small_parse_table[] = { sym__object_start, STATE(39), 1, sym_for_intro, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(167), 1, + STATE(166), 1, sym__object_end, - STATE(221), 1, + STATE(220), 1, sym_object_elem, - STATE(257), 1, + STATE(256), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3168,13 +3165,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3210,13 +3207,13 @@ static const uint16_t ts_small_parse_table[] = { sym__object_start, STATE(25), 1, sym_for_intro, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(130), 1, + STATE(131), 1, sym__object_end, - STATE(235), 1, + STATE(234), 1, sym_object_elem, - STATE(257), 1, + STATE(256), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3230,13 +3227,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3270,15 +3267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(4), 1, sym__object_start, - STATE(24), 1, + STATE(28), 1, sym_for_intro, - STATE(62), 1, + STATE(61), 1, sym__object_end, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(236), 1, + STATE(235), 1, sym_object_elem, - STATE(257), 1, + STATE(256), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3292,13 +3289,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3314,6 +3311,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3327,14 +3326,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(27), 1, sym__quoted_template_start, ACTIONS(33), 1, - sym_identifier, - ACTIONS(35), 1, anon_sym_RBRACK, STATE(4), 1, sym__object_start, STATE(43), 1, sym_for_intro, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(231), 1, sym_expression, @@ -3350,13 +3347,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3372,6 +3369,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3382,15 +3381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(37), 1, + ACTIONS(35), 1, anon_sym_RPAREN, STATE(4), 1, sym__object_start, - STATE(69), 1, + STATE(68), 1, sym__function_call_end, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(212), 1, sym_expression, @@ -3408,13 +3405,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3430,6 +3427,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3442,17 +3441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym_RBRACK, STATE(4), 1, sym__object_start, STATE(33), 1, sym_for_intro, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(229), 1, + STATE(227), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3466,13 +3463,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3488,6 +3485,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3498,19 +3497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(41), 1, + ACTIONS(39), 1, anon_sym_RPAREN, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(170), 1, + STATE(169), 1, sym__function_call_end, STATE(212), 1, sym_expression, - STATE(276), 1, + STATE(263), 1, sym_function_arguments, ACTIONS(17), 2, anon_sym_true, @@ -3524,13 +3521,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3546,6 +3543,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3558,15 +3557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_RBRACK, STATE(4), 1, sym__object_start, STATE(46), 1, sym_for_intro, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(224), 1, sym_expression, @@ -3582,13 +3579,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3604,6 +3601,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3614,19 +3613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym_RPAREN, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(132), 1, + STATE(133), 1, sym__function_call_end, STATE(212), 1, sym_expression, - STATE(264), 1, + STATE(266), 1, sym_function_arguments, ACTIONS(17), 2, anon_sym_true, @@ -3640,13 +3637,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3676,11 +3673,11 @@ static const uint16_t ts_small_parse_table[] = { sym__quoted_template_start, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(257), 1, + STATE(256), 1, sym_expression, - STATE(286), 1, + STATE(281), 1, sym_object_elem, ACTIONS(17), 2, anon_sym_true, @@ -3694,13 +3691,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3716,6 +3713,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3726,13 +3725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_RPAREN, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(215), 1, sym_expression, @@ -3748,13 +3745,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3770,6 +3767,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3780,15 +3779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(49), 1, + ACTIONS(47), 1, anon_sym_STAR, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(292), 1, + STATE(291), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3802,13 +3799,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3824,6 +3821,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3834,15 +3833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_STAR, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(278), 1, + STATE(264), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -3856,13 +3853,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3878,6 +3875,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3888,13 +3887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(53), 1, + ACTIONS(51), 1, anon_sym_RPAREN, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(215), 1, sym_expression, @@ -3910,13 +3907,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -3930,47 +3927,47 @@ static const uint16_t ts_small_parse_table[] = { [1108] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(59), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(63), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(71), 1, + ACTIONS(69), 1, sym_strip_marker, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__quoted_template_start, STATE(2), 1, sym__object_start, - STATE(153), 1, + STATE(152), 1, sym_quoted_template, - STATE(252), 1, + STATE(251), 1, sym_expression, - ACTIONS(63), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_DASH, anon_sym_BANG, - STATE(149), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(150), 2, + STATE(149), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(241), 2, + STATE(240), 2, sym_unary_operation, sym_binary_operation, - STATE(242), 2, + STATE(241), 2, sym_conditional, sym_operation, STATE(105), 7, @@ -3986,6 +3983,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -3996,15 +3995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - ACTIONS(75), 1, + ACTIONS(73), 1, anon_sym_STAR, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(279), 1, + STATE(265), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4018,13 +4015,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4040,6 +4037,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4050,13 +4049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(292), 1, + STATE(291), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4070,13 +4067,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4092,6 +4089,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4102,13 +4101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(277), 1, + STATE(262), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4122,13 +4119,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4144,6 +4141,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4154,13 +4153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(275), 1, + STATE(282), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4174,13 +4171,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4194,38 +4191,38 @@ static const uint16_t ts_small_parse_table[] = { [1469] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(206), 1, + STATE(205), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -4246,31 +4243,31 @@ static const uint16_t ts_small_parse_table[] = { [1540] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_EQ, - ACTIONS(99), 1, + ACTIONS(97), 1, anon_sym_LBRACK, - ACTIONS(101), 1, + ACTIONS(99), 1, anon_sym_DOT, - ACTIONS(107), 1, + ACTIONS(105), 1, anon_sym_SLASH, - ACTIONS(115), 1, + ACTIONS(113), 1, anon_sym_AMP_AMP, - ACTIONS(117), 1, + ACTIONS(115), 1, anon_sym_PIPE_PIPE, - ACTIONS(103), 2, + ACTIONS(101), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(105), 2, + ACTIONS(103), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(109), 2, + ACTIONS(107), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(111), 2, + ACTIONS(109), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(113), 2, + ACTIONS(111), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, STATE(59), 2, @@ -4280,7 +4277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, sym_splat, - ACTIONS(95), 10, + ACTIONS(93), 10, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -4294,38 +4291,90 @@ static const uint16_t ts_small_parse_table[] = { [1603] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(11), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(13), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(15), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(19), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(21), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(27), 1, + sym__quoted_template_start, + STATE(4), 1, + sym__object_start, + STATE(71), 1, + sym_quoted_template, + STATE(215), 1, + sym_expression, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(55), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(186), 2, + sym_unary_operation, + sym_binary_operation, + STATE(187), 2, + sym_conditional, + sym_operation, + STATE(22), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [1674] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + sym_identifier, + ACTIONS(79), 1, + anon_sym_LPAREN, + ACTIONS(81), 1, + sym_numeric_lit, + ACTIONS(85), 1, + sym_null_lit, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(213), 1, + STATE(211), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -4343,63 +4392,13 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_expr, sym_function_call, sym_template_expr, - [1674] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - STATE(4), 1, - sym__object_start, - STATE(73), 1, - sym_quoted_template, - STATE(265), 1, - sym_expression, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(25), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, - sym_tuple, - sym_object, - STATE(75), 2, - sym_bool_lit, - sym_string_lit, - STATE(185), 2, - sym_unary_operation, - sym_binary_operation, - STATE(188), 2, - sym_conditional, - sym_operation, - STATE(22), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, [1745] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4410,13 +4409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(270), 1, + STATE(276), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4430,13 +4427,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4452,6 +4449,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4462,13 +4461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(272), 1, + STATE(277), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4482,13 +4479,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4504,6 +4501,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4514,13 +4513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(278), 1, + STATE(264), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4534,13 +4531,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4552,62 +4549,12 @@ static const uint16_t ts_small_parse_table[] = { sym_function_call, sym_template_expr, [1958] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_numeric_lit, - ACTIONS(65), 1, - sym_null_lit, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(73), 1, - sym__quoted_template_start, - STATE(2), 1, - sym__object_start, - STATE(153), 1, - sym_quoted_template, - STATE(250), 1, - sym_expression, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(69), 2, - anon_sym_DASH, - anon_sym_BANG, - STATE(149), 2, - sym_tuple, - sym_object, - STATE(150), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(154), 2, - sym_bool_lit, - sym_string_lit, - STATE(241), 2, - sym_unary_operation, - sym_binary_operation, - STATE(242), 2, - sym_conditional, - sym_operation, - STATE(105), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, - [2029] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4618,13 +4565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(279), 1, + STATE(269), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4638,13 +4583,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, + sym_conditional, + sym_operation, + STATE(22), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [2029] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_LPAREN, + ACTIONS(15), 1, + sym_numeric_lit, + ACTIONS(19), 1, + sym_null_lit, + ACTIONS(21), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + sym__quoted_template_start, + STATE(4), 1, + sym__object_start, + STATE(71), 1, + sym_quoted_template, + STATE(265), 1, + sym_expression, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(25), 2, + anon_sym_DASH, + anon_sym_BANG, + STATE(55), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(186), 2, + sym_unary_operation, + sym_binary_operation, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4658,38 +4655,38 @@ static const uint16_t ts_small_parse_table[] = { [2100] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(209), 1, + STATE(207), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -4710,48 +4707,48 @@ static const uint16_t ts_small_parse_table[] = { [2171] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, + ACTIONS(55), 1, sym_identifier, - STATE(4), 1, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_numeric_lit, + ACTIONS(63), 1, + sym_null_lit, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + sym__quoted_template_start, + STATE(2), 1, sym__object_start, - STATE(73), 1, + STATE(152), 1, sym_quoted_template, - STATE(215), 1, + STATE(238), 1, sym_expression, - ACTIONS(17), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - ACTIONS(25), 2, + ACTIONS(67), 2, anon_sym_DASH, anon_sym_BANG, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(149), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(240), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(241), 2, sym_conditional, sym_operation, - STATE(22), 7, + STATE(105), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -4764,6 +4761,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4774,13 +4773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(273), 1, + STATE(271), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4794,13 +4791,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4814,38 +4811,38 @@ static const uint16_t ts_small_parse_table[] = { [2313] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(228), 1, + STATE(226), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -4866,45 +4863,45 @@ static const uint16_t ts_small_parse_table[] = { [2384] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(59), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(63), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__quoted_template_start, STATE(2), 1, sym__object_start, - STATE(153), 1, + STATE(152), 1, sym_quoted_template, - STATE(249), 1, + STATE(246), 1, sym_expression, - ACTIONS(63), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - ACTIONS(69), 2, + ACTIONS(67), 2, anon_sym_DASH, anon_sym_BANG, - STATE(149), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(150), 2, + STATE(149), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(241), 2, + STATE(240), 2, sym_unary_operation, sym_binary_operation, - STATE(242), 2, + STATE(241), 2, sym_conditional, sym_operation, STATE(105), 7, @@ -4920,6 +4917,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4930,13 +4929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(258), 1, + STATE(261), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -4950,13 +4947,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -4972,6 +4969,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -4982,13 +4981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(289), 1, + STATE(288), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5002,13 +4999,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5022,38 +5019,38 @@ static const uint16_t ts_small_parse_table[] = { [2597] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, STATE(208), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -5076,6 +5073,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5086,13 +5085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(222), 1, + STATE(221), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5106,13 +5103,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5128,6 +5125,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5138,13 +5137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(281), 1, + STATE(280), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5158,13 +5155,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5180,6 +5177,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5190,13 +5189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(291), 1, + STATE(290), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5210,13 +5207,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5232,6 +5229,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5242,13 +5241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(186), 1, + STATE(183), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5262,13 +5259,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5284,6 +5281,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5294,13 +5293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(243), 1, + STATE(244), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5314,13 +5311,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5334,38 +5331,38 @@ static const uint16_t ts_small_parse_table[] = { [3023] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(220), 1, + STATE(219), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -5388,6 +5385,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5398,13 +5397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, - STATE(280), 1, + STATE(279), 1, sym_expression, ACTIONS(17), 2, anon_sym_true, @@ -5418,13 +5415,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5440,6 +5437,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -5450,11 +5449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, STATE(287), 1, sym_expression, @@ -5470,13 +5467,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(185), 2, + STATE(186), 2, sym_unary_operation, sym_binary_operation, - STATE(188), 2, + STATE(187), 2, sym_conditional, sym_operation, STATE(22), 7, @@ -5490,38 +5487,38 @@ static const uint16_t ts_small_parse_table[] = { [3236] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - STATE(223), 1, + STATE(222), 1, sym_expression, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(91), 2, + ACTIONS(89), 2, anon_sym_DASH, anon_sym_BANG, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -5542,20 +5539,20 @@ static const uint16_t ts_small_parse_table[] = { [3307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(121), 1, anon_sym_LBRACK, - ACTIONS(126), 1, + ACTIONS(124), 1, anon_sym_DOT, STATE(49), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(121), 4, + ACTIONS(119), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(119), 20, + ACTIONS(117), 20, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5579,20 +5576,20 @@ static const uint16_t ts_small_parse_table[] = { [3350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(131), 1, anon_sym_LBRACK, - ACTIONS(136), 1, + ACTIONS(134), 1, anon_sym_DOT, STATE(48), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(131), 4, + ACTIONS(129), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(129), 20, + ACTIONS(127), 20, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5616,20 +5613,20 @@ static const uint16_t ts_small_parse_table[] = { [3393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(143), 1, + ACTIONS(141), 1, anon_sym_LBRACK, - ACTIONS(146), 1, + ACTIONS(144), 1, anon_sym_DOT, STATE(48), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(141), 4, + ACTIONS(139), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(139), 20, + ACTIONS(137), 20, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5653,17 +5650,17 @@ static const uint16_t ts_small_parse_table[] = { [3436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_DOT, STATE(53), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(151), 4, + ACTIONS(149), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(149), 21, + ACTIONS(147), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5688,17 +5685,17 @@ static const uint16_t ts_small_parse_table[] = { [3476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(160), 1, + ACTIONS(158), 1, anon_sym_DOT, STATE(50), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(158), 4, + ACTIONS(156), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(156), 21, + ACTIONS(154), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5723,17 +5720,17 @@ static const uint16_t ts_small_parse_table[] = { [3516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(167), 1, + ACTIONS(165), 1, anon_sym_LPAREN, STATE(6), 1, sym__function_call_start, - ACTIONS(165), 5, + ACTIONS(163), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(163), 21, + ACTIONS(161), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5758,17 +5755,17 @@ static const uint16_t ts_small_parse_table[] = { [3556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(173), 1, + ACTIONS(171), 1, anon_sym_DOT, STATE(53), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(171), 4, + ACTIONS(169), 4, anon_sym_EQ, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(169), 21, + ACTIONS(167), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5793,13 +5790,13 @@ static const uint16_t ts_small_parse_table[] = { [3596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 5, + ACTIONS(176), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(176), 21, + ACTIONS(174), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5824,13 +5821,13 @@ static const uint16_t ts_small_parse_table[] = { [3630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(182), 5, + ACTIONS(180), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(180), 21, + ACTIONS(178), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5855,13 +5852,13 @@ static const uint16_t ts_small_parse_table[] = { [3664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(186), 5, + ACTIONS(184), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(184), 21, + ACTIONS(182), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5886,13 +5883,13 @@ static const uint16_t ts_small_parse_table[] = { [3698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 5, + ACTIONS(188), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(188), 21, + ACTIONS(186), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5917,13 +5914,13 @@ static const uint16_t ts_small_parse_table[] = { [3732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(194), 5, + ACTIONS(192), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(192), 21, + ACTIONS(190), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5948,13 +5945,13 @@ static const uint16_t ts_small_parse_table[] = { [3766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(198), 5, + ACTIONS(196), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 21, + ACTIONS(194), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -5979,13 +5976,13 @@ static const uint16_t ts_small_parse_table[] = { [3800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(202), 5, + ACTIONS(200), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(200), 21, + ACTIONS(198), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6010,13 +6007,13 @@ static const uint16_t ts_small_parse_table[] = { [3834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 5, + ACTIONS(204), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 21, + ACTIONS(202), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6041,13 +6038,13 @@ static const uint16_t ts_small_parse_table[] = { [3868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(210), 5, + ACTIONS(208), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(208), 21, + ACTIONS(206), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6072,13 +6069,13 @@ static const uint16_t ts_small_parse_table[] = { [3902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 5, + ACTIONS(212), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(212), 21, + ACTIONS(210), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6103,13 +6100,13 @@ static const uint16_t ts_small_parse_table[] = { [3936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 5, + ACTIONS(216), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(216), 21, + ACTIONS(214), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6134,13 +6131,13 @@ static const uint16_t ts_small_parse_table[] = { [3970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 5, + ACTIONS(220), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(220), 21, + ACTIONS(218), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6165,13 +6162,13 @@ static const uint16_t ts_small_parse_table[] = { [4004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(226), 5, + ACTIONS(224), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(224), 21, + ACTIONS(222), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6196,13 +6193,13 @@ static const uint16_t ts_small_parse_table[] = { [4038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 5, + ACTIONS(228), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(228), 21, + ACTIONS(226), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6227,13 +6224,13 @@ static const uint16_t ts_small_parse_table[] = { [4072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(234), 5, + ACTIONS(232), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(232), 21, + ACTIONS(230), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6258,13 +6255,13 @@ static const uint16_t ts_small_parse_table[] = { [4106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(238), 5, + ACTIONS(236), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(236), 21, + ACTIONS(234), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6289,13 +6286,13 @@ static const uint16_t ts_small_parse_table[] = { [4140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(242), 5, + ACTIONS(240), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(240), 21, + ACTIONS(238), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6320,13 +6317,13 @@ static const uint16_t ts_small_parse_table[] = { [4174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 5, + ACTIONS(244), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(244), 21, + ACTIONS(242), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6351,13 +6348,13 @@ static const uint16_t ts_small_parse_table[] = { [4208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(250), 5, + ACTIONS(248), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(248), 21, + ACTIONS(246), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6382,13 +6379,13 @@ static const uint16_t ts_small_parse_table[] = { [4242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(254), 5, + ACTIONS(252), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(252), 21, + ACTIONS(250), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6413,13 +6410,13 @@ static const uint16_t ts_small_parse_table[] = { [4276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 5, + ACTIONS(256), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(256), 21, + ACTIONS(254), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6444,13 +6441,13 @@ static const uint16_t ts_small_parse_table[] = { [4310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 5, + ACTIONS(260), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(260), 21, + ACTIONS(258), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6475,13 +6472,13 @@ static const uint16_t ts_small_parse_table[] = { [4344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(266), 5, + ACTIONS(264), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(264), 21, + ACTIONS(262), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6506,13 +6503,13 @@ static const uint16_t ts_small_parse_table[] = { [4378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 5, + ACTIONS(268), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(268), 21, + ACTIONS(266), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6537,13 +6534,13 @@ static const uint16_t ts_small_parse_table[] = { [4412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 5, + ACTIONS(272), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(272), 21, + ACTIONS(270), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6568,13 +6565,13 @@ static const uint16_t ts_small_parse_table[] = { [4446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 5, + ACTIONS(276), 5, anon_sym_EQ, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(276), 21, + ACTIONS(274), 21, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, @@ -6599,39 +6596,39 @@ static const uint16_t ts_small_parse_table[] = { [4480] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(280), 1, + ACTIONS(278), 1, anon_sym_LBRACK, - ACTIONS(282), 1, + ACTIONS(280), 1, anon_sym_DOT, - ACTIONS(288), 1, + ACTIONS(286), 1, anon_sym_SLASH, - ACTIONS(296), 1, + ACTIONS(294), 1, anon_sym_AMP_AMP, - ACTIONS(298), 1, + ACTIONS(296), 1, anon_sym_PIPE_PIPE, - ACTIONS(284), 2, + ACTIONS(282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(286), 2, + ACTIONS(284), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(290), 2, + ACTIONS(288), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(292), 2, + ACTIONS(290), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(294), 2, + ACTIONS(292), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(129), 2, + STATE(130), 2, sym_attr_splat, sym_full_splat, - STATE(128), 3, + STATE(129), 3, sym_index, sym_get_attr, sym_splat, - ACTIONS(95), 5, + ACTIONS(93), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, @@ -6640,37 +6637,37 @@ static const uint16_t ts_small_parse_table[] = { [4535] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, + ACTIONS(55), 1, sym_identifier, - STATE(4), 1, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_numeric_lit, + ACTIONS(63), 1, + sym_null_lit, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + sym__quoted_template_start, + STATE(2), 1, sym__object_start, - STATE(73), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(17), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(149), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(148), 7, + STATE(192), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6683,6 +6680,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -6693,11 +6692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, ACTIONS(17), 2, anon_sym_true, @@ -6708,10 +6705,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(147), 7, + STATE(150), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6722,37 +6719,37 @@ static const uint16_t ts_small_parse_table[] = { [4647] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, + ACTIONS(55), 1, sym_identifier, - STATE(4), 1, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_numeric_lit, + ACTIONS(63), 1, + sym_null_lit, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + sym__quoted_template_start, + STATE(2), 1, sym__object_start, - STATE(73), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(17), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(149), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(155), 7, + STATE(194), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6763,37 +6760,37 @@ static const uint16_t ts_small_parse_table[] = { [4703] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(59), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(63), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__quoted_template_start, STATE(2), 1, sym__object_start, - STATE(153), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(150), 2, + STATE(149), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(189), 7, + STATE(188), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6804,37 +6801,37 @@ static const uint16_t ts_small_parse_table[] = { [4759] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(91), 1, sym__quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym__object_start, - STATE(153), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym_tuple, - sym_object, - STATE(150), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(154), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, - STATE(191), 7, + STATE(121), 2, + sym_tuple, + sym_object, + STATE(125), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(178), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6845,37 +6842,37 @@ static const uint16_t ts_small_parse_table[] = { [4815] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(11), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(13), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(15), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(19), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(21), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(27), 1, sym__quoted_template_start, - STATE(3), 1, + STATE(4), 1, sym__object_start, - STATE(113), 1, + STATE(71), 1, sym_quoted_template, - ACTIONS(85), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, - sym_bool_lit, - sym_string_lit, - STATE(125), 2, + STATE(55), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(180), 7, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(151), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6888,6 +6885,8 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, ACTIONS(13), 1, anon_sym_LPAREN, ACTIONS(15), 1, @@ -6898,11 +6897,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(27), 1, sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, STATE(4), 1, sym__object_start, - STATE(73), 1, + STATE(71), 1, sym_quoted_template, ACTIONS(17), 2, anon_sym_true, @@ -6913,10 +6910,10 @@ static const uint16_t ts_small_parse_table[] = { STATE(74), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(157), 7, + STATE(144), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6927,37 +6924,37 @@ static const uint16_t ts_small_parse_table[] = { [4927] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, + ACTIONS(55), 1, sym_identifier, - STATE(4), 1, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_numeric_lit, + ACTIONS(63), 1, + sym_null_lit, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + sym__quoted_template_start, + STATE(2), 1, sym__object_start, - STATE(73), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(17), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(75), 2, + STATE(149), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(151), 7, + STATE(191), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -6968,37 +6965,37 @@ static const uint16_t ts_small_parse_table[] = { [4983] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(91), 1, sym__quoted_template_start, - STATE(2), 1, + STATE(3), 1, sym__object_start, - STATE(153), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym_tuple, - sym_object, - STATE(150), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(154), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, - STATE(193), 7, + STATE(121), 2, + sym_tuple, + sym_object, + STATE(125), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(177), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7009,37 +7006,37 @@ static const uint16_t ts_small_parse_table[] = { [5039] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(179), 7, + STATE(180), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7050,33 +7047,33 @@ static const uint16_t ts_small_parse_table[] = { [5095] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -7091,37 +7088,37 @@ static const uint16_t ts_small_parse_table[] = { [5151] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(177), 7, + STATE(176), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7132,33 +7129,238 @@ static const uint16_t ts_small_parse_table[] = { [5207] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(75), 1, anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(77), 1, sym_identifier, - ACTIONS(81), 1, + ACTIONS(79), 1, anon_sym_LPAREN, - ACTIONS(83), 1, + ACTIONS(81), 1, sym_numeric_lit, - ACTIONS(87), 1, + ACTIONS(85), 1, sym_null_lit, - ACTIONS(89), 1, + ACTIONS(87), 1, anon_sym_LBRACK, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__quoted_template_start, STATE(3), 1, sym__object_start, - STATE(113), 1, + STATE(126), 1, sym_quoted_template, - ACTIONS(85), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, + STATE(118), 2, sym_bool_lit, sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, + STATE(125), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(179), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [5263] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_LPAREN, + ACTIONS(15), 1, + sym_numeric_lit, + ACTIONS(19), 1, + sym_null_lit, + ACTIONS(21), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + sym__quoted_template_start, + STATE(4), 1, + sym__object_start, + STATE(71), 1, + sym_quoted_template, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(55), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(155), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [5319] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_LPAREN, + ACTIONS(15), 1, + sym_numeric_lit, + ACTIONS(19), 1, + sym_null_lit, + ACTIONS(21), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + sym__quoted_template_start, + STATE(4), 1, + sym__object_start, + STATE(71), 1, + sym_quoted_template, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(55), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(154), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [5375] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_LBRACE, + ACTIONS(55), 1, + sym_identifier, + ACTIONS(57), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + sym_numeric_lit, + ACTIONS(63), 1, + sym_null_lit, + ACTIONS(65), 1, + anon_sym_LBRACK, + ACTIONS(71), 1, + sym__quoted_template_start, + STATE(2), 1, + sym__object_start, + STATE(152), 1, + sym_quoted_template, + ACTIONS(61), 2, + anon_sym_true, + anon_sym_false, + STATE(148), 2, + sym_tuple, + sym_object, + STATE(149), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(153), 2, + sym_bool_lit, + sym_string_lit, + STATE(190), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [5431] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(11), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_LPAREN, + ACTIONS(15), 1, + sym_numeric_lit, + ACTIONS(19), 1, + sym_null_lit, + ACTIONS(21), 1, + anon_sym_LBRACK, + ACTIONS(27), 1, + sym__quoted_template_start, + STATE(4), 1, + sym__object_start, + STATE(71), 1, + sym_quoted_template, + ACTIONS(17), 2, + anon_sym_true, + anon_sym_false, + STATE(55), 2, + sym_for_tuple_expr, + sym_for_object_expr, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, + sym_bool_lit, + sym_string_lit, + STATE(147), 7, + sym__expr_term, + sym_literal_value, + sym_collection_value, + sym_for_expr, + sym_variable_expr, + sym_function_call, + sym_template_expr, + [5487] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_LBRACE, + ACTIONS(77), 1, + sym_identifier, + ACTIONS(79), 1, + anon_sym_LPAREN, + ACTIONS(81), 1, + sym_numeric_lit, + ACTIONS(85), 1, + sym_null_lit, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(91), 1, + sym__quoted_template_start, + STATE(3), 1, + sym__object_start, + STATE(126), 1, + sym_quoted_template, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + STATE(118), 2, + sym_bool_lit, + sym_string_lit, + STATE(121), 2, + sym_tuple, + sym_object, STATE(125), 2, sym_for_tuple_expr, sym_for_object_expr, @@ -7170,245 +7372,40 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_expr, sym_function_call, sym_template_expr, - [5263] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - sym_numeric_lit, - ACTIONS(87), 1, - sym_null_lit, - ACTIONS(89), 1, - anon_sym_LBRACK, - ACTIONS(93), 1, - sym__quoted_template_start, - STATE(3), 1, - sym__object_start, - STATE(113), 1, - sym_quoted_template, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, - sym_bool_lit, - sym_string_lit, - STATE(125), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(183), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, - [5319] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, - sym_identifier, - ACTIONS(81), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - sym_numeric_lit, - ACTIONS(87), 1, - sym_null_lit, - ACTIONS(89), 1, - anon_sym_LBRACK, - ACTIONS(93), 1, - sym__quoted_template_start, - STATE(3), 1, - sym__object_start, - STATE(113), 1, - sym_quoted_template, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(114), 2, - sym_tuple, - sym_object, - STATE(119), 2, - sym_bool_lit, - sym_string_lit, - STATE(125), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(178), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, - [5375] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - STATE(4), 1, - sym__object_start, - STATE(73), 1, - sym_quoted_template, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, - sym_tuple, - sym_object, - STATE(75), 2, - sym_bool_lit, - sym_string_lit, - STATE(152), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, - [5431] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - sym_identifier, - ACTIONS(59), 1, - anon_sym_LPAREN, - ACTIONS(61), 1, - sym_numeric_lit, - ACTIONS(65), 1, - sym_null_lit, - ACTIONS(67), 1, - anon_sym_LBRACK, - ACTIONS(73), 1, - sym__quoted_template_start, - STATE(2), 1, - sym__object_start, - STATE(153), 1, - sym_quoted_template, - ACTIONS(63), 2, - anon_sym_true, - anon_sym_false, - STATE(149), 2, - sym_tuple, - sym_object, - STATE(150), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(154), 2, - sym_bool_lit, - sym_string_lit, - STATE(190), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, - [5487] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(13), 1, - anon_sym_LPAREN, - ACTIONS(15), 1, - sym_numeric_lit, - ACTIONS(19), 1, - sym_null_lit, - ACTIONS(21), 1, - anon_sym_LBRACK, - ACTIONS(27), 1, - sym__quoted_template_start, - ACTIONS(33), 1, - sym_identifier, - STATE(4), 1, - sym__object_start, - STATE(73), 1, - sym_quoted_template, - ACTIONS(17), 2, - anon_sym_true, - anon_sym_false, - STATE(55), 2, - sym_for_tuple_expr, - sym_for_object_expr, - STATE(74), 2, - sym_tuple, - sym_object, - STATE(75), 2, - sym_bool_lit, - sym_string_lit, - STATE(145), 7, - sym__expr_term, - sym_literal_value, - sym_collection_value, - sym_for_expr, - sym_variable_expr, - sym_function_call, - sym_template_expr, [5543] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(59), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(63), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__quoted_template_start, STATE(2), 1, sym__object_start, - STATE(153), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(150), 2, + STATE(149), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(194), 7, + STATE(189), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7419,37 +7416,37 @@ static const uint16_t ts_small_parse_table[] = { [5599] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(53), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(59), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(63), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__quoted_template_start, STATE(2), 1, sym__object_start, - STATE(153), 1, + STATE(152), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(61), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, + STATE(148), 2, sym_tuple, sym_object, - STATE(150), 2, + STATE(149), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(153), 2, sym_bool_lit, sym_string_lit, - STATE(192), 7, + STATE(193), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7460,37 +7457,37 @@ static const uint16_t ts_small_parse_table[] = { [5655] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11), 1, sym_identifier, - ACTIONS(59), 1, + ACTIONS(13), 1, anon_sym_LPAREN, - ACTIONS(61), 1, + ACTIONS(15), 1, sym_numeric_lit, - ACTIONS(65), 1, + ACTIONS(19), 1, sym_null_lit, - ACTIONS(67), 1, + ACTIONS(21), 1, anon_sym_LBRACK, - ACTIONS(73), 1, + ACTIONS(27), 1, sym__quoted_template_start, - STATE(2), 1, + STATE(4), 1, sym__object_start, - STATE(153), 1, + STATE(71), 1, sym_quoted_template, - ACTIONS(63), 2, + ACTIONS(17), 2, anon_sym_true, anon_sym_false, - STATE(149), 2, - sym_tuple, - sym_object, - STATE(150), 2, + STATE(55), 2, sym_for_tuple_expr, sym_for_object_expr, - STATE(154), 2, + STATE(74), 2, + sym_tuple, + sym_object, + STATE(79), 2, sym_bool_lit, sym_string_lit, - STATE(195), 7, + STATE(146), 7, sym__expr_term, sym_literal_value, sym_collection_value, @@ -7501,19 +7498,19 @@ static const uint16_t ts_small_parse_table[] = { [5711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(300), 1, + ACTIONS(298), 1, anon_sym_LBRACK, - ACTIONS(303), 1, + ACTIONS(301), 1, anon_sym_DOT, - ACTIONS(141), 3, + ACTIONS(139), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(103), 3, + STATE(104), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(139), 15, + ACTIONS(137), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_STAR, @@ -7532,19 +7529,19 @@ static const uint16_t ts_small_parse_table[] = { [5748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(306), 1, + ACTIONS(304), 1, anon_sym_LBRACK, - ACTIONS(309), 1, + ACTIONS(307), 1, anon_sym_DOT, - ACTIONS(131), 3, + ACTIONS(119), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(103), 3, + STATE(102), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(129), 15, + ACTIONS(117), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_STAR, @@ -7563,19 +7560,19 @@ static const uint16_t ts_small_parse_table[] = { [5785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, + ACTIONS(310), 1, anon_sym_LBRACK, - ACTIONS(315), 1, + ACTIONS(313), 1, anon_sym_DOT, - ACTIONS(121), 3, + ACTIONS(129), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(102), 3, + STATE(104), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(119), 15, + ACTIONS(127), 15, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_STAR, @@ -7594,55 +7591,55 @@ static const uint16_t ts_small_parse_table[] = { [5822] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(318), 1, + ACTIONS(316), 1, anon_sym_LBRACK, - ACTIONS(320), 1, + ACTIONS(318), 1, anon_sym_DOT, - ACTIONS(326), 1, + ACTIONS(324), 1, anon_sym_SLASH, - ACTIONS(334), 1, + ACTIONS(332), 1, anon_sym_AMP_AMP, - ACTIONS(336), 1, + ACTIONS(334), 1, anon_sym_PIPE_PIPE, - ACTIONS(322), 2, + ACTIONS(320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(324), 2, + ACTIONS(322), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(328), 2, + ACTIONS(326), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(330), 2, + ACTIONS(328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(332), 2, + ACTIONS(330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(166), 2, + STATE(165), 2, sym_attr_splat, sym_full_splat, - ACTIONS(95), 3, + ACTIONS(93), 3, sym__template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - STATE(165), 3, + STATE(164), 3, sym_index, sym_get_attr, sym_splat, [5875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(338), 1, + ACTIONS(336), 1, anon_sym_DOT, STATE(107), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(151), 3, + ACTIONS(149), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(149), 16, + ACTIONS(147), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7662,16 +7659,16 @@ static const uint16_t ts_small_parse_table[] = { [5909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(341), 1, + ACTIONS(339), 1, anon_sym_DOT, STATE(107), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(171), 3, + ACTIONS(169), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(169), 16, + ACTIONS(167), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7691,16 +7688,16 @@ static const uint16_t ts_small_parse_table[] = { [5943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(344), 1, - anon_sym_LPAREN, - STATE(10), 1, - sym__function_call_start, - ACTIONS(165), 4, + ACTIONS(342), 1, anon_sym_DOT, + STATE(106), 2, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(156), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(163), 16, + ACTIONS(154), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7720,16 +7717,16 @@ static const uint16_t ts_small_parse_table[] = { [5977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(346), 1, + ACTIONS(345), 1, + anon_sym_LPAREN, + STATE(10), 1, + sym__function_call_start, + ACTIONS(163), 4, anon_sym_DOT, - STATE(106), 2, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(158), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(156), 16, + ACTIONS(161), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7749,19 +7746,19 @@ static const uint16_t ts_small_parse_table[] = { [6011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(349), 1, + ACTIONS(347), 1, anon_sym_LBRACK, - ACTIONS(352), 1, + ACTIONS(350), 1, anon_sym_DOT, - ACTIONS(121), 3, + ACTIONS(119), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(111), 3, + STATE(112), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(119), 13, + ACTIONS(117), 13, sym__template_interpolation_end, anon_sym_STAR, anon_sym_QMARK, @@ -7778,19 +7775,19 @@ static const uint16_t ts_small_parse_table[] = { [6046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(355), 1, + ACTIONS(353), 1, anon_sym_LBRACK, - ACTIONS(358), 1, + ACTIONS(356), 1, anon_sym_DOT, - ACTIONS(141), 3, + ACTIONS(129), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(112), 3, + STATE(111), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(139), 13, + ACTIONS(127), 13, sym__template_interpolation_end, anon_sym_STAR, anon_sym_QMARK, @@ -7807,19 +7804,19 @@ static const uint16_t ts_small_parse_table[] = { [6081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(359), 1, anon_sym_LBRACK, - ACTIONS(364), 1, + ACTIONS(362), 1, anon_sym_DOT, - ACTIONS(131), 3, + ACTIONS(139), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - STATE(112), 3, + STATE(111), 3, sym_index, sym_get_attr, aux_sym_full_splat_repeat1, - ACTIONS(129), 13, + ACTIONS(137), 13, sym__template_interpolation_end, anon_sym_STAR, anon_sym_QMARK, @@ -7836,12 +7833,12 @@ static const uint16_t ts_small_parse_table[] = { [6116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(254), 4, + ACTIONS(248), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(252), 16, + ACTIONS(246), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7861,12 +7858,12 @@ static const uint16_t ts_small_parse_table[] = { [6144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 4, + ACTIONS(228), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(256), 16, + ACTIONS(226), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7886,12 +7883,12 @@ static const uint16_t ts_small_parse_table[] = { [6172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(234), 4, + ACTIONS(264), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(232), 16, + ACTIONS(262), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7911,12 +7908,12 @@ static const uint16_t ts_small_parse_table[] = { [6200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(274), 4, + ACTIONS(268), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(272), 16, + ACTIONS(266), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -7933,44 +7930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6228] = 3, + [6228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 4, + ACTIONS(365), 1, anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(268), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [6256] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(367), 1, - anon_sym_DOT, - STATE(118), 2, + STATE(117), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(171), 3, + ACTIONS(169), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(169), 14, + ACTIONS(167), 14, sym__template_interpolation_end, anon_sym_LBRACK, anon_sym_STAR, @@ -7985,15 +7957,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, + [6260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 4, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(274), 16, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, [6288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 4, + ACTIONS(260), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(260), 16, + ACTIONS(258), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8010,44 +8007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6316] = 3, + [6316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(266), 4, + ACTIONS(368), 1, anon_sym_DOT, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [6344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - anon_sym_DOT, - STATE(118), 2, + STATE(117), 2, sym_get_attr, aux_sym_attr_splat_repeat1, - ACTIONS(151), 3, + ACTIONS(149), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(149), 14, + ACTIONS(147), 14, sym__template_interpolation_end, anon_sym_LBRACK, anon_sym_STAR, @@ -8062,44 +8034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [6376] = 7, + [6348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(167), 1, - anon_sym_LPAREN, - ACTIONS(373), 1, - anon_sym_EQ, - ACTIONS(376), 1, - anon_sym_COLON, - STATE(6), 1, - sym__function_call_start, - ACTIONS(165), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(163), 13, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [6412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(242), 4, + ACTIONS(256), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(240), 16, + ACTIONS(254), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8116,19 +8059,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6440] = 5, + [6376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(236), 4, anon_sym_DOT, - STATE(121), 2, - sym_get_attr, - aux_sym_attr_splat_repeat1, - ACTIONS(158), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(156), 14, + ACTIONS(234), 16, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [6404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(371), 1, + anon_sym_DOT, + STATE(120), 2, + sym_get_attr, + aux_sym_attr_splat_repeat1, + ACTIONS(156), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(154), 14, sym__template_interpolation_end, anon_sym_LBRACK, anon_sym_STAR, @@ -8143,15 +8111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [6472] = 3, + [6436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(182), 4, + ACTIONS(216), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(180), 16, + ACTIONS(214), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8168,15 +8136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6500] = 3, + [6464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(250), 4, + ACTIONS(180), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(248), 16, + ACTIONS(178), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8193,15 +8161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6528] = 3, + [6492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(190), 4, + ACTIONS(244), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(188), 16, + ACTIONS(242), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8218,15 +8186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6556] = 3, + [6520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(194), 4, + ACTIONS(240), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(192), 16, + ACTIONS(238), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8243,15 +8211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6584] = 3, + [6548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(198), 4, + ACTIONS(188), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(196), 16, + ACTIONS(186), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8268,15 +8236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6612] = 3, + [6576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(210), 4, + ACTIONS(192), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(208), 16, + ACTIONS(190), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8293,15 +8261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6640] = 3, + [6604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(230), 4, + ACTIONS(196), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(228), 16, + ACTIONS(194), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8318,15 +8286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6668] = 3, + [6632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(238), 4, + ACTIONS(204), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(236), 16, + ACTIONS(202), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8343,15 +8311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6696] = 3, + [6660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(246), 4, + ACTIONS(224), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(244), 16, + ACTIONS(222), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8368,15 +8336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6724] = 3, + [6688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(178), 4, + ACTIONS(232), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(176), 16, + ACTIONS(230), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8393,18 +8361,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6752] = 5, + [6716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(382), 1, + ACTIONS(176), 4, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(174), 16, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [6744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(374), 1, anon_sym_LPAREN, STATE(8), 1, sym__function_call_start, - ACTIONS(165), 3, + ACTIONS(163), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(163), 15, + ACTIONS(161), 15, sym__template_interpolation_end, anon_sym_LBRACK, anon_sym_DOT, @@ -8420,15 +8413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [6784] = 3, + [6776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 4, + ACTIONS(272), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(276), 16, + ACTIONS(270), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8445,15 +8438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6812] = 3, + [6804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(226), 4, + ACTIONS(252), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(224), 16, + ACTIONS(250), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8470,15 +8463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6840] = 3, + [6832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(218), 4, + ACTIONS(220), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(216), 16, + ACTIONS(218), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8495,15 +8488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6868] = 3, + [6860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(214), 4, + ACTIONS(212), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(212), 16, + ACTIONS(210), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8520,15 +8513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6896] = 3, + [6888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 4, + ACTIONS(208), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(204), 16, + ACTIONS(206), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8545,15 +8538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6924] = 3, + [6916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(202), 4, + ACTIONS(200), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(200), 16, + ACTIONS(198), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8570,15 +8563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6952] = 3, + [6944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(186), 4, + ACTIONS(184), 4, anon_sym_DOT, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(184), 16, + ACTIONS(182), 16, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -8595,39 +8588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [6980] = 3, + [6972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(222), 4, - anon_sym_DOT, + ACTIONS(240), 3, anon_sym_SLASH, anon_sym_GT, anon_sym_LT, - ACTIONS(220), 16, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [7008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(190), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(188), 15, + ACTIONS(238), 15, sym__template_interpolation_end, anon_sym_LBRACK, anon_sym_DOT, @@ -8643,14 +8611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, sym_strip_marker, - [7034] = 7, + [6998] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, anon_sym_DOT, - ACTIONS(386), 1, + ACTIONS(378), 1, anon_sym_EQ, STATE(59), 2, sym_attr_splat, @@ -8659,6 +8627,899 @@ static const uint16_t ts_small_parse_table[] = { sym_index, sym_get_attr, sym_splat, + ACTIONS(376), 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, + [7032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(228), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(226), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7058] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(382), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(380), 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, + [7092] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(378), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 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, + [7126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(256), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(254), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(180), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(178), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(378), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 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, + [7212] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(378), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 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, + [7246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(244), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(242), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(276), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(274), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7298] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(378), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 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, + [7332] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(97), 1, + anon_sym_LBRACK, + ACTIONS(99), 1, + anon_sym_DOT, + ACTIONS(378), 1, + anon_sym_EQ, + STATE(59), 2, + sym_attr_splat, + sym_full_splat, + STATE(58), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 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, + [7366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(188), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(186), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(236), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(234), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(258), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(268), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(266), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(264), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(262), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(216), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(214), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(184), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(182), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(200), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(198), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(192), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(190), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(196), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(194), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(204), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(202), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(208), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(206), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(224), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(222), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(232), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(230), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(212), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(210), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(176), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(174), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(248), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(246), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(270), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(220), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(218), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(252), 3, + anon_sym_SLASH, + anon_sym_GT, + anon_sym_LT, + ACTIONS(250), 15, + sym__template_interpolation_end, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_PLUS, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + sym_strip_marker, + [7886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [7912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [7938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [7964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [7990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [8016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(376), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [8042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(278), 1, + anon_sym_LBRACK, + ACTIONS(280), 1, + anon_sym_DOT, + STATE(130), 2, + sym_attr_splat, + sym_full_splat, + STATE(129), 3, + sym_index, + sym_get_attr, + sym_splat, + ACTIONS(380), 5, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_if, + sym_ellipsis, + anon_sym_QMARK, + [8068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(386), 1, + anon_sym_EQ, ACTIONS(384), 10, ts_builtin_sym_end, anon_sym_RBRACE, @@ -8670,884 +9531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [7068] = 3, + [8087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(234), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(232), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7094] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(390), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(388), 10, - ts_builtin_sym_end, - anon_sym_RBRACE, + ACTIONS(390), 4, sym_identifier, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ_GT, - sym_ellipsis, - anon_sym_QMARK, - [7128] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + anon_sym_true, + anon_sym_false, + sym_null_lit, + ACTIONS(388), 7, + sym__quoted_template_start, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_numeric_lit, anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(386), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 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, - [7162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(258), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(256), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(182), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(180), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7214] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(386), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 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, - [7248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(386), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 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, - [7282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(254), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(252), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(260), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7334] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(386), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 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, - [7368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(250), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(248), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, - anon_sym_LBRACK, - ACTIONS(101), 1, - anon_sym_DOT, - ACTIONS(386), 1, - anon_sym_EQ, - STATE(59), 2, - sym_attr_splat, - sym_full_splat, - STATE(58), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 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, - [7428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(242), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(240), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(266), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(264), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(268), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(274), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(272), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(222), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(220), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(186), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(184), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(202), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(200), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(194), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(192), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(198), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(196), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(210), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(208), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(206), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(204), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(230), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(228), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(238), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(236), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(214), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(212), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(246), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(244), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(178), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(176), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(278), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(276), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(218), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(216), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(226), 3, - anon_sym_SLASH, - anon_sym_GT, - anon_sym_LT, - ACTIONS(224), 15, - sym__template_interpolation_end, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_PLUS, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_strip_marker, - [7922] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [7948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(388), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [7974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [8000] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [8026] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [8052] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [8078] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(280), 1, - anon_sym_LBRACK, - ACTIONS(282), 1, - anon_sym_DOT, - STATE(129), 2, - sym_attr_splat, - sym_full_splat, - STATE(128), 3, - sym_index, - sym_get_attr, - sym_splat, - ACTIONS(384), 5, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_if, - sym_ellipsis, - anon_sym_QMARK, - [8104] = 3, + anon_sym_BANG, + [8106] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(394), 4, @@ -9563,7 +9563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DASH, anon_sym_BANG, - [8123] = 3, + [8125] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(398), 1, @@ -9579,288 +9579,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, sym_ellipsis, anon_sym_QMARK, - [8142] = 3, + [8144] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(95), 1, + anon_sym_EQ, + ACTIONS(93), 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, + [8163] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(380), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + anon_sym_LBRACK, + ACTIONS(318), 1, + anon_sym_DOT, + STATE(165), 2, + sym_attr_splat, + sym_full_splat, + ACTIONS(376), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + STATE(164), 3, + sym_index, + sym_get_attr, + sym_splat, + [8331] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(400), 1, + sym__quoted_template_end, ACTIONS(402), 1, - anon_sym_EQ, - ACTIONS(400), 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, - [8161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(406), 4, - sym_identifier, - anon_sym_true, - anon_sym_false, - sym_null_lit, - ACTIONS(404), 7, - sym__quoted_template_start, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_numeric_lit, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_BANG, - [8180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_EQ, - ACTIONS(95), 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, - [8199] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8247] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(388), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8295] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8319] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8343] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(318), 1, - anon_sym_LBRACK, - ACTIONS(320), 1, - anon_sym_DOT, - STATE(166), 2, - sym_attr_splat, - sym_full_splat, - ACTIONS(384), 3, - sym__template_interpolation_end, - anon_sym_QMARK, - sym_strip_marker, - STATE(165), 3, - sym_index, - sym_get_attr, - sym_splat, - [8367] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(408), 1, - sym__quoted_template_end, - ACTIONS(410), 1, sym__template_literal_chunk, - ACTIONS(412), 1, + ACTIONS(404), 1, sym__template_interpolation_start, - STATE(227), 1, + STATE(228), 1, aux_sym_template_literal_repeat1, - STATE(247), 1, - sym_template_literal, - STATE(197), 3, - sym_template_interpolation, - sym_template_directive, - aux_sym_quoted_template_repeat1, - [8391] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(410), 1, - sym__template_literal_chunk, - ACTIONS(412), 1, - sym__template_interpolation_start, - ACTIONS(414), 1, - sym__quoted_template_end, - STATE(227), 1, - aux_sym_template_literal_repeat1, - STATE(200), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym_quoted_template_repeat1, - [8413] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(410), 1, - sym__template_literal_chunk, - ACTIONS(412), 1, - sym__template_interpolation_start, - ACTIONS(416), 1, - sym__quoted_template_end, - STATE(227), 1, - aux_sym_template_literal_repeat1, - STATE(261), 1, + STATE(237), 1, sym_template_literal, STATE(201), 3, sym_template_interpolation, sym_template_directive, aux_sym_quoted_template_repeat1, - [8437] = 6, + [8355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, + sym__template_literal_chunk, + ACTIONS(404), 1, + sym__template_interpolation_start, + ACTIONS(406), 1, + sym__quoted_template_end, + STATE(228), 1, + aux_sym_template_literal_repeat1, + STATE(198), 4, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + aux_sym_quoted_template_repeat1, + [8377] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, + sym__template_literal_chunk, + ACTIONS(404), 1, + sym__template_interpolation_start, + ACTIONS(408), 1, + sym__quoted_template_end, + STATE(228), 1, + aux_sym_template_literal_repeat1, + STATE(248), 1, + sym_template_literal, + STATE(196), 3, + sym_template_interpolation, + sym_template_directive, + aux_sym_quoted_template_repeat1, + [8401] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(410), 1, - sym__template_literal_chunk, + sym__quoted_template_end, ACTIONS(412), 1, + sym__template_literal_chunk, + ACTIONS(415), 1, + sym__template_interpolation_start, + STATE(228), 1, + aux_sym_template_literal_repeat1, + STATE(198), 4, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + aux_sym_quoted_template_repeat1, + [8423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(402), 1, + sym__template_literal_chunk, + ACTIONS(404), 1, sym__template_interpolation_start, ACTIONS(418), 1, sym__quoted_template_end, - STATE(227), 1, + STATE(228), 1, aux_sym_template_literal_repeat1, - STATE(200), 4, + STATE(198), 4, sym_template_literal, sym_template_interpolation, sym_template_directive, aux_sym_quoted_template_repeat1, - [8459] = 6, + [8445] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(402), 1, + sym__template_literal_chunk, + ACTIONS(404), 1, + sym__template_interpolation_start, ACTIONS(420), 1, sym__quoted_template_end, - ACTIONS(422), 1, - sym__template_literal_chunk, - ACTIONS(425), 1, - sym__template_interpolation_start, - STATE(227), 1, - aux_sym_template_literal_repeat1, - STATE(200), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym_quoted_template_repeat1, - [8481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(410), 1, - sym__template_literal_chunk, - ACTIONS(412), 1, - sym__template_interpolation_start, - ACTIONS(428), 1, - sym__quoted_template_end, - STATE(227), 1, - aux_sym_template_literal_repeat1, - STATE(200), 4, - sym_template_literal, - sym_template_interpolation, - sym_template_directive, - aux_sym_quoted_template_repeat1, - [8503] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(410), 1, - sym__template_literal_chunk, - ACTIONS(412), 1, - sym__template_interpolation_start, - ACTIONS(430), 1, - sym__quoted_template_end, - STATE(227), 1, + STATE(228), 1, aux_sym_template_literal_repeat1, STATE(259), 1, sym_template_literal, @@ -9868,158 +9820,186 @@ static const uint16_t ts_small_parse_table[] = { sym_template_interpolation, sym_template_directive, aux_sym_quoted_template_repeat1, - [8527] = 7, + [8469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(432), 1, + ACTIONS(402), 1, + sym__template_literal_chunk, + ACTIONS(404), 1, + sym__template_interpolation_start, + ACTIONS(422), 1, + sym__quoted_template_end, + STATE(228), 1, + aux_sym_template_literal_repeat1, + STATE(198), 4, + sym_template_literal, + sym_template_interpolation, + sym_template_directive, + aux_sym_quoted_template_repeat1, + [8491] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(424), 1, anon_sym_EQ, - ACTIONS(434), 1, + ACTIONS(426), 1, anon_sym_LBRACE, - ACTIONS(436), 1, + ACTIONS(428), 1, sym_identifier, - ACTIONS(438), 1, + ACTIONS(430), 1, sym__quoted_template_start, - STATE(205), 1, + STATE(204), 1, sym__block_start, - STATE(211), 2, + STATE(210), 2, sym_string_lit, aux_sym_block_repeat1, - [8550] = 6, + [8514] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(440), 1, + ACTIONS(432), 1, anon_sym_RBRACE, - STATE(255), 1, + STATE(254), 1, sym__block_end, - STATE(288), 1, + STATE(274), 1, sym_body, - STATE(207), 3, + STATE(206), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [8571] = 6, + [8535] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(442), 1, + ACTIONS(434), 1, anon_sym_RBRACE, - STATE(248), 1, + STATE(249), 1, sym__block_end, - STATE(285), 1, + STATE(284), 1, sym_body, - STATE(207), 3, + STATE(206), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [8592] = 7, + [8556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(444), 1, + ACTIONS(436), 1, anon_sym_RBRACE, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(448), 1, + ACTIONS(440), 1, sym_ellipsis, - ACTIONS(450), 1, + ACTIONS(442), 1, anon_sym_QMARK, - STATE(116), 1, + STATE(115), 1, sym__object_end, - STATE(269), 1, + STATE(267), 1, sym_for_cond, - [8614] = 4, + [8578] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_identifier, - ACTIONS(452), 2, + ACTIONS(444), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(210), 3, + STATE(209), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [8630] = 7, + [8594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(450), 1, + ACTIONS(442), 1, anon_sym_QMARK, - ACTIONS(454), 1, + ACTIONS(446), 1, anon_sym_RBRACE, - ACTIONS(456), 1, + ACTIONS(448), 1, sym_ellipsis, - STATE(78), 1, + STATE(160), 1, sym__object_end, - STATE(282), 1, + STATE(278), 1, sym_for_cond, - [8652] = 7, + [8616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(450), 1, + ACTIONS(442), 1, anon_sym_QMARK, - ACTIONS(458), 1, + ACTIONS(450), 1, anon_sym_RBRACE, - ACTIONS(460), 1, + ACTIONS(452), 1, sym_ellipsis, - STATE(161), 1, + STATE(76), 1, sym__object_end, STATE(268), 1, sym_for_cond, - [8674] = 4, + [8638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(464), 1, + ACTIONS(456), 1, sym_identifier, - ACTIONS(462), 2, + ACTIONS(454), 2, ts_builtin_sym_end, anon_sym_RBRACE, - STATE(210), 3, + STATE(209), 3, sym_attribute, sym_block, aux_sym_body_repeat1, - [8690] = 6, + [8654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(438), 1, + ACTIONS(430), 1, sym__quoted_template_start, - ACTIONS(467), 1, + ACTIONS(459), 1, anon_sym_LBRACE, - ACTIONS(469), 1, + ACTIONS(461), 1, sym_identifier, - STATE(204), 1, + STATE(203), 1, sym__block_start, - STATE(218), 2, + STATE(213), 2, sym_string_lit, aux_sym_block_repeat1, - [8710] = 6, + [8674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 1, - anon_sym_RPAREN, - ACTIONS(473), 1, - anon_sym_COMMA, - ACTIONS(475), 1, - sym_ellipsis, - ACTIONS(477), 1, - anon_sym_QMARK, - STATE(225), 1, - aux_sym_tuple_repeat1, - [8729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(400), 5, + ACTIONS(384), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [8740] = 4, + [8685] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(463), 1, + anon_sym_RPAREN, + ACTIONS(465), 1, + anon_sym_COMMA, + ACTIONS(467), 1, + sym_ellipsis, + ACTIONS(469), 1, + anon_sym_QMARK, + STATE(223), 1, + aux_sym_tuple_repeat1, + [8704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 1, + anon_sym_LBRACE, + ACTIONS(473), 1, + sym_identifier, + ACTIONS(476), 1, + sym__quoted_template_start, + STATE(213), 2, + sym_string_lit, + aux_sym_block_repeat1, + [8721] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(481), 1, @@ -10030,26 +10010,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACK, sym_ellipsis, - [8755] = 3, + [8736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, anon_sym_QMARK, ACTIONS(479), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, sym_ellipsis, - [8768] = 2, + [8749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 5, + ACTIONS(93), 5, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [8779] = 2, + [8760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(396), 5, @@ -10058,725 +10038,713 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, sym_ellipsis, anon_sym_QMARK, - [8790] = 5, + [8771] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(484), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, - sym_identifier, - ACTIONS(489), 1, - sym__quoted_template_start, - STATE(218), 2, - sym_string_lit, - aux_sym_block_repeat1, - [8807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(492), 1, anon_sym_RBRACE, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_COMMA, STATE(142), 1, sym__object_end, - STATE(251), 1, + STATE(255), 1, aux_sym_object_repeat1, - [8823] = 5, + [8787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(450), 1, + ACTIONS(442), 1, anon_sym_QMARK, - ACTIONS(496), 1, + ACTIONS(488), 1, anon_sym_RBRACK, - STATE(299), 1, + STATE(305), 1, sym_for_cond, - [8839] = 5, + [8803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_COMMA, - ACTIONS(498), 1, + ACTIONS(490), 1, anon_sym_RBRACE, - STATE(176), 1, + STATE(175), 1, sym__object_end, - STATE(237), 1, + STATE(236), 1, aux_sym_object_repeat1, - [8855] = 3, + [8819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, anon_sym_QMARK, - ACTIONS(500), 3, + ACTIONS(492), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [8867] = 5, + [8831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(450), 1, + ACTIONS(442), 1, anon_sym_QMARK, - ACTIONS(502), 1, + ACTIONS(494), 1, anon_sym_RBRACK, - STATE(297), 1, + STATE(296), 1, sym_for_cond, - [8883] = 5, + [8847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(504), 1, - anon_sym_COMMA, - ACTIONS(506), 1, - anon_sym_RBRACK, - STATE(245), 1, - aux_sym_tuple_repeat1, - [8899] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym_RPAREN, - ACTIONS(508), 1, + ACTIONS(496), 1, anon_sym_COMMA, - ACTIONS(510), 1, + ACTIONS(498), 1, sym_ellipsis, STATE(214), 1, aux_sym_tuple_repeat1, - [8915] = 5, + [8863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, - anon_sym_if, - ACTIONS(512), 1, - anon_sym_RBRACE, - STATE(77), 1, - sym__object_end, - STATE(263), 1, - sym_for_cond, - [8931] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(516), 1, - sym__template_literal_chunk, - STATE(233), 1, - aux_sym_template_literal_repeat1, - ACTIONS(514), 2, - sym__quoted_template_end, - sym__template_interpolation_start, - [8945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(446), 1, - anon_sym_if, - ACTIONS(450), 1, + ACTIONS(469), 1, anon_sym_QMARK, - ACTIONS(518), 1, - anon_sym_RBRACK, - STATE(307), 1, - sym_for_cond, - [8961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(504), 1, + ACTIONS(500), 1, anon_sym_COMMA, - ACTIONS(520), 1, + ACTIONS(502), 1, + anon_sym_RBRACK, + STATE(245), 1, + aux_sym_tuple_repeat1, + [8879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_if, + ACTIONS(504), 1, + anon_sym_RBRACE, + STATE(159), 1, + sym__object_end, + STATE(270), 1, + sym_for_cond, + [8895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + anon_sym_if, + ACTIONS(442), 1, + anon_sym_QMARK, + ACTIONS(506), 1, + anon_sym_RBRACK, + STATE(306), 1, + sym_for_cond, + [8911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(500), 1, + anon_sym_COMMA, + ACTIONS(508), 1, anon_sym_RBRACK, STATE(253), 1, aux_sym_tuple_repeat1, - [8977] = 5, + [8927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(512), 1, + sym__template_literal_chunk, + STATE(232), 1, + aux_sym_template_literal_repeat1, + ACTIONS(510), 2, + sym__quoted_template_end, + sym__template_interpolation_start, + [8941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(522), 1, + ACTIONS(514), 1, anon_sym_RBRACE, - STATE(160), 1, + STATE(77), 1, sym__object_end, - STATE(267), 1, + STATE(275), 1, sym_for_cond, - [8993] = 5, + [8957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(504), 1, + ACTIONS(486), 1, anon_sym_COMMA, - ACTIONS(524), 1, - anon_sym_RBRACK, - STATE(238), 1, - aux_sym_tuple_repeat1, - [9009] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(494), 1, - anon_sym_COMMA, - ACTIONS(526), 1, + ACTIONS(516), 1, anon_sym_RBRACE, STATE(56), 1, sym__object_end, - STATE(251), 1, + STATE(255), 1, aux_sym_object_repeat1, - [9025] = 4, + [8973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(530), 1, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(500), 1, + anon_sym_COMMA, + ACTIONS(518), 1, + anon_sym_RBRACK, + STATE(247), 1, + aux_sym_tuple_repeat1, + [8989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(522), 1, sym__template_literal_chunk, - STATE(233), 1, + STATE(232), 1, aux_sym_template_literal_repeat1, - ACTIONS(528), 2, + ACTIONS(520), 2, sym__quoted_template_end, sym__template_interpolation_start, - [9039] = 5, + [9003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(438), 1, anon_sym_if, - ACTIONS(533), 1, + ACTIONS(525), 1, anon_sym_RBRACE, - STATE(117), 1, + STATE(116), 1, sym__object_end, - STATE(271), 1, + STATE(286), 1, sym_for_cond, - [9055] = 5, + [9019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_COMMA, - ACTIONS(535), 1, + ACTIONS(527), 1, anon_sym_RBRACE, STATE(137), 1, sym__object_end, - STATE(219), 1, + STATE(218), 1, aux_sym_object_repeat1, - [9071] = 5, + [9035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_COMMA, - ACTIONS(537), 1, + ACTIONS(529), 1, anon_sym_RBRACE, - STATE(66), 1, + STATE(73), 1, sym__object_end, - STATE(232), 1, + STATE(230), 1, aux_sym_object_repeat1, - [9087] = 5, + [9051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(494), 1, + ACTIONS(486), 1, anon_sym_COMMA, - ACTIONS(539), 1, + ACTIONS(531), 1, anon_sym_RBRACE, - STATE(163), 1, + STATE(162), 1, sym__object_end, - STATE(251), 1, + STATE(255), 1, aux_sym_object_repeat1, - [9103] = 4, + [9067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(504), 1, - anon_sym_COMMA, - ACTIONS(541), 1, - anon_sym_RBRACK, - STATE(214), 1, - aux_sym_tuple_repeat1, - [9116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(240), 3, - sym__quoted_template_start, - anon_sym_LBRACE, - sym_identifier, - [9125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(543), 1, + ACTIONS(533), 1, + sym__quoted_template_end, + ACTIONS(536), 2, sym__template_literal_chunk, - STATE(244), 1, - aux_sym_template_literal_repeat1, - STATE(302), 1, - sym_template_literal, - [9138] = 2, + sym__template_interpolation_start, + [9078] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(538), 1, + anon_sym_QMARK, + ACTIONS(540), 1, + sym_strip_marker, + ACTIONS(542), 1, + sym__template_interpolation_end, + [9091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(544), 3, + sym__quoted_template_end, + sym__template_literal_chunk, + sym__template_interpolation_start, + [9100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(396), 3, sym__template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - [9147] = 2, + [9109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 3, + ACTIONS(93), 3, sym__template_interpolation_end, anon_sym_QMARK, sym_strip_marker, - [9156] = 3, + [9118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(545), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - [9167] = 4, + ACTIONS(546), 1, + sym__template_literal_chunk, + STATE(243), 1, + aux_sym_template_literal_repeat1, + STATE(301), 1, + sym_template_literal, + [9131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(514), 1, + ACTIONS(510), 1, sym__quoted_template_end, - ACTIONS(547), 1, + ACTIONS(548), 1, sym__template_literal_chunk, STATE(260), 1, aux_sym_template_literal_repeat1, - [9180] = 4, + [9144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(504), 1, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(550), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [9155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, anon_sym_COMMA, - ACTIONS(549), 1, + ACTIONS(552), 1, anon_sym_RBRACK, STATE(214), 1, aux_sym_tuple_repeat1, - [9193] = 2, + [9168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 3, + ACTIONS(384), 3, + sym__template_interpolation_end, + anon_sym_QMARK, + sym_strip_marker, + [9177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, + anon_sym_COMMA, + ACTIONS(554), 1, + anon_sym_RBRACK, + STATE(214), 1, + aux_sym_tuple_repeat1, + [9190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(556), 1, sym__quoted_template_end, + ACTIONS(536), 2, sym__template_literal_chunk, sym__template_interpolation_start, - [9202] = 3, + [9201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - sym__quoted_template_end, - ACTIONS(556), 2, - sym__template_literal_chunk, - sym__template_interpolation_start, - [9213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(558), 3, + ACTIONS(559), 3, ts_builtin_sym_end, anon_sym_RBRACE, sym_identifier, - [9222] = 2, + [9210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(400), 3, - sym__template_interpolation_end, + ACTIONS(561), 3, + sym__quoted_template_end, + sym__template_literal_chunk, + sym__template_interpolation_start, + [9219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(538), 1, anon_sym_QMARK, + ACTIONS(563), 1, sym_strip_marker, - [9231] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(562), 1, - sym_strip_marker, - ACTIONS(564), 1, + ACTIONS(565), 1, sym__template_interpolation_end, - [9244] = 4, + [9232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(566), 1, - anon_sym_RBRACE, - ACTIONS(568), 1, + ACTIONS(567), 3, + sym__quoted_template_end, + sym__template_literal_chunk, + sym__template_interpolation_start, + [9241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 1, anon_sym_COMMA, - STATE(251), 1, - aux_sym_object_repeat1, - [9257] = 4, + ACTIONS(569), 1, + anon_sym_RBRACK, + STATE(214), 1, + aux_sym_tuple_repeat1, + [9254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(571), 3, + ts_builtin_sym_end, + anon_sym_RBRACE, + sym_identifier, + [9263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(560), 1, - anon_sym_QMARK, - ACTIONS(571), 1, - sym_strip_marker, ACTIONS(573), 1, - sym__template_interpolation_end, - [9270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(504), 1, - anon_sym_COMMA, + anon_sym_RBRACE, ACTIONS(575), 1, - anon_sym_RBRACK, - STATE(214), 1, - aux_sym_tuple_repeat1, - [9283] = 2, + anon_sym_COMMA, + STATE(255), 1, + aux_sym_object_repeat1, + [9276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(577), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [9292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(579), 3, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_identifier, - [9301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(581), 3, - sym__quoted_template_end, - sym__template_literal_chunk, - sym__template_interpolation_start, - [9310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, anon_sym_QMARK, - ACTIONS(583), 2, + ACTIONS(578), 2, anon_sym_EQ, anon_sym_COLON, - [9321] = 3, + [9287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(585), 2, + ACTIONS(580), 3, + ts_builtin_sym_end, anon_sym_RBRACE, - anon_sym_COMMA, - [9332] = 3, + sym_identifier, + [9296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(587), 1, + ACTIONS(234), 3, + sym__quoted_template_start, + anon_sym_LBRACE, + sym_identifier, + [9305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(582), 1, sym__quoted_template_end, - ACTIONS(556), 2, + ACTIONS(536), 2, sym__template_literal_chunk, sym__template_interpolation_start, - [9343] = 4, + [9316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(528), 1, + ACTIONS(520), 1, sym__quoted_template_end, - ACTIONS(590), 1, + ACTIONS(585), 1, sym__template_literal_chunk, STATE(260), 1, aux_sym_template_literal_repeat1, - [9356] = 3, + [9329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(593), 1, - sym__quoted_template_end, - ACTIONS(556), 2, - sym__template_literal_chunk, - sym__template_interpolation_start, - [9367] = 2, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(588), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [9340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(596), 3, - sym__quoted_template_end, - sym__template_literal_chunk, - sym__template_interpolation_start, - [9376] = 3, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(590), 1, + anon_sym_COLON, + [9350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_RPAREN, + STATE(174), 1, + sym__function_call_end, + [9360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(594), 1, + anon_sym_RBRACK, + [9370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(596), 1, + anon_sym_RBRACK, + [9380] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(598), 1, - anon_sym_RBRACE, - STATE(76), 1, - sym__object_end, - [9386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, anon_sym_RPAREN, STATE(138), 1, sym__function_call_end, - [9396] = 3, + [9390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(602), 1, - anon_sym_EQ_GT, - [9406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(604), 1, - sym_identifier, - ACTIONS(606), 1, - anon_sym_STAR, - [9416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(608), 1, + ACTIONS(525), 1, anon_sym_RBRACE, - STATE(159), 1, + STATE(116), 1, sym__object_end, - [9426] = 3, + [9400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_RBRACE, - STATE(160), 1, - sym__object_end, - [9436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(533), 1, - anon_sym_RBRACE, - STATE(117), 1, - sym__object_end, - [9446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(610), 1, - anon_sym_EQ_GT, - [9456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_RBRACE, - STATE(120), 1, - sym__object_end, - [9466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(614), 1, - anon_sym_RPAREN, - [9476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(616), 1, - anon_sym_RPAREN, - [9486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym_identifier, - ACTIONS(620), 1, - anon_sym_STAR, - [9496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(622), 1, - anon_sym_COLON, - [9506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(624), 1, - anon_sym_RPAREN, - STATE(175), 1, - sym__function_call_end, - [9516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(626), 1, - anon_sym_COLON, - [9526] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(628), 1, - anon_sym_RBRACK, - [9536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(630), 1, - anon_sym_RBRACK, - [9546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(632), 1, - anon_sym_COLON, - [9556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(634), 1, - anon_sym_EQ_GT, - [9566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(512), 1, + ACTIONS(514), 1, anon_sym_RBRACE, STATE(77), 1, sym__object_end, - [9576] = 3, + [9410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_RPAREN, - STATE(64), 1, - sym__function_call_end, - [9586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(638), 1, - anon_sym_COMMA, - ACTIONS(640), 1, - anon_sym_in, - [9596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(440), 1, - anon_sym_RBRACE, - STATE(255), 1, - sym__block_end, - [9606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(566), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [9614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, + ACTIONS(469), 1, anon_sym_QMARK, - ACTIONS(642), 1, - anon_sym_COLON, - [9624] = 3, + ACTIONS(600), 1, + anon_sym_EQ_GT, + [9420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(644), 1, + ACTIONS(602), 1, + anon_sym_RBRACE, + STATE(158), 1, + sym__object_end, + [9430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_RPAREN, + [9440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(608), 1, + anon_sym_STAR, + [9450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(612), 1, + anon_sym_STAR, + [9460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(614), 1, + anon_sym_RBRACE, + STATE(257), 1, + sym__block_end, + [9470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_RBRACE, + STATE(75), 1, + sym__object_end, + [9480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(618), 1, + anon_sym_EQ_GT, + [9490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(620), 1, + anon_sym_RPAREN, + [9500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(504), 1, + anon_sym_RBRACE, + STATE(159), 1, + sym__object_end, + [9510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(622), 1, + anon_sym_COLON, + [9520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(624), 1, + anon_sym_EQ_GT, + [9530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(573), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [9538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(626), 1, + anon_sym_COLON, + [9548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(628), 1, + anon_sym_RPAREN, + STATE(65), 1, + sym__function_call_end, + [9558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(432), 1, anon_sym_RBRACE, STATE(254), 1, sym__block_end, - [9634] = 3, + [9568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 1, + ACTIONS(630), 1, + anon_sym_COMMA, + ACTIONS(632), 1, + anon_sym_in, + [9578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(634), 1, + anon_sym_RBRACE, + STATE(119), 1, + sym__object_end, + [9588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(636), 1, + anon_sym_COLON, + [9598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(638), 1, + anon_sym_RPAREN, + [9608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(640), 1, + sym_identifier, + ACTIONS(642), 1, + anon_sym_STAR, + [9618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, + anon_sym_QMARK, + ACTIONS(644), 1, + anon_sym_COLON, + [9628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(469), 1, anon_sym_QMARK, ACTIONS(646), 1, + anon_sym_RBRACK, + [9638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_RPAREN, - [9644] = 3, + [9645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(542), 1, + sym__template_interpolation_end, + [9652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(648), 1, - sym_identifier, - ACTIONS(650), 1, - anon_sym_STAR, - [9654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(652), 1, - anon_sym_COLON, - [9664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(477), 1, - anon_sym_QMARK, - ACTIONS(654), 1, anon_sym_RBRACK, - [9674] = 2, + [9659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - sym__template_interpolation_end, - [9681] = 2, + ACTIONS(650), 1, + anon_sym_RBRACK, + [9666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(652), 1, + anon_sym_RBRACK, + [9673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym_RPAREN, - [9688] = 2, + [9680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(654), 1, + sym_identifier, + [9687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(656), 1, - anon_sym_RBRACK, - [9695] = 2, + anon_sym_in, + [9694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_identifier, + [9701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(658), 1, - anon_sym_RBRACK, - [9702] = 2, + sym__quoted_template_end, + [9708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + sym_identifier, + [9715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(660), 1, - anon_sym_RBRACK, - [9709] = 2, + sym__template_interpolation_end, + [9722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(640), 1, + sym_identifier, + [9729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(662), 1, - anon_sym_in, - [9716] = 2, + anon_sym_RBRACK, + [9736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(664), 1, anon_sym_RBRACK, - [9723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(618), 1, - sym_identifier, - [9730] = 2, + [9743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(666), 1, - sym_identifier, - [9737] = 2, + anon_sym_RBRACK, + [9750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(668), 1, - sym__quoted_template_end, - [9744] = 2, + sym_identifier, + [9757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, - sym_identifier, - [9751] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_RPAREN, - [9758] = 2, + ts_builtin_sym_end, + [9764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(672), 1, - sym__template_interpolation_end, - [9765] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(604), 1, - sym_identifier, - [9772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(674), 1, - anon_sym_RBRACK, - [9779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(676), 1, - anon_sym_RBRACK, - [9786] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(648), 1, - sym_identifier, - [9793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(678), 1, - ts_builtin_sym_end, - [9800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(680), 1, ts_builtin_sym_end, }; @@ -10897,524 +10865,520 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(115)] = 6172, [SMALL_STATE(116)] = 6200, [SMALL_STATE(117)] = 6228, - [SMALL_STATE(118)] = 6256, + [SMALL_STATE(118)] = 6260, [SMALL_STATE(119)] = 6288, [SMALL_STATE(120)] = 6316, - [SMALL_STATE(121)] = 6344, + [SMALL_STATE(121)] = 6348, [SMALL_STATE(122)] = 6376, - [SMALL_STATE(123)] = 6412, - [SMALL_STATE(124)] = 6440, - [SMALL_STATE(125)] = 6472, - [SMALL_STATE(126)] = 6500, - [SMALL_STATE(127)] = 6528, - [SMALL_STATE(128)] = 6556, - [SMALL_STATE(129)] = 6584, - [SMALL_STATE(130)] = 6612, - [SMALL_STATE(131)] = 6640, - [SMALL_STATE(132)] = 6668, - [SMALL_STATE(133)] = 6696, - [SMALL_STATE(134)] = 6724, - [SMALL_STATE(135)] = 6752, - [SMALL_STATE(136)] = 6784, - [SMALL_STATE(137)] = 6812, - [SMALL_STATE(138)] = 6840, - [SMALL_STATE(139)] = 6868, - [SMALL_STATE(140)] = 6896, - [SMALL_STATE(141)] = 6924, - [SMALL_STATE(142)] = 6952, - [SMALL_STATE(143)] = 6980, - [SMALL_STATE(144)] = 7008, - [SMALL_STATE(145)] = 7034, - [SMALL_STATE(146)] = 7068, - [SMALL_STATE(147)] = 7094, - [SMALL_STATE(148)] = 7128, - [SMALL_STATE(149)] = 7162, - [SMALL_STATE(150)] = 7188, - [SMALL_STATE(151)] = 7214, - [SMALL_STATE(152)] = 7248, - [SMALL_STATE(153)] = 7282, - [SMALL_STATE(154)] = 7308, - [SMALL_STATE(155)] = 7334, - [SMALL_STATE(156)] = 7368, - [SMALL_STATE(157)] = 7394, - [SMALL_STATE(158)] = 7428, - [SMALL_STATE(159)] = 7454, - [SMALL_STATE(160)] = 7480, - [SMALL_STATE(161)] = 7506, - [SMALL_STATE(162)] = 7532, - [SMALL_STATE(163)] = 7558, - [SMALL_STATE(164)] = 7584, - [SMALL_STATE(165)] = 7610, - [SMALL_STATE(166)] = 7636, - [SMALL_STATE(167)] = 7662, - [SMALL_STATE(168)] = 7688, - [SMALL_STATE(169)] = 7714, - [SMALL_STATE(170)] = 7740, - [SMALL_STATE(171)] = 7766, - [SMALL_STATE(172)] = 7792, - [SMALL_STATE(173)] = 7818, - [SMALL_STATE(174)] = 7844, - [SMALL_STATE(175)] = 7870, - [SMALL_STATE(176)] = 7896, - [SMALL_STATE(177)] = 7922, - [SMALL_STATE(178)] = 7948, - [SMALL_STATE(179)] = 7974, - [SMALL_STATE(180)] = 8000, - [SMALL_STATE(181)] = 8026, - [SMALL_STATE(182)] = 8052, - [SMALL_STATE(183)] = 8078, - [SMALL_STATE(184)] = 8104, - [SMALL_STATE(185)] = 8123, - [SMALL_STATE(186)] = 8142, - [SMALL_STATE(187)] = 8161, - [SMALL_STATE(188)] = 8180, - [SMALL_STATE(189)] = 8199, - [SMALL_STATE(190)] = 8223, - [SMALL_STATE(191)] = 8247, - [SMALL_STATE(192)] = 8271, - [SMALL_STATE(193)] = 8295, - [SMALL_STATE(194)] = 8319, - [SMALL_STATE(195)] = 8343, - [SMALL_STATE(196)] = 8367, - [SMALL_STATE(197)] = 8391, - [SMALL_STATE(198)] = 8413, - [SMALL_STATE(199)] = 8437, - [SMALL_STATE(200)] = 8459, - [SMALL_STATE(201)] = 8481, - [SMALL_STATE(202)] = 8503, - [SMALL_STATE(203)] = 8527, - [SMALL_STATE(204)] = 8550, - [SMALL_STATE(205)] = 8571, - [SMALL_STATE(206)] = 8592, - [SMALL_STATE(207)] = 8614, - [SMALL_STATE(208)] = 8630, - [SMALL_STATE(209)] = 8652, - [SMALL_STATE(210)] = 8674, - [SMALL_STATE(211)] = 8690, - [SMALL_STATE(212)] = 8710, - [SMALL_STATE(213)] = 8729, - [SMALL_STATE(214)] = 8740, - [SMALL_STATE(215)] = 8755, - [SMALL_STATE(216)] = 8768, - [SMALL_STATE(217)] = 8779, - [SMALL_STATE(218)] = 8790, - [SMALL_STATE(219)] = 8807, - [SMALL_STATE(220)] = 8823, - [SMALL_STATE(221)] = 8839, - [SMALL_STATE(222)] = 8855, - [SMALL_STATE(223)] = 8867, - [SMALL_STATE(224)] = 8883, - [SMALL_STATE(225)] = 8899, - [SMALL_STATE(226)] = 8915, - [SMALL_STATE(227)] = 8931, - [SMALL_STATE(228)] = 8945, - [SMALL_STATE(229)] = 8961, - [SMALL_STATE(230)] = 8977, - [SMALL_STATE(231)] = 8993, - [SMALL_STATE(232)] = 9009, - [SMALL_STATE(233)] = 9025, - [SMALL_STATE(234)] = 9039, - [SMALL_STATE(235)] = 9055, - [SMALL_STATE(236)] = 9071, - [SMALL_STATE(237)] = 9087, - [SMALL_STATE(238)] = 9103, - [SMALL_STATE(239)] = 9116, - [SMALL_STATE(240)] = 9125, - [SMALL_STATE(241)] = 9138, - [SMALL_STATE(242)] = 9147, - [SMALL_STATE(243)] = 9156, - [SMALL_STATE(244)] = 9167, - [SMALL_STATE(245)] = 9180, - [SMALL_STATE(246)] = 9193, - [SMALL_STATE(247)] = 9202, - [SMALL_STATE(248)] = 9213, - [SMALL_STATE(249)] = 9222, - [SMALL_STATE(250)] = 9231, - [SMALL_STATE(251)] = 9244, - [SMALL_STATE(252)] = 9257, - [SMALL_STATE(253)] = 9270, - [SMALL_STATE(254)] = 9283, - [SMALL_STATE(255)] = 9292, - [SMALL_STATE(256)] = 9301, - [SMALL_STATE(257)] = 9310, - [SMALL_STATE(258)] = 9321, - [SMALL_STATE(259)] = 9332, - [SMALL_STATE(260)] = 9343, - [SMALL_STATE(261)] = 9356, - [SMALL_STATE(262)] = 9367, - [SMALL_STATE(263)] = 9376, - [SMALL_STATE(264)] = 9386, - [SMALL_STATE(265)] = 9396, - [SMALL_STATE(266)] = 9406, - [SMALL_STATE(267)] = 9416, - [SMALL_STATE(268)] = 9426, - [SMALL_STATE(269)] = 9436, - [SMALL_STATE(270)] = 9446, - [SMALL_STATE(271)] = 9456, - [SMALL_STATE(272)] = 9466, - [SMALL_STATE(273)] = 9476, - [SMALL_STATE(274)] = 9486, - [SMALL_STATE(275)] = 9496, - [SMALL_STATE(276)] = 9506, - [SMALL_STATE(277)] = 9516, - [SMALL_STATE(278)] = 9526, - [SMALL_STATE(279)] = 9536, - [SMALL_STATE(280)] = 9546, - [SMALL_STATE(281)] = 9556, - [SMALL_STATE(282)] = 9566, - [SMALL_STATE(283)] = 9576, - [SMALL_STATE(284)] = 9586, - [SMALL_STATE(285)] = 9596, - [SMALL_STATE(286)] = 9606, - [SMALL_STATE(287)] = 9614, - [SMALL_STATE(288)] = 9624, - [SMALL_STATE(289)] = 9634, - [SMALL_STATE(290)] = 9644, - [SMALL_STATE(291)] = 9654, - [SMALL_STATE(292)] = 9664, - [SMALL_STATE(293)] = 9674, - [SMALL_STATE(294)] = 9681, - [SMALL_STATE(295)] = 9688, - [SMALL_STATE(296)] = 9695, - [SMALL_STATE(297)] = 9702, - [SMALL_STATE(298)] = 9709, - [SMALL_STATE(299)] = 9716, - [SMALL_STATE(300)] = 9723, - [SMALL_STATE(301)] = 9730, - [SMALL_STATE(302)] = 9737, - [SMALL_STATE(303)] = 9744, - [SMALL_STATE(304)] = 9751, - [SMALL_STATE(305)] = 9758, - [SMALL_STATE(306)] = 9765, - [SMALL_STATE(307)] = 9772, - [SMALL_STATE(308)] = 9779, - [SMALL_STATE(309)] = 9786, - [SMALL_STATE(310)] = 9793, - [SMALL_STATE(311)] = 9800, + [SMALL_STATE(123)] = 6404, + [SMALL_STATE(124)] = 6436, + [SMALL_STATE(125)] = 6464, + [SMALL_STATE(126)] = 6492, + [SMALL_STATE(127)] = 6520, + [SMALL_STATE(128)] = 6548, + [SMALL_STATE(129)] = 6576, + [SMALL_STATE(130)] = 6604, + [SMALL_STATE(131)] = 6632, + [SMALL_STATE(132)] = 6660, + [SMALL_STATE(133)] = 6688, + [SMALL_STATE(134)] = 6716, + [SMALL_STATE(135)] = 6744, + [SMALL_STATE(136)] = 6776, + [SMALL_STATE(137)] = 6804, + [SMALL_STATE(138)] = 6832, + [SMALL_STATE(139)] = 6860, + [SMALL_STATE(140)] = 6888, + [SMALL_STATE(141)] = 6916, + [SMALL_STATE(142)] = 6944, + [SMALL_STATE(143)] = 6972, + [SMALL_STATE(144)] = 6998, + [SMALL_STATE(145)] = 7032, + [SMALL_STATE(146)] = 7058, + [SMALL_STATE(147)] = 7092, + [SMALL_STATE(148)] = 7126, + [SMALL_STATE(149)] = 7152, + [SMALL_STATE(150)] = 7178, + [SMALL_STATE(151)] = 7212, + [SMALL_STATE(152)] = 7246, + [SMALL_STATE(153)] = 7272, + [SMALL_STATE(154)] = 7298, + [SMALL_STATE(155)] = 7332, + [SMALL_STATE(156)] = 7366, + [SMALL_STATE(157)] = 7392, + [SMALL_STATE(158)] = 7418, + [SMALL_STATE(159)] = 7444, + [SMALL_STATE(160)] = 7470, + [SMALL_STATE(161)] = 7496, + [SMALL_STATE(162)] = 7522, + [SMALL_STATE(163)] = 7548, + [SMALL_STATE(164)] = 7574, + [SMALL_STATE(165)] = 7600, + [SMALL_STATE(166)] = 7626, + [SMALL_STATE(167)] = 7652, + [SMALL_STATE(168)] = 7678, + [SMALL_STATE(169)] = 7704, + [SMALL_STATE(170)] = 7730, + [SMALL_STATE(171)] = 7756, + [SMALL_STATE(172)] = 7782, + [SMALL_STATE(173)] = 7808, + [SMALL_STATE(174)] = 7834, + [SMALL_STATE(175)] = 7860, + [SMALL_STATE(176)] = 7886, + [SMALL_STATE(177)] = 7912, + [SMALL_STATE(178)] = 7938, + [SMALL_STATE(179)] = 7964, + [SMALL_STATE(180)] = 7990, + [SMALL_STATE(181)] = 8016, + [SMALL_STATE(182)] = 8042, + [SMALL_STATE(183)] = 8068, + [SMALL_STATE(184)] = 8087, + [SMALL_STATE(185)] = 8106, + [SMALL_STATE(186)] = 8125, + [SMALL_STATE(187)] = 8144, + [SMALL_STATE(188)] = 8163, + [SMALL_STATE(189)] = 8187, + [SMALL_STATE(190)] = 8211, + [SMALL_STATE(191)] = 8235, + [SMALL_STATE(192)] = 8259, + [SMALL_STATE(193)] = 8283, + [SMALL_STATE(194)] = 8307, + [SMALL_STATE(195)] = 8331, + [SMALL_STATE(196)] = 8355, + [SMALL_STATE(197)] = 8377, + [SMALL_STATE(198)] = 8401, + [SMALL_STATE(199)] = 8423, + [SMALL_STATE(200)] = 8445, + [SMALL_STATE(201)] = 8469, + [SMALL_STATE(202)] = 8491, + [SMALL_STATE(203)] = 8514, + [SMALL_STATE(204)] = 8535, + [SMALL_STATE(205)] = 8556, + [SMALL_STATE(206)] = 8578, + [SMALL_STATE(207)] = 8594, + [SMALL_STATE(208)] = 8616, + [SMALL_STATE(209)] = 8638, + [SMALL_STATE(210)] = 8654, + [SMALL_STATE(211)] = 8674, + [SMALL_STATE(212)] = 8685, + [SMALL_STATE(213)] = 8704, + [SMALL_STATE(214)] = 8721, + [SMALL_STATE(215)] = 8736, + [SMALL_STATE(216)] = 8749, + [SMALL_STATE(217)] = 8760, + [SMALL_STATE(218)] = 8771, + [SMALL_STATE(219)] = 8787, + [SMALL_STATE(220)] = 8803, + [SMALL_STATE(221)] = 8819, + [SMALL_STATE(222)] = 8831, + [SMALL_STATE(223)] = 8847, + [SMALL_STATE(224)] = 8863, + [SMALL_STATE(225)] = 8879, + [SMALL_STATE(226)] = 8895, + [SMALL_STATE(227)] = 8911, + [SMALL_STATE(228)] = 8927, + [SMALL_STATE(229)] = 8941, + [SMALL_STATE(230)] = 8957, + [SMALL_STATE(231)] = 8973, + [SMALL_STATE(232)] = 8989, + [SMALL_STATE(233)] = 9003, + [SMALL_STATE(234)] = 9019, + [SMALL_STATE(235)] = 9035, + [SMALL_STATE(236)] = 9051, + [SMALL_STATE(237)] = 9067, + [SMALL_STATE(238)] = 9078, + [SMALL_STATE(239)] = 9091, + [SMALL_STATE(240)] = 9100, + [SMALL_STATE(241)] = 9109, + [SMALL_STATE(242)] = 9118, + [SMALL_STATE(243)] = 9131, + [SMALL_STATE(244)] = 9144, + [SMALL_STATE(245)] = 9155, + [SMALL_STATE(246)] = 9168, + [SMALL_STATE(247)] = 9177, + [SMALL_STATE(248)] = 9190, + [SMALL_STATE(249)] = 9201, + [SMALL_STATE(250)] = 9210, + [SMALL_STATE(251)] = 9219, + [SMALL_STATE(252)] = 9232, + [SMALL_STATE(253)] = 9241, + [SMALL_STATE(254)] = 9254, + [SMALL_STATE(255)] = 9263, + [SMALL_STATE(256)] = 9276, + [SMALL_STATE(257)] = 9287, + [SMALL_STATE(258)] = 9296, + [SMALL_STATE(259)] = 9305, + [SMALL_STATE(260)] = 9316, + [SMALL_STATE(261)] = 9329, + [SMALL_STATE(262)] = 9340, + [SMALL_STATE(263)] = 9350, + [SMALL_STATE(264)] = 9360, + [SMALL_STATE(265)] = 9370, + [SMALL_STATE(266)] = 9380, + [SMALL_STATE(267)] = 9390, + [SMALL_STATE(268)] = 9400, + [SMALL_STATE(269)] = 9410, + [SMALL_STATE(270)] = 9420, + [SMALL_STATE(271)] = 9430, + [SMALL_STATE(272)] = 9440, + [SMALL_STATE(273)] = 9450, + [SMALL_STATE(274)] = 9460, + [SMALL_STATE(275)] = 9470, + [SMALL_STATE(276)] = 9480, + [SMALL_STATE(277)] = 9490, + [SMALL_STATE(278)] = 9500, + [SMALL_STATE(279)] = 9510, + [SMALL_STATE(280)] = 9520, + [SMALL_STATE(281)] = 9530, + [SMALL_STATE(282)] = 9538, + [SMALL_STATE(283)] = 9548, + [SMALL_STATE(284)] = 9558, + [SMALL_STATE(285)] = 9568, + [SMALL_STATE(286)] = 9578, + [SMALL_STATE(287)] = 9588, + [SMALL_STATE(288)] = 9598, + [SMALL_STATE(289)] = 9608, + [SMALL_STATE(290)] = 9618, + [SMALL_STATE(291)] = 9628, + [SMALL_STATE(292)] = 9638, + [SMALL_STATE(293)] = 9645, + [SMALL_STATE(294)] = 9652, + [SMALL_STATE(295)] = 9659, + [SMALL_STATE(296)] = 9666, + [SMALL_STATE(297)] = 9673, + [SMALL_STATE(298)] = 9680, + [SMALL_STATE(299)] = 9687, + [SMALL_STATE(300)] = 9694, + [SMALL_STATE(301)] = 9701, + [SMALL_STATE(302)] = 9708, + [SMALL_STATE(303)] = 9715, + [SMALL_STATE(304)] = 9722, + [SMALL_STATE(305)] = 9729, + [SMALL_STATE(306)] = 9736, + [SMALL_STATE(307)] = 9743, + [SMALL_STATE(308)] = 9750, + [SMALL_STATE(309)] = 9757, + [SMALL_STATE(310)] = 9764, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [53] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 3), - [121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 3), - [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(27), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(306), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(27), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(306), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 4), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 4), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(27), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(306), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 3), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 3), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(306), - [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), - [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(306), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(306), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), - [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 1), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 1), - [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), - [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), - [224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 1), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 1), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 2), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 2), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), - [266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), - [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), - [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), - [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), - [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(18), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(309), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(18), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(309), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(18), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(309), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 3), + [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 3), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(27), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(300), + [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), + [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(27), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(300), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 4), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 4), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(27), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(300), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 3), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 3), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(300), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2), + [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(300), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(300), + [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 3), + [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 3), + [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1), + [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1), + [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_term, 2), + [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_term, 2), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1), + [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1), + [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4), + [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4), + [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5), + [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 1), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 1), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 3), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 3), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 1), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 1), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_template, 2), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_template, 2), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_expr, 1), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_expr, 1), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(18), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(304), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(18), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(304), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(18), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(304), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(309), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(309), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(309), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(29), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(300), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(29), - [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(300), - [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(29), - [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(300), - [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(300), - [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attr_splat, 3), SHIFT(300), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_expr, 1), SHIFT(35), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_expr, 1), SHIFT(35), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attr_splat, 2), SHIFT(300), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(304), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(304), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(304), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(29), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(302), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(29), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(302), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(29), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(302), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(302), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attr_splat, 3), SHIFT(302), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attr_splat, 2), SHIFT(302), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operation, 3), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operation, 3), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7), [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7), [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operation, 1), [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operation, 1), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), SHIFT_REPEAT(227), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), SHIFT_REPEAT(16), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(203), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), SHIFT_REPEAT(228), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 2), SHIFT_REPEAT(16), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(202), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(213), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(242), [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(31), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(218), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(240), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 1), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(233), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(123), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 1), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(11), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, .production_id = 1), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, .production_id = 1), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(70), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(260), - [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(158), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(23), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 1), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal, 1), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(232), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(69), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 5), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(122), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 1), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 4), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_interpolation, 3), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, .production_id = 1), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(11), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, .production_id = 1), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_template_repeat1, 1), SHIFT(157), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_repeat1, 2), SHIFT_REPEAT(260), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), - [680] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1), + [672] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus diff --git a/test/corpus/templates.txt b/test/corpus/templates.txt index a9de299..7fa2d56 100644 --- a/test/corpus/templates.txt +++ b/test/corpus/templates.txt @@ -118,7 +118,9 @@ foo = "${ {a=b}[a] }" (collection_value (object (object_elem - (identifier) + (expression + (variable_expr + (identifier))) (expression (variable_expr (identifier))))))