diff --git a/grammar.js b/grammar.js index d3dec9c..af0a622 100644 --- a/grammar.js +++ b/grammar.js @@ -94,6 +94,7 @@ module.exports = grammar({ [$.primary_expression, $.rest_pattern], [$.primary_expression, $.pattern], [$.primary_expression, $._for_header], + [$.variable_declarator, $._for_header], [$.array, $.array_pattern], [$.object, $.object_pattern], [$.assignment_expression, $.pattern], @@ -313,14 +314,13 @@ module.exports = grammar({ for_statement: $ => seq( 'for', '(', - field('initializer', choice( - $.lexical_declaration, - $.variable_declaration, - $.expression_statement, - $.empty_statement, - )), + choice( + field('initializer', choice($.lexical_declaration, $.variable_declaration)), + seq(field('initializer', $._expressions), ';'), + field('initializer', $.empty_statement), + ), field('condition', choice( - $.expression_statement, + seq($._expressions, ';'), $.empty_statement, )), field('increment', optional($._expressions)), @@ -356,6 +356,7 @@ module.exports = grammar({ $.identifier, $._destructuring_pattern, )), + optional($._automatic_semicolon), ), ), field('operator', choice('in', 'of')), diff --git a/src/grammar.json b/src/grammar.json index 951dcf0..1710f82 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -924,29 +924,51 @@ "value": "(" }, { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lexical_declaration" - }, - { - "type": "SYMBOL", - "name": "variable_declaration" - }, - { - "type": "SYMBOL", - "name": "expression_statement" - }, - { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "FIELD", + "name": "initializer", + "content": { "type": "SYMBOL", "name": "empty_statement" } - ] - } + } + ] }, { "type": "FIELD", @@ -955,8 +977,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "expression_statement" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": ";" + } + ] }, { "type": "SYMBOL", @@ -1133,6 +1164,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] } ] } @@ -6686,6 +6729,10 @@ "primary_expression", "_for_header" ], + [ + "variable_declarator", + "_for_header" + ], [ "array", "array_pattern" diff --git a/src/node-types.json b/src/node-types.json index 70c497d..5ba7230 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1398,15 +1398,23 @@ ] }, "condition": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": ";", + "named": false + }, { "type": "empty_statement", "named": true }, { - "type": "expression_statement", + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", "named": true } ] @@ -1434,13 +1442,17 @@ "named": true }, { - "type": "expression_statement", + "type": "expression", "named": true }, { "type": "lexical_declaration", "named": true }, + { + "type": "sequence_expression", + "named": true + }, { "type": "variable_declaration", "named": true diff --git a/src/parser.c b/src/parser.c index 0cbb1dc..aa1e3d0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1697 -#define LARGE_STATE_COUNT 311 +#define STATE_COUNT 1743 +#define LARGE_STATE_COUNT 330 #define SYMBOL_COUNT 266 #define ALIAS_COUNT 4 #define TOKEN_COUNT 137 #define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 38 -#define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 106 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 113 enum ts_symbol_identifiers { sym_identifier = 1, @@ -44,19 +44,19 @@ enum ts_symbol_identifiers { anon_sym_switch = 18, anon_sym_for = 19, anon_sym_LPAREN = 20, - anon_sym_RPAREN = 21, - anon_sym_await = 22, - anon_sym_in = 23, - anon_sym_of = 24, - anon_sym_while = 25, - anon_sym_do = 26, - anon_sym_try = 27, - anon_sym_break = 28, - anon_sym_continue = 29, - anon_sym_debugger = 30, - anon_sym_return = 31, - anon_sym_throw = 32, - anon_sym_SEMI = 33, + anon_sym_SEMI = 21, + anon_sym_RPAREN = 22, + anon_sym_await = 23, + anon_sym_in = 24, + anon_sym_of = 25, + anon_sym_while = 26, + anon_sym_do = 27, + anon_sym_try = 28, + anon_sym_break = 29, + anon_sym_continue = 30, + anon_sym_debugger = 31, + anon_sym_return = 32, + anon_sym_throw = 33, anon_sym_COLON = 34, anon_sym_case = 35, anon_sym_catch = 36, @@ -317,6 +317,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_switch] = "switch", [anon_sym_for] = "for", [anon_sym_LPAREN] = "(", + [anon_sym_SEMI] = ";", [anon_sym_RPAREN] = ")", [anon_sym_await] = "await", [anon_sym_in] = "in", @@ -329,7 +330,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_debugger] = "debugger", [anon_sym_return] = "return", [anon_sym_throw] = "throw", - [anon_sym_SEMI] = ";", [anon_sym_COLON] = ":", [anon_sym_case] = "case", [anon_sym_catch] = "catch", @@ -590,6 +590,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_switch] = anon_sym_switch, [anon_sym_for] = anon_sym_for, [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_await] = anon_sym_await, [anon_sym_in] = anon_sym_in, @@ -602,7 +603,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_debugger] = anon_sym_debugger, [anon_sym_return] = anon_sym_return, [anon_sym_throw] = anon_sym_throw, - [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_case] = anon_sym_case, [anon_sym_catch] = anon_sym_catch, @@ -926,6 +926,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, [anon_sym_RPAREN] = { .visible = true, .named = false, @@ -974,10 +978,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -2110,9 +2110,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [100] = {.index = 188, .length = 2}, [101] = {.index = 190, .length = 4}, [102] = {.index = 194, .length = 4}, - [103] = {.index = 198, .length = 2}, - [104] = {.index = 200, .length = 4}, - [105] = {.index = 204, .length = 5}, + [103] = {.index = 198, .length = 4}, + [104] = {.index = 202, .length = 3}, + [105] = {.index = 205, .length = 2}, + [106] = {.index = 207, .length = 4}, + [107] = {.index = 211, .length = 5}, + [108] = {.index = 216, .length = 4}, + [109] = {.index = 220, .length = 5}, + [110] = {.index = 225, .length = 4}, + [111] = {.index = 229, .length = 4}, + [112] = {.index = 233, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2405,19 +2412,55 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_increment, 4}, {field_initializer, 2}, [198] = + {field_body, 6}, + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 2}, + [202] = + {field_body, 6}, + {field_condition, 4}, + {field_initializer, 2}, + [205] = {field_body, 4}, {field_parameter, 2}, - [200] = + [207] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, - [204] = + [211] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, + [216] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + [220] = + {field_body, 7}, + {field_condition, 3}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [225] = + {field_body, 7}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [229] = + {field_body, 7}, + {field_condition, 4}, + {field_condition, 5}, + {field_initializer, 2}, + [233] = + {field_body, 8}, + {field_condition, 4}, + {field_condition, 5}, + {field_increment, 6}, + {field_initializer, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2484,351 +2527,351 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 12, - [13] = 12, - [14] = 12, - [15] = 15, + [13] = 13, + [14] = 14, + [15] = 12, [16] = 16, [17] = 17, - [18] = 17, - [19] = 17, - [20] = 17, - [21] = 12, + [18] = 12, + [19] = 16, + [20] = 12, + [21] = 16, [22] = 12, - [23] = 17, - [24] = 24, - [25] = 17, - [26] = 12, + [23] = 16, + [24] = 16, + [25] = 12, + [26] = 16, [27] = 27, [28] = 28, [29] = 29, [30] = 30, - [31] = 31, + [31] = 28, [32] = 32, - [33] = 31, - [34] = 30, - [35] = 32, - [36] = 36, + [33] = 33, + [34] = 27, + [35] = 35, + [36] = 29, [37] = 37, - [38] = 29, - [39] = 39, + [38] = 30, + [39] = 35, [40] = 40, - [41] = 36, - [42] = 40, - [43] = 39, - [44] = 37, - [45] = 27, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, [46] = 46, - [47] = 46, - [48] = 46, - [49] = 46, - [50] = 46, - [51] = 51, + [47] = 32, + [48] = 40, + [49] = 33, + [50] = 41, + [51] = 42, [52] = 52, - [53] = 53, - [54] = 53, - [55] = 55, - [56] = 56, - [57] = 57, + [53] = 43, + [54] = 44, + [55] = 45, + [56] = 46, + [57] = 37, [58] = 58, - [59] = 59, - [60] = 53, - [61] = 61, - [62] = 53, + [59] = 58, + [60] = 58, + [61] = 58, + [62] = 58, [63] = 63, - [64] = 53, + [64] = 64, [65] = 65, [66] = 66, - [67] = 67, - [68] = 53, - [69] = 53, + [67] = 64, + [68] = 68, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, [73] = 73, - [74] = 74, + [74] = 64, [75] = 75, - [76] = 74, + [76] = 76, [77] = 77, - [78] = 75, - [79] = 77, - [80] = 80, + [78] = 64, + [79] = 79, + [80] = 64, [81] = 81, - [82] = 82, - [83] = 82, + [82] = 64, + [83] = 83, [84] = 84, - [85] = 84, + [85] = 85, [86] = 86, - [87] = 87, - [88] = 88, + [87] = 85, + [88] = 86, [89] = 89, [90] = 90, - [91] = 88, - [92] = 88, + [91] = 89, + [92] = 92, [93] = 93, - [94] = 94, + [94] = 90, [95] = 95, [96] = 96, - [97] = 97, - [98] = 97, - [99] = 95, + [97] = 96, + [98] = 98, + [99] = 99, [100] = 100, - [101] = 101, + [101] = 98, [102] = 102, [103] = 103, - [104] = 102, + [104] = 98, [105] = 105, [106] = 106, [107] = 107, [108] = 108, - [109] = 109, + [109] = 107, [110] = 110, [111] = 111, - [112] = 105, - [113] = 113, - [114] = 114, + [112] = 112, + [113] = 112, + [114] = 110, [115] = 115, - [116] = 113, - [117] = 114, - [118] = 109, - [119] = 108, - [120] = 110, - [121] = 108, - [122] = 107, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 117, + [120] = 116, + [121] = 118, + [122] = 115, [123] = 123, [124] = 124, - [125] = 114, - [126] = 126, + [125] = 125, + [126] = 124, [127] = 127, - [128] = 110, - [129] = 123, + [128] = 128, + [129] = 129, [130] = 130, - [131] = 109, - [132] = 115, + [131] = 131, + [132] = 132, [133] = 133, - [134] = 105, - [135] = 108, - [136] = 108, - [137] = 110, - [138] = 109, + [134] = 134, + [135] = 132, + [136] = 136, + [137] = 125, + [138] = 129, [139] = 139, - [140] = 113, - [141] = 115, - [142] = 114, - [143] = 105, - [144] = 113, - [145] = 106, - [146] = 105, - [147] = 109, - [148] = 114, - [149] = 113, - [150] = 110, - [151] = 115, - [152] = 152, - [153] = 115, - [154] = 154, - [155] = 155, - [156] = 156, + [140] = 129, + [141] = 129, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 133, + [146] = 146, + [147] = 136, + [148] = 136, + [149] = 125, + [150] = 139, + [151] = 134, + [152] = 128, + [153] = 132, + [154] = 136, + [155] = 125, + [156] = 124, [157] = 157, - [158] = 158, + [158] = 124, [159] = 159, [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 162, - [166] = 154, - [167] = 167, - [168] = 168, - [169] = 164, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, + [161] = 134, + [162] = 133, + [163] = 129, + [164] = 157, + [165] = 134, + [166] = 132, + [167] = 133, + [168] = 134, + [169] = 132, + [170] = 136, + [171] = 125, + [172] = 124, + [173] = 133, [174] = 174, - [175] = 170, + [175] = 175, [176] = 176, [177] = 177, [178] = 178, - [179] = 167, - [180] = 161, - [181] = 157, - [182] = 182, - [183] = 171, - [184] = 173, - [185] = 160, - [186] = 154, - [187] = 174, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 175, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, [188] = 188, - [189] = 177, - [190] = 156, - [191] = 159, - [192] = 178, - [193] = 158, - [194] = 158, - [195] = 156, - [196] = 156, - [197] = 176, + [189] = 189, + [190] = 174, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, [198] = 198, - [199] = 182, - [200] = 159, - [201] = 157, - [202] = 182, - [203] = 155, - [204] = 168, + [199] = 199, + [200] = 200, + [201] = 195, + [202] = 202, + [203] = 203, + [204] = 204, [205] = 177, - [206] = 188, - [207] = 161, - [208] = 168, - [209] = 174, - [210] = 154, - [211] = 160, - [212] = 173, - [213] = 171, - [214] = 182, - [215] = 157, - [216] = 161, - [217] = 167, - [218] = 178, - [219] = 177, - [220] = 167, - [221] = 168, - [222] = 163, - [223] = 163, + [206] = 179, + [207] = 181, + [208] = 183, + [209] = 184, + [210] = 185, + [211] = 186, + [212] = 187, + [213] = 188, + [214] = 189, + [215] = 191, + [216] = 194, + [217] = 202, + [218] = 218, + [219] = 176, + [220] = 203, + [221] = 175, + [222] = 193, + [223] = 223, [224] = 224, - [225] = 178, - [226] = 162, - [227] = 176, - [228] = 176, - [229] = 171, - [230] = 230, - [231] = 164, - [232] = 170, - [233] = 162, - [234] = 170, - [235] = 224, - [236] = 236, - [237] = 164, - [238] = 173, - [239] = 224, - [240] = 155, - [241] = 160, - [242] = 158, - [243] = 159, - [244] = 159, - [245] = 224, + [225] = 204, + [226] = 226, + [227] = 195, + [228] = 202, + [229] = 200, + [230] = 195, + [231] = 202, + [232] = 203, + [233] = 204, + [234] = 200, + [235] = 177, + [236] = 178, + [237] = 179, + [238] = 181, + [239] = 183, + [240] = 184, + [241] = 185, + [242] = 186, + [243] = 187, + [244] = 188, + [245] = 189, [246] = 174, - [247] = 164, - [248] = 158, - [249] = 155, - [250] = 250, - [251] = 251, - [252] = 168, - [253] = 156, - [254] = 224, - [255] = 255, - [256] = 177, - [257] = 174, - [258] = 258, - [259] = 154, - [260] = 160, - [261] = 173, - [262] = 230, - [263] = 176, - [264] = 264, - [265] = 265, - [266] = 162, - [267] = 267, - [268] = 268, - [269] = 178, - [270] = 170, - [271] = 167, - [272] = 171, - [273] = 161, - [274] = 182, - [275] = 155, - [276] = 157, - [277] = 277, - [278] = 277, - [279] = 277, - [280] = 280, - [281] = 280, - [282] = 282, - [283] = 282, - [284] = 282, - [285] = 285, - [286] = 286, - [287] = 285, - [288] = 285, - [289] = 286, - [290] = 286, - [291] = 291, - [292] = 291, - [293] = 71, - [294] = 65, - [295] = 295, + [247] = 191, + [248] = 194, + [249] = 197, + [250] = 203, + [251] = 204, + [252] = 177, + [253] = 179, + [254] = 180, + [255] = 176, + [256] = 181, + [257] = 183, + [258] = 184, + [259] = 178, + [260] = 175, + [261] = 261, + [262] = 185, + [263] = 200, + [264] = 186, + [265] = 187, + [266] = 188, + [267] = 200, + [268] = 195, + [269] = 202, + [270] = 189, + [271] = 203, + [272] = 204, + [273] = 174, + [274] = 177, + [275] = 179, + [276] = 181, + [277] = 183, + [278] = 184, + [279] = 185, + [280] = 186, + [281] = 187, + [282] = 188, + [283] = 189, + [284] = 174, + [285] = 191, + [286] = 194, + [287] = 191, + [288] = 194, + [289] = 176, + [290] = 176, + [291] = 175, + [292] = 193, + [293] = 178, + [294] = 294, + [295] = 178, [296] = 296, [297] = 297, - [298] = 298, - [299] = 291, - [300] = 291, - [301] = 297, - [302] = 302, - [303] = 291, - [304] = 296, - [305] = 70, - [306] = 306, - [307] = 302, - [308] = 73, - [309] = 291, - [310] = 302, + [298] = 297, + [299] = 297, + [300] = 300, + [301] = 301, + [302] = 301, + [303] = 301, + [304] = 300, + [305] = 305, + [306] = 305, + [307] = 307, + [308] = 307, + [309] = 305, + [310] = 307, [311] = 311, - [312] = 298, - [313] = 72, - [314] = 314, - [315] = 315, - [316] = 316, + [312] = 311, + [313] = 313, + [314] = 73, + [315] = 76, + [316] = 75, [317] = 317, - [318] = 67, - [319] = 297, - [320] = 320, - [321] = 321, + [318] = 311, + [319] = 77, + [320] = 317, + [321] = 311, [322] = 322, - [323] = 70, - [324] = 73, - [325] = 71, + [323] = 323, + [324] = 311, + [325] = 322, [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 320, + [327] = 323, + [328] = 311, + [329] = 317, + [330] = 326, [331] = 331, [332] = 332, - [333] = 333, + [333] = 75, [334] = 334, [335] = 335, - [336] = 291, - [337] = 65, + [336] = 336, + [337] = 337, [338] = 338, - [339] = 339, - [340] = 340, + [339] = 71, + [340] = 72, [341] = 341, [342] = 342, - [343] = 343, + [343] = 323, [344] = 344, [345] = 345, [346] = 346, - [347] = 347, - [348] = 348, + [347] = 76, + [348] = 77, [349] = 349, - [350] = 350, + [350] = 311, [351] = 351, - [352] = 352, + [352] = 73, [353] = 353, - [354] = 291, - [355] = 291, + [354] = 349, + [355] = 355, [356] = 356, - [357] = 357, + [357] = 311, [358] = 358, [359] = 359, [360] = 360, @@ -2856,7 +2899,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [382] = 382, [383] = 383, [384] = 384, - [385] = 379, + [385] = 385, [386] = 386, [387] = 387, [388] = 388, @@ -2869,141 +2912,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [395] = 395, [396] = 396, [397] = 397, - [398] = 306, + [398] = 398, [399] = 399, [400] = 400, [401] = 401, [402] = 402, [403] = 403, - [404] = 403, - [405] = 403, + [404] = 404, + [405] = 405, [406] = 406, [407] = 407, [408] = 408, - [409] = 329, + [409] = 409, [410] = 410, [411] = 411, [412] = 412, [413] = 413, - [414] = 414, + [414] = 331, [415] = 415, [416] = 416, - [417] = 416, + [417] = 404, [418] = 418, [419] = 419, [420] = 420, - [421] = 420, + [421] = 421, [422] = 422, [423] = 423, - [424] = 329, + [424] = 311, [425] = 425, [426] = 426, [427] = 427, [428] = 428, - [429] = 429, + [429] = 342, [430] = 430, - [431] = 410, - [432] = 416, - [433] = 416, - [434] = 420, - [435] = 435, - [436] = 406, + [431] = 431, + [432] = 430, + [433] = 433, + [434] = 434, + [435] = 430, + [436] = 436, [437] = 437, - [438] = 428, - [439] = 329, - [440] = 408, - [441] = 416, - [442] = 416, - [443] = 443, - [444] = 429, - [445] = 437, - [446] = 414, - [447] = 413, - [448] = 412, - [449] = 411, - [450] = 420, - [451] = 420, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 442, + [444] = 440, + [445] = 445, + [446] = 446, + [447] = 431, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, [452] = 452, - [453] = 427, - [454] = 408, - [455] = 420, + [453] = 342, + [454] = 454, + [455] = 431, [456] = 456, - [457] = 457, - [458] = 457, - [459] = 459, - [460] = 408, - [461] = 452, - [462] = 443, - [463] = 408, - [464] = 428, - [465] = 427, - [466] = 456, - [467] = 416, - [468] = 420, - [469] = 457, - [470] = 420, - [471] = 435, - [472] = 430, - [473] = 416, - [474] = 420, - [475] = 416, - [476] = 408, - [477] = 459, - [478] = 51, + [457] = 342, + [458] = 458, + [459] = 442, + [460] = 460, + [461] = 461, + [462] = 436, + [463] = 433, + [464] = 437, + [465] = 434, + [466] = 466, + [467] = 440, + [468] = 458, + [469] = 460, + [470] = 440, + [471] = 439, + [472] = 466, + [473] = 440, + [474] = 442, + [475] = 440, + [476] = 442, + [477] = 442, + [478] = 438, [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, + [480] = 461, + [481] = 479, + [482] = 431, [483] = 483, - [484] = 71, + [484] = 456, [485] = 485, - [486] = 486, - [487] = 65, + [486] = 485, + [487] = 487, [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 73, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 70, - [499] = 499, - [500] = 67, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 71, - [506] = 72, + [489] = 431, + [490] = 466, + [491] = 461, + [492] = 488, + [493] = 493, + [494] = 440, + [495] = 442, + [496] = 442, + [497] = 485, + [498] = 483, + [499] = 487, + [500] = 440, + [501] = 442, + [502] = 440, + [503] = 493, + [504] = 431, + [505] = 63, + [506] = 506, [507] = 507, [508] = 508, - [509] = 509, + [509] = 73, [510] = 510, - [511] = 511, - [512] = 479, + [511] = 76, + [512] = 512, [513] = 513, [514] = 514, - [515] = 65, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, [519] = 519, [520] = 520, - [521] = 73, + [521] = 521, [522] = 522, [523] = 523, [524] = 524, [525] = 525, [526] = 526, - [527] = 527, + [527] = 71, [528] = 528, - [529] = 529, + [529] = 75, [530] = 530, [531] = 531, - [532] = 532, + [532] = 77, [533] = 533, [534] = 534, [535] = 535, @@ -3011,8 +3054,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [537] = 537, [538] = 538, [539] = 539, - [540] = 481, - [541] = 480, + [540] = 540, + [541] = 541, [542] = 542, [543] = 543, [544] = 544, @@ -3021,13 +3064,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [547] = 547, [548] = 548, [549] = 549, - [550] = 67, + [550] = 550, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 72, + [556] = 556, [557] = 557, [558] = 558, [559] = 559, @@ -3049,338 +3092,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [575] = 575, [576] = 576, [577] = 577, - [578] = 70, + [578] = 578, [579] = 579, [580] = 580, [581] = 581, [582] = 582, - [583] = 552, + [583] = 583, [584] = 584, - [585] = 552, - [586] = 523, - [587] = 525, + [585] = 585, + [586] = 586, + [587] = 72, [588] = 588, - [589] = 525, - [590] = 496, - [591] = 494, - [592] = 486, - [593] = 51, - [594] = 530, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, [595] = 595, - [596] = 543, - [597] = 504, - [598] = 486, - [599] = 523, - [600] = 495, - [601] = 488, - [602] = 534, - [603] = 546, - [604] = 604, - [605] = 482, - [606] = 522, - [607] = 574, - [608] = 494, - [609] = 539, - [610] = 533, - [611] = 548, - [612] = 612, - [613] = 492, - [614] = 614, - [615] = 527, - [616] = 522, - [617] = 489, - [618] = 618, - [619] = 555, - [620] = 485, - [621] = 496, - [622] = 562, - [623] = 623, - [624] = 574, - [625] = 562, - [626] = 561, - [627] = 561, - [628] = 559, - [629] = 539, - [630] = 558, - [631] = 557, - [632] = 483, - [633] = 554, - [634] = 559, - [635] = 527, - [636] = 553, - [637] = 558, - [638] = 548, - [639] = 546, - [640] = 504, - [641] = 51, - [642] = 557, - [643] = 555, - [644] = 554, - [645] = 489, - [646] = 646, - [647] = 553, - [648] = 543, - [649] = 534, - [650] = 485, - [651] = 530, - [652] = 483, - [653] = 533, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 76, + [602] = 507, + [603] = 506, + [604] = 534, + [605] = 72, + [606] = 77, + [607] = 513, + [608] = 508, + [609] = 551, + [610] = 75, + [611] = 71, + [612] = 589, + [613] = 73, + [614] = 591, + [615] = 558, + [616] = 559, + [617] = 617, + [618] = 560, + [619] = 583, + [620] = 588, + [621] = 550, + [622] = 561, + [623] = 562, + [624] = 564, + [625] = 566, + [626] = 548, + [627] = 567, + [628] = 542, + [629] = 544, + [630] = 545, + [631] = 554, + [632] = 556, + [633] = 557, + [634] = 558, + [635] = 559, + [636] = 560, + [637] = 561, + [638] = 562, + [639] = 564, + [640] = 566, + [641] = 567, + [642] = 572, + [643] = 574, + [644] = 544, + [645] = 595, + [646] = 597, + [647] = 600, + [648] = 589, + [649] = 600, + [650] = 545, + [651] = 651, + [652] = 572, + [653] = 653, [654] = 654, - [655] = 508, + [655] = 574, [656] = 656, - [657] = 513, - [658] = 565, - [659] = 58, - [660] = 660, - [661] = 661, - [662] = 509, - [663] = 501, - [664] = 664, - [665] = 490, - [666] = 507, - [667] = 502, - [668] = 569, - [669] = 485, - [670] = 536, - [671] = 503, - [672] = 672, - [673] = 573, - [674] = 674, - [675] = 570, + [657] = 591, + [658] = 583, + [659] = 63, + [660] = 550, + [661] = 595, + [662] = 597, + [663] = 548, + [664] = 513, + [665] = 510, + [666] = 531, + [667] = 667, + [668] = 554, + [669] = 551, + [670] = 588, + [671] = 671, + [672] = 512, + [673] = 63, + [674] = 556, + [675] = 675, [676] = 676, - [677] = 674, - [678] = 516, - [679] = 551, - [680] = 575, - [681] = 581, + [677] = 557, + [678] = 542, + [679] = 534, + [680] = 528, + [681] = 540, [682] = 682, - [683] = 661, - [684] = 547, - [685] = 567, - [686] = 577, - [687] = 576, - [688] = 66, + [683] = 683, + [684] = 530, + [685] = 685, + [686] = 686, + [687] = 536, + [688] = 539, [689] = 689, [690] = 690, - [691] = 582, - [692] = 580, - [693] = 579, - [694] = 52, - [695] = 57, - [696] = 485, - [697] = 661, - [698] = 672, - [699] = 535, - [700] = 486, - [701] = 519, - [702] = 526, - [703] = 63, - [704] = 491, - [705] = 537, - [706] = 538, - [707] = 511, - [708] = 660, - [709] = 661, - [710] = 564, - [711] = 563, - [712] = 712, - [713] = 544, - [714] = 714, - [715] = 549, - [716] = 672, - [717] = 510, - [718] = 532, - [719] = 542, - [720] = 531, - [721] = 55, - [722] = 722, - [723] = 656, - [724] = 664, - [725] = 725, - [726] = 712, - [727] = 59, - [728] = 518, - [729] = 528, - [730] = 730, - [731] = 529, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 541, + [696] = 696, + [697] = 543, + [698] = 698, + [699] = 598, + [700] = 546, + [701] = 689, + [702] = 520, + [703] = 586, + [704] = 514, + [705] = 705, + [706] = 555, + [707] = 690, + [708] = 708, + [709] = 513, + [710] = 568, + [711] = 691, + [712] = 569, + [713] = 570, + [714] = 571, + [715] = 573, + [716] = 553, + [717] = 565, + [718] = 575, + [719] = 682, + [720] = 69, + [721] = 721, + [722] = 521, + [723] = 683, + [724] = 724, + [725] = 689, + [726] = 726, + [727] = 576, + [728] = 728, + [729] = 683, + [730] = 70, + [731] = 577, [732] = 732, - [733] = 526, - [734] = 618, - [735] = 483, - [736] = 489, - [737] = 520, - [738] = 489, - [739] = 560, - [740] = 483, - [741] = 486, - [742] = 517, - [743] = 56, - [744] = 499, - [745] = 545, - [746] = 566, - [747] = 725, - [748] = 514, - [749] = 749, - [750] = 497, - [751] = 571, - [752] = 752, - [753] = 524, - [754] = 568, - [755] = 572, - [756] = 756, - [757] = 574, - [758] = 758, - [759] = 496, - [760] = 539, - [761] = 562, - [762] = 527, - [763] = 561, - [764] = 522, - [765] = 552, - [766] = 494, - [767] = 767, - [768] = 559, - [769] = 769, - [770] = 558, - [771] = 557, - [772] = 555, - [773] = 682, - [774] = 554, - [775] = 553, - [776] = 548, - [777] = 546, - [778] = 543, - [779] = 534, - [780] = 533, - [781] = 781, - [782] = 530, - [783] = 783, + [733] = 79, + [734] = 547, + [735] = 651, + [736] = 533, + [737] = 83, + [738] = 84, + [739] = 537, + [740] = 740, + [741] = 683, + [742] = 742, + [743] = 743, + [744] = 65, + [745] = 549, + [746] = 517, + [747] = 522, + [748] = 66, + [749] = 538, + [750] = 552, + [751] = 580, + [752] = 581, + [753] = 593, + [754] = 535, + [755] = 582, + [756] = 68, + [757] = 540, + [758] = 685, + [759] = 584, + [760] = 585, + [761] = 551, + [762] = 589, + [763] = 721, + [764] = 726, + [765] = 732, + [766] = 534, + [767] = 708, + [768] = 590, + [769] = 740, + [770] = 592, + [771] = 513, + [772] = 594, + [773] = 596, + [774] = 742, + [775] = 743, + [776] = 599, + [777] = 578, + [778] = 515, + [779] = 516, + [780] = 693, + [781] = 518, + [782] = 579, + [783] = 519, [784] = 784, - [785] = 504, + [785] = 563, [786] = 523, - [787] = 525, - [788] = 554, - [789] = 562, - [790] = 546, - [791] = 527, - [792] = 558, + [787] = 524, + [788] = 525, + [789] = 789, + [790] = 790, + [791] = 526, + [792] = 560, [793] = 793, - [794] = 793, - [795] = 559, - [796] = 552, - [797] = 504, - [798] = 618, - [799] = 555, - [800] = 523, - [801] = 801, - [802] = 525, - [803] = 522, - [804] = 553, - [805] = 483, - [806] = 489, - [807] = 561, - [808] = 485, - [809] = 539, - [810] = 810, - [811] = 557, - [812] = 793, - [813] = 494, - [814] = 548, - [815] = 496, - [816] = 574, - [817] = 530, - [818] = 793, - [819] = 793, - [820] = 543, - [821] = 801, + [794] = 794, + [795] = 583, + [796] = 588, + [797] = 797, + [798] = 548, + [799] = 542, + [800] = 544, + [801] = 545, + [802] = 554, + [803] = 556, + [804] = 557, + [805] = 558, + [806] = 559, + [807] = 728, + [808] = 808, + [809] = 562, + [810] = 564, + [811] = 566, + [812] = 567, + [813] = 572, + [814] = 574, + [815] = 591, + [816] = 595, + [817] = 597, + [818] = 550, + [819] = 551, + [820] = 589, + [821] = 600, [822] = 534, - [823] = 712, - [824] = 533, + [823] = 823, + [824] = 824, [825] = 825, [826] = 826, - [827] = 486, - [828] = 730, - [829] = 825, - [830] = 825, - [831] = 485, - [832] = 826, - [833] = 825, - [834] = 489, - [835] = 825, - [836] = 483, - [837] = 825, - [838] = 825, - [839] = 526, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 842, - [844] = 842, - [845] = 842, - [846] = 841, - [847] = 841, - [848] = 848, - [849] = 841, - [850] = 850, - [851] = 851, - [852] = 851, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 856, - [858] = 855, - [859] = 856, - [860] = 855, - [861] = 856, - [862] = 856, - [863] = 855, - [864] = 856, - [865] = 855, - [866] = 855, - [867] = 855, - [868] = 856, - [869] = 869, - [870] = 869, - [871] = 869, - [872] = 869, - [873] = 869, - [874] = 869, - [875] = 869, + [827] = 561, + [828] = 591, + [829] = 829, + [830] = 740, + [831] = 651, + [832] = 832, + [833] = 832, + [834] = 551, + [835] = 835, + [836] = 589, + [837] = 534, + [838] = 835, + [839] = 583, + [840] = 588, + [841] = 835, + [842] = 542, + [843] = 544, + [844] = 545, + [845] = 554, + [846] = 556, + [847] = 557, + [848] = 558, + [849] = 559, + [850] = 560, + [851] = 561, + [852] = 562, + [853] = 564, + [854] = 566, + [855] = 567, + [856] = 572, + [857] = 574, + [858] = 835, + [859] = 595, + [860] = 597, + [861] = 600, + [862] = 835, + [863] = 550, + [864] = 548, + [865] = 865, + [866] = 866, + [867] = 797, + [868] = 866, + [869] = 866, + [870] = 865, + [871] = 866, + [872] = 866, + [873] = 540, + [874] = 866, + [875] = 513, [876] = 876, [877] = 877, [878] = 878, - [879] = 879, - [880] = 880, + [879] = 878, + [880] = 878, [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, + [882] = 878, + [883] = 877, + [884] = 877, + [885] = 877, [886] = 886, [887] = 887, [888] = 888, - [889] = 889, + [889] = 888, [890] = 890, [891] = 891, [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 65, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, + [893] = 892, + [894] = 891, + [895] = 892, + [896] = 891, + [897] = 892, + [898] = 892, + [899] = 892, + [900] = 891, + [901] = 891, + [902] = 891, [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, + [904] = 903, + [905] = 903, + [906] = 903, [907] = 907, - [908] = 908, - [909] = 909, + [908] = 903, + [909] = 903, [910] = 910, [911] = 911, [912] = 912, @@ -3388,7 +3431,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [914] = 914, [915] = 915, [916] = 916, - [917] = 71, + [917] = 917, [918] = 918, [919] = 919, [920] = 920, @@ -3402,26 +3445,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [928] = 928, [929] = 929, [930] = 930, - [931] = 551, + [931] = 931, [932] = 932, - [933] = 70, + [933] = 933, [934] = 934, [935] = 935, [936] = 936, [937] = 937, - [938] = 73, - [939] = 939, + [938] = 938, + [939] = 76, [940] = 940, [941] = 941, - [942] = 502, - [943] = 888, + [942] = 73, + [943] = 943, [944] = 944, [945] = 945, - [946] = 887, - [947] = 944, - [948] = 888, + [946] = 946, + [947] = 947, + [948] = 948, [949] = 949, - [950] = 890, + [950] = 950, [951] = 951, [952] = 952, [953] = 953, @@ -3429,263 +3472,263 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [955] = 955, [956] = 956, [957] = 957, - [958] = 535, - [959] = 513, - [960] = 568, - [961] = 952, - [962] = 930, - [963] = 957, - [964] = 956, - [965] = 929, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 963, + [964] = 964, + [965] = 965, [966] = 966, - [967] = 955, - [968] = 954, - [969] = 969, - [970] = 925, - [971] = 969, - [972] = 972, + [967] = 524, + [968] = 968, + [969] = 75, + [970] = 514, + [971] = 971, + [972] = 77, [973] = 973, - [974] = 972, + [974] = 974, [975] = 975, [976] = 976, [977] = 977, - [978] = 925, + [978] = 924, [979] = 979, - [980] = 980, - [981] = 923, - [982] = 980, - [983] = 979, - [984] = 973, - [985] = 919, - [986] = 966, - [987] = 953, - [988] = 988, - [989] = 989, + [980] = 976, + [981] = 925, + [982] = 925, + [983] = 919, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 936, + [989] = 940, [990] = 990, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 990, - [995] = 995, + [991] = 963, + [992] = 955, + [993] = 546, + [994] = 516, + [995] = 521, [996] = 996, - [997] = 989, + [997] = 997, [998] = 998, - [999] = 993, + [999] = 999, [1000] = 1000, - [1001] = 991, - [1002] = 992, - [1003] = 992, - [1004] = 995, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 985, [1005] = 1000, - [1006] = 998, - [1007] = 992, - [1008] = 996, - [1009] = 988, - [1010] = 992, - [1011] = 1011, - [1012] = 1011, - [1013] = 1013, - [1014] = 1011, - [1015] = 1013, - [1016] = 1013, - [1017] = 1013, - [1018] = 1011, - [1019] = 1019, + [1006] = 936, + [1007] = 990, + [1008] = 1008, + [1009] = 1009, + [1010] = 1001, + [1011] = 986, + [1012] = 987, + [1013] = 996, + [1014] = 997, + [1015] = 998, + [1016] = 999, + [1017] = 941, + [1018] = 1008, + [1019] = 1009, [1020] = 1020, [1021] = 1021, - [1022] = 1021, - [1023] = 1021, - [1024] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, [1025] = 1025, - [1026] = 1025, + [1026] = 1023, [1027] = 1027, - [1028] = 1025, - [1029] = 1027, - [1030] = 1027, - [1031] = 1025, - [1032] = 1027, - [1033] = 1033, + [1028] = 1023, + [1029] = 1023, + [1030] = 1030, + [1031] = 1031, + [1032] = 1030, + [1033] = 1021, [1034] = 1034, - [1035] = 1035, - [1036] = 1033, - [1037] = 1035, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1040, - [1042] = 1042, - [1043] = 1034, - [1044] = 1035, - [1045] = 1033, - [1046] = 1034, - [1047] = 1047, - [1048] = 1033, - [1049] = 1040, - [1050] = 1039, - [1051] = 1034, - [1052] = 1040, - [1053] = 1039, - [1054] = 1035, - [1055] = 1039, - [1056] = 1056, - [1057] = 1057, + [1035] = 1022, + [1036] = 1036, + [1037] = 1027, + [1038] = 1024, + [1039] = 1025, + [1040] = 1034, + [1041] = 1031, + [1042] = 1023, + [1043] = 1036, + [1044] = 1044, + [1045] = 1044, + [1046] = 1046, + [1047] = 1046, + [1048] = 1044, + [1049] = 1044, + [1050] = 1050, + [1051] = 1046, + [1052] = 1046, + [1053] = 1053, + [1054] = 1054, + [1055] = 1054, + [1056] = 1054, + [1057] = 1054, [1058] = 1058, [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1064, + [1060] = 1059, + [1061] = 1058, + [1062] = 1058, + [1063] = 1058, + [1064] = 1059, [1065] = 1059, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1059, - [1070] = 1059, + [1069] = 1069, + [1070] = 1066, [1071] = 1071, - [1072] = 1059, - [1073] = 1059, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1059, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 572, - [1086] = 571, - [1087] = 566, - [1088] = 560, + [1072] = 1067, + [1073] = 1069, + [1074] = 1068, + [1075] = 1066, + [1076] = 1071, + [1077] = 1067, + [1078] = 1068, + [1079] = 1069, + [1080] = 1071, + [1081] = 1068, + [1082] = 1069, + [1083] = 1066, + [1084] = 1071, + [1085] = 1067, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, [1090] = 1090, - [1091] = 509, + [1091] = 1091, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 492, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, + [1095] = 1095, + [1096] = 1094, + [1097] = 1094, + [1098] = 1094, [1099] = 1099, [1100] = 1100, - [1101] = 1076, - [1102] = 495, + [1101] = 1101, + [1102] = 1102, [1103] = 1103, - [1104] = 1068, + [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 501, - [1109] = 1084, + [1108] = 1108, + [1109] = 1094, [1110] = 1110, - [1111] = 1111, + [1111] = 1094, [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1107, + [1117] = 528, [1118] = 1118, [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 529, - [1123] = 1066, + [1120] = 579, + [1121] = 1115, + [1122] = 1122, + [1123] = 1123, [1124] = 1124, - [1125] = 1067, + [1125] = 1125, [1126] = 1126, - [1127] = 1081, + [1127] = 1127, [1128] = 1128, - [1129] = 569, - [1130] = 1130, - [1131] = 1110, - [1132] = 1132, - [1133] = 490, - [1134] = 571, + [1129] = 1129, + [1130] = 531, + [1131] = 1131, + [1132] = 1104, + [1133] = 1133, + [1134] = 1134, [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 1137, - [1141] = 1141, - [1142] = 1142, - [1143] = 1141, + [1140] = 1140, + [1141] = 582, + [1142] = 584, + [1143] = 585, [1144] = 1144, - [1145] = 1145, - [1146] = 1146, + [1145] = 581, + [1146] = 518, [1147] = 1147, - [1148] = 1145, - [1149] = 1149, - [1150] = 1089, + [1148] = 569, + [1149] = 570, + [1150] = 1150, [1151] = 1151, [1152] = 1152, - [1153] = 1135, - [1154] = 1154, + [1153] = 1153, + [1154] = 1107, [1155] = 1155, - [1156] = 509, - [1157] = 1094, - [1158] = 1137, - [1159] = 495, + [1156] = 1126, + [1157] = 1114, + [1158] = 1158, + [1159] = 525, [1160] = 1160, - [1161] = 1161, - [1162] = 560, - [1163] = 1160, - [1164] = 1164, - [1165] = 1161, - [1166] = 566, + [1161] = 1099, + [1162] = 1162, + [1163] = 1163, + [1164] = 1152, + [1165] = 1127, + [1166] = 1166, [1167] = 1167, - [1168] = 1152, - [1169] = 1137, + [1168] = 570, + [1169] = 1169, [1170] = 1170, - [1171] = 1146, - [1172] = 1164, - [1173] = 572, - [1174] = 492, + [1171] = 581, + [1172] = 582, + [1173] = 584, + [1174] = 1174, [1175] = 1175, - [1176] = 569, - [1177] = 490, - [1178] = 1135, - [1179] = 501, - [1180] = 529, - [1181] = 1155, - [1182] = 1135, - [1183] = 1183, + [1176] = 585, + [1177] = 1177, + [1178] = 1175, + [1179] = 1135, + [1180] = 1180, + [1181] = 518, + [1182] = 1166, + [1183] = 1169, [1184] = 1184, - [1185] = 1185, + [1185] = 528, [1186] = 1186, - [1187] = 1187, - [1188] = 1105, + [1187] = 525, + [1188] = 1180, [1189] = 1189, - [1190] = 1185, - [1191] = 1191, + [1190] = 569, + [1191] = 1137, [1192] = 1192, - [1193] = 1193, + [1193] = 1189, [1194] = 1194, [1195] = 1195, [1196] = 1196, - [1197] = 1189, + [1197] = 1197, [1198] = 1198, - [1199] = 1199, + [1199] = 1174, [1200] = 1200, - [1201] = 1198, - [1202] = 1196, - [1203] = 1191, - [1204] = 1204, - [1205] = 1205, - [1206] = 1191, + [1201] = 1201, + [1202] = 1166, + [1203] = 1203, + [1204] = 1166, + [1205] = 579, + [1206] = 1198, [1207] = 1207, - [1208] = 1189, + [1208] = 1186, [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1186, - [1213] = 1213, - [1214] = 1214, + [1210] = 1167, + [1211] = 1169, + [1212] = 1170, + [1213] = 531, + [1214] = 1169, [1215] = 1215, [1216] = 1216, [1217] = 1217, @@ -3694,174 +3737,174 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 1139, + [1223] = 1218, [1224] = 1224, [1225] = 1225, - [1226] = 1204, - [1227] = 1215, - [1228] = 1198, - [1229] = 1196, - [1230] = 1196, - [1231] = 1222, - [1232] = 1232, - [1233] = 1120, - [1234] = 1119, - [1235] = 1128, - [1236] = 1236, - [1237] = 1237, - [1238] = 1198, - [1239] = 1236, - [1240] = 1210, - [1241] = 1207, - [1242] = 1115, - [1243] = 1243, - [1244] = 1214, + [1226] = 1226, + [1227] = 1227, + [1228] = 1138, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1215, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1229, + [1237] = 1230, + [1238] = 1238, + [1239] = 1239, + [1240] = 1233, + [1241] = 1234, + [1242] = 1242, + [1243] = 1221, + [1244] = 1244, [1245] = 1245, - [1246] = 1219, + [1246] = 1233, [1247] = 1247, - [1248] = 1191, + [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1211, + [1253] = 1253, [1254] = 1254, - [1255] = 1254, - [1256] = 1189, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, + [1255] = 1255, + [1256] = 1256, + [1257] = 1234, + [1258] = 1224, + [1259] = 1112, + [1260] = 1229, + [1261] = 1230, [1262] = 1262, [1263] = 1263, [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1266, - [1268] = 314, + [1265] = 1251, + [1266] = 1229, + [1267] = 1230, + [1268] = 1268, [1269] = 1269, - [1270] = 1270, + [1270] = 1102, [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1272] = 1216, + [1273] = 1222, + [1274] = 1264, [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, + [1276] = 1242, + [1277] = 1220, + [1278] = 1252, [1279] = 1279, - [1280] = 1280, - [1281] = 1281, + [1280] = 1233, + [1281] = 1234, [1282] = 1282, - [1283] = 1283, + [1283] = 1269, [1284] = 1284, [1285] = 1285, - [1286] = 1269, - [1287] = 1287, - [1288] = 1281, - [1289] = 1289, + [1286] = 1158, + [1287] = 1160, + [1288] = 1288, + [1289] = 1268, [1290] = 1290, [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 1282, + [1294] = 1294, [1295] = 1295, - [1296] = 1277, + [1296] = 1296, [1297] = 1297, - [1298] = 1275, + [1298] = 1298, [1299] = 1299, [1300] = 1300, - [1301] = 1271, + [1301] = 1301, [1302] = 1302, [1303] = 1303, [1304] = 1304, [1305] = 1305, - [1306] = 1306, + [1306] = 1290, [1307] = 1307, [1308] = 1308, [1309] = 1309, [1310] = 1310, - [1311] = 1303, - [1312] = 1276, + [1311] = 1311, + [1312] = 1312, [1313] = 1313, - [1314] = 1281, + [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1261, - [1318] = 1260, - [1319] = 1297, - [1320] = 1289, - [1321] = 1280, - [1322] = 1278, - [1323] = 1273, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 351, + [1323] = 1323, [1324] = 1324, - [1325] = 1274, - [1326] = 1326, - [1327] = 1327, + [1325] = 1293, + [1326] = 1316, + [1327] = 1316, [1328] = 1328, [1329] = 1329, - [1330] = 1290, - [1331] = 1299, - [1332] = 1300, - [1333] = 1333, - [1334] = 1273, + [1330] = 1299, + [1331] = 1304, + [1332] = 1312, + [1333] = 1305, + [1334] = 1328, [1335] = 1329, - [1336] = 1281, - [1337] = 1277, - [1338] = 1275, - [1339] = 1282, - [1340] = 1271, - [1341] = 1341, - [1342] = 1290, - [1343] = 1305, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1317, + [1341] = 1308, + [1342] = 1342, + [1343] = 1343, [1344] = 1344, - [1345] = 1306, + [1345] = 1345, [1346] = 1346, - [1347] = 1307, - [1348] = 1310, + [1347] = 1347, + [1348] = 1297, [1349] = 1349, - [1350] = 1306, + [1350] = 1350, [1351] = 1351, - [1352] = 1307, - [1353] = 1353, - [1354] = 1274, - [1355] = 1272, - [1356] = 1356, - [1357] = 1357, - [1358] = 1357, - [1359] = 1359, - [1360] = 1360, + [1352] = 1303, + [1353] = 1297, + [1354] = 1354, + [1355] = 1355, + [1356] = 1312, + [1357] = 1317, + [1358] = 1318, + [1359] = 1319, + [1360] = 1351, [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, + [1362] = 1350, + [1363] = 1343, + [1364] = 1354, + [1365] = 1336, [1366] = 1366, [1367] = 1367, - [1368] = 1368, + [1368] = 1314, [1369] = 1369, - [1370] = 1370, + [1370] = 1351, [1371] = 1371, [1372] = 1372, [1373] = 1373, - [1374] = 1374, - [1375] = 1375, + [1374] = 1308, + [1375] = 1291, [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1377] = 1328, + [1378] = 1329, + [1379] = 1297, + [1380] = 1369, + [1381] = 1372, + [1382] = 1355, + [1383] = 1350, [1384] = 1384, - [1385] = 1385, + [1385] = 1369, [1386] = 1386, - [1387] = 1237, + [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 1390, + [1389] = 1323, + [1390] = 1315, [1391] = 1391, [1392] = 1392, [1393] = 1393, @@ -3898,37 +3941,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1391, + [1427] = 1427, [1428] = 1428, - [1429] = 1359, + [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, + [1433] = 1397, + [1434] = 1403, + [1435] = 1404, + [1436] = 1410, [1437] = 1437, [1438] = 1438, - [1439] = 1439, + [1439] = 1420, [1440] = 1440, - [1441] = 1441, + [1441] = 1421, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, + [1445] = 1415, + [1446] = 1422, + [1447] = 1417, [1448] = 1448, - [1449] = 1449, + [1449] = 1405, [1450] = 1450, [1451] = 1451, - [1452] = 1452, + [1452] = 1395, [1453] = 1453, [1454] = 1454, [1455] = 1455, [1456] = 1456, - [1457] = 1457, + [1457] = 1392, [1458] = 1458, [1459] = 1459, [1460] = 1460, @@ -3938,236 +3981,282 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1467, - [1468] = 1371, + [1467] = 1451, + [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1360, + [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1473, - [1479] = 1359, + [1476] = 1472, + [1477] = 593, + [1478] = 1458, + [1479] = 1479, [1480] = 1480, - [1481] = 1391, - [1482] = 1428, - [1483] = 1470, - [1484] = 1469, - [1485] = 1466, - [1486] = 1456, - [1487] = 1440, - [1488] = 1439, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1482, + [1485] = 1453, + [1486] = 1454, + [1487] = 1456, + [1488] = 1488, [1489] = 1489, [1490] = 1490, - [1491] = 1491, + [1491] = 1489, [1492] = 1492, - [1493] = 1493, - [1494] = 1435, - [1495] = 1430, + [1493] = 1461, + [1494] = 1494, + [1495] = 1463, [1496] = 1496, [1497] = 1497, - [1498] = 1377, + [1498] = 1498, [1499] = 1499, - [1500] = 1421, - [1501] = 1420, - [1502] = 1413, - [1503] = 1412, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 1409, - [1506] = 1506, - [1507] = 1493, - [1508] = 1408, - [1509] = 1407, - [1510] = 1491, - [1511] = 1404, - [1512] = 1400, - [1513] = 1393, - [1514] = 1392, - [1515] = 575, - [1516] = 1516, - [1517] = 1517, - [1518] = 1372, + [1505] = 1505, + [1506] = 1499, + [1507] = 1470, + [1508] = 1490, + [1509] = 1501, + [1510] = 1510, + [1511] = 1502, + [1512] = 1503, + [1513] = 1513, + [1514] = 1460, + [1515] = 1515, + [1516] = 1244, + [1517] = 1416, + [1518] = 1418, [1519] = 1519, - [1520] = 1480, + [1520] = 1520, [1521] = 1521, - [1522] = 1504, - [1523] = 1362, - [1524] = 1373, - [1525] = 1380, - [1526] = 1384, - [1527] = 1386, - [1528] = 1405, - [1529] = 1460, - [1530] = 1449, - [1531] = 1448, - [1532] = 1446, - [1533] = 1445, - [1534] = 1444, + [1522] = 1522, + [1523] = 1393, + [1524] = 1440, + [1525] = 1442, + [1526] = 1526, + [1527] = 1407, + [1528] = 1406, + [1529] = 1408, + [1530] = 1423, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, [1535] = 1535, - [1536] = 577, - [1537] = 1426, - [1538] = 1425, - [1539] = 1410, - [1540] = 1416, - [1541] = 1541, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1473, [1542] = 1542, - [1543] = 1411, - [1544] = 1385, - [1545] = 1383, - [1546] = 1382, - [1547] = 1381, - [1548] = 1379, - [1549] = 1378, - [1550] = 1375, - [1551] = 1374, - [1552] = 1368, - [1553] = 1365, - [1554] = 1364, - [1555] = 1363, - [1556] = 1414, + [1543] = 1526, + [1544] = 1544, + [1545] = 1515, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1396, + [1550] = 1411, + [1551] = 1414, + [1552] = 1419, + [1553] = 1412, + [1554] = 1554, + [1555] = 1531, + [1556] = 1556, [1557] = 1557, - [1558] = 1389, - [1559] = 1424, - [1560] = 1415, - [1561] = 1419, - [1562] = 1433, - [1563] = 1431, - [1564] = 1477, - [1565] = 1434, - [1566] = 1432, - [1567] = 1443, - [1568] = 1568, - [1569] = 1461, - [1570] = 1476, + [1558] = 1556, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1399, + [1563] = 1424, + [1564] = 1532, + [1565] = 1565, + [1566] = 1415, + [1567] = 1400, + [1568] = 1533, + [1569] = 1415, + [1570] = 1417, [1571] = 1571, [1572] = 1572, - [1573] = 1359, - [1574] = 1391, - [1575] = 1575, - [1576] = 1576, - [1577] = 1489, - [1578] = 1578, - [1579] = 1579, - [1580] = 1499, - [1581] = 1490, - [1582] = 1492, - [1583] = 1583, - [1584] = 1496, - [1585] = 516, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1572, + [1573] = 1534, + [1574] = 1542, + [1575] = 1417, + [1576] = 1535, + [1577] = 1577, + [1578] = 1401, + [1579] = 1536, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1537, + [1584] = 1538, + [1585] = 1585, + [1586] = 1539, + [1587] = 1402, + [1588] = 1540, + [1589] = 576, [1590] = 1590, - [1591] = 1455, - [1592] = 1592, - [1593] = 1452, - [1594] = 1450, - [1595] = 1595, - [1596] = 1557, + [1591] = 1591, + [1592] = 577, + [1593] = 1585, + [1594] = 1594, + [1595] = 1443, + [1596] = 1596, [1597] = 1597, [1598] = 1598, - [1599] = 1597, - [1600] = 1598, - [1601] = 1471, - [1602] = 1475, - [1603] = 1603, + [1599] = 1599, + [1600] = 1600, + [1601] = 1498, + [1602] = 1602, + [1603] = 1426, [1604] = 1604, - [1605] = 1247, - [1606] = 1606, - [1607] = 1606, - [1608] = 1608, + [1605] = 1398, + [1606] = 1427, + [1607] = 1594, + [1608] = 1429, [1609] = 1609, - [1610] = 1610, + [1610] = 1520, [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, + [1612] = 1431, + [1613] = 1409, + [1614] = 1560, [1615] = 1615, [1616] = 1616, [1617] = 1617, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1614, - [1623] = 1613, + [1618] = 1394, + [1619] = 1432, + [1620] = 1547, + [1621] = 1500, + [1622] = 1622, + [1623] = 1623, [1624] = 1624, - [1625] = 1611, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, + [1625] = 1625, + [1626] = 1521, + [1627] = 1462, + [1628] = 1548, [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1634, + [1630] = 1455, + [1631] = 1522, + [1632] = 1459, + [1633] = 1448, + [1634] = 1596, [1635] = 1635, [1636] = 1636, - [1637] = 1606, + [1637] = 1637, [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1634, + [1642] = 1642, [1643] = 1643, - [1644] = 1617, + [1644] = 1644, [1645] = 1645, - [1646] = 1643, - [1647] = 1634, - [1648] = 1617, - [1649] = 1614, - [1650] = 1613, - [1651] = 1611, - [1652] = 1643, - [1653] = 1653, + [1646] = 1646, + [1647] = 1643, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1638, [1654] = 1654, [1655] = 1655, - [1656] = 1656, - [1657] = 1657, + [1656] = 1644, + [1657] = 1643, [1658] = 1658, [1659] = 1659, - [1660] = 1604, - [1661] = 1621, - [1662] = 1662, - [1663] = 1627, - [1664] = 1612, - [1665] = 1618, + [1660] = 1660, + [1661] = 1661, + [1662] = 1648, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, [1666] = 1666, [1667] = 1667, - [1668] = 1668, + [1668] = 1658, [1669] = 1669, [1670] = 1670, [1671] = 1671, - [1672] = 1604, + [1672] = 1672, [1673] = 1673, - [1674] = 1621, + [1674] = 1640, [1675] = 1675, - [1676] = 1666, - [1677] = 1612, - [1678] = 1612, - [1679] = 1604, - [1680] = 1611, - [1681] = 1613, - [1682] = 1614, - [1683] = 1606, - [1684] = 1634, - [1685] = 1633, - [1686] = 1632, - [1687] = 1612, - [1688] = 1621, - [1689] = 1604, - [1690] = 1656, - [1691] = 1611, - [1692] = 1613, - [1693] = 1643, - [1694] = 1617, - [1695] = 1614, - [1696] = 1621, + [1676] = 1676, + [1677] = 1640, + [1678] = 1678, + [1679] = 1641, + [1680] = 1648, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, + [1684] = 1678, + [1685] = 1685, + [1686] = 1686, + [1687] = 1282, + [1688] = 1688, + [1689] = 1682, + [1690] = 1690, + [1691] = 1654, + [1692] = 1665, + [1693] = 1642, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1681, + [1698] = 1638, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1638, + [1703] = 1676, + [1704] = 1704, + [1705] = 1641, + [1706] = 1706, + [1707] = 1686, + [1708] = 1676, + [1709] = 1709, + [1710] = 1654, + [1711] = 1641, + [1712] = 1654, + [1713] = 1665, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1665, + [1718] = 1715, + [1719] = 1640, + [1720] = 1640, + [1721] = 1721, + [1722] = 1682, + [1723] = 1676, + [1724] = 1654, + [1725] = 1665, + [1726] = 1726, + [1727] = 1643, + [1728] = 1646, + [1729] = 1729, + [1730] = 1648, + [1731] = 1682, + [1732] = 1646, + [1733] = 1733, + [1734] = 1661, + [1735] = 1646, + [1736] = 1721, + [1737] = 1682, + [1738] = 1676, + [1739] = 1659, + [1740] = 1673, + [1741] = 1648, + [1742] = 1667, }; static TSCharacterRange extras_character_set_1[] = { @@ -4200,7 +4289,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 241, '\'', 200, '(', 155, - ')', 156, + ')', 157, '*', 150, '+', 248, ',', 153, @@ -4209,7 +4298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 293, '0', 298, ':', 158, - ';', 157, + ';', 156, '<', 185, '=', 161, '>', 191, @@ -4280,7 +4369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 31, '/', 251, '0', 298, - ';', 157, + ';', 156, '<', 189, '@', 317, '[', 163, @@ -4336,7 +4425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 241, '\'', 200, '(', 155, - ')', 156, + ')', 157, '*', 150, '+', 248, ',', 153, @@ -4345,7 +4434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 252, '0', 298, ':', 158, - ';', 157, + ';', 156, '<', 186, '=', 161, '>', 191, @@ -4371,7 +4460,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '%', 253, '&', 242, '(', 155, - ')', 156, + ')', 157, '*', 151, '+', 247, ',', 153, @@ -4379,7 +4468,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 194, '/', 251, ':', 158, - ';', 157, + ';', 156, '<', 187, '=', 160, '>', 192, @@ -4404,7 +4493,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '%', 253, '&', 242, '(', 155, - ')', 156, + ')', 157, '*', 151, '+', 247, ',', 153, @@ -4412,7 +4501,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 194, '/', 251, ':', 158, - ';', 157, + ';', 156, '<', 187, '=', 78, '>', 192, @@ -4438,7 +4527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '%', 253, '&', 242, '(', 155, - ')', 156, + ')', 157, '*', 151, '+', 247, ',', 153, @@ -4446,7 +4535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 194, '/', 251, ':', 158, - ';', 157, + ';', 156, '<', 187, '=', 78, '>', 192, @@ -5137,7 +5226,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 241, '\'', 200, '(', 155, - ')', 156, + ')', 157, '*', 150, '+', 248, ',', 153, @@ -5146,7 +5235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 252, '0', 298, ':', 158, - ';', 157, + ';', 156, '<', 185, '=', 161, '>', 191, @@ -5177,7 +5266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 242, '\'', 200, '(', 155, - ')', 156, + ')', 157, '*', 151, '+', 247, ',', 153, @@ -5186,7 +5275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 251, '0', 298, ':', 158, - ';', 157, + ';', 156, '<', 188, '=', 160, '>', 192, @@ -5214,7 +5303,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 5, '\'', 200, '(', 155, - ')', 156, + ')', 157, '*', 149, '+', 247, ',', 153, @@ -5223,7 +5312,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 251, '0', 298, ':', 158, - ';', 157, + ';', 156, '<', 189, '=', 162, '>', 190, @@ -5276,10 +5365,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 158: ACCEPT_TOKEN(anon_sym_COLON); @@ -6909,45 +6998,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [43] = {.lex_state = 146, .external_lex_state = 2}, [44] = {.lex_state = 146, .external_lex_state = 2}, [45] = {.lex_state = 146, .external_lex_state = 2}, - [46] = {.lex_state = 145, .external_lex_state = 3}, - [47] = {.lex_state = 145, .external_lex_state = 4}, - [48] = {.lex_state = 145, .external_lex_state = 4}, - [49] = {.lex_state = 145, .external_lex_state = 3}, - [50] = {.lex_state = 145, .external_lex_state = 3}, - [51] = {.lex_state = 145, .external_lex_state = 4}, - [52] = {.lex_state = 145, .external_lex_state = 4}, + [46] = {.lex_state = 146, .external_lex_state = 2}, + [47] = {.lex_state = 146, .external_lex_state = 2}, + [48] = {.lex_state = 146, .external_lex_state = 2}, + [49] = {.lex_state = 146, .external_lex_state = 2}, + [50] = {.lex_state = 146, .external_lex_state = 2}, + [51] = {.lex_state = 146, .external_lex_state = 2}, + [52] = {.lex_state = 146, .external_lex_state = 2}, [53] = {.lex_state = 146, .external_lex_state = 2}, [54] = {.lex_state = 146, .external_lex_state = 2}, - [55] = {.lex_state = 145, .external_lex_state = 4}, - [56] = {.lex_state = 145, .external_lex_state = 4}, - [57] = {.lex_state = 145, .external_lex_state = 4}, - [58] = {.lex_state = 145, .external_lex_state = 4}, + [55] = {.lex_state = 146, .external_lex_state = 2}, + [56] = {.lex_state = 146, .external_lex_state = 2}, + [57] = {.lex_state = 146, .external_lex_state = 2}, + [58] = {.lex_state = 145, .external_lex_state = 3}, [59] = {.lex_state = 145, .external_lex_state = 4}, - [60] = {.lex_state = 146, .external_lex_state = 2}, - [61] = {.lex_state = 146, .external_lex_state = 2}, - [62] = {.lex_state = 146, .external_lex_state = 2}, + [60] = {.lex_state = 145, .external_lex_state = 4}, + [61] = {.lex_state = 145, .external_lex_state = 3}, + [62] = {.lex_state = 145, .external_lex_state = 3}, [63] = {.lex_state = 145, .external_lex_state = 4}, [64] = {.lex_state = 146, .external_lex_state = 2}, [65] = {.lex_state = 145, .external_lex_state = 4}, [66] = {.lex_state = 145, .external_lex_state = 4}, - [67] = {.lex_state = 145, .external_lex_state = 4}, - [68] = {.lex_state = 146, .external_lex_state = 2}, - [69] = {.lex_state = 146, .external_lex_state = 2}, + [67] = {.lex_state = 146, .external_lex_state = 2}, + [68] = {.lex_state = 145, .external_lex_state = 4}, + [69] = {.lex_state = 145, .external_lex_state = 4}, [70] = {.lex_state = 145, .external_lex_state = 4}, [71] = {.lex_state = 145, .external_lex_state = 4}, [72] = {.lex_state = 145, .external_lex_state = 4}, [73] = {.lex_state = 145, .external_lex_state = 4}, [74] = {.lex_state = 146, .external_lex_state = 2}, - [75] = {.lex_state = 146, .external_lex_state = 2}, - [76] = {.lex_state = 146, .external_lex_state = 2}, - [77] = {.lex_state = 146, .external_lex_state = 2}, + [75] = {.lex_state = 145, .external_lex_state = 4}, + [76] = {.lex_state = 145, .external_lex_state = 4}, + [77] = {.lex_state = 145, .external_lex_state = 4}, [78] = {.lex_state = 146, .external_lex_state = 2}, - [79] = {.lex_state = 146, .external_lex_state = 2}, + [79] = {.lex_state = 145, .external_lex_state = 4}, [80] = {.lex_state = 146, .external_lex_state = 2}, [81] = {.lex_state = 146, .external_lex_state = 2}, [82] = {.lex_state = 146, .external_lex_state = 2}, - [83] = {.lex_state = 146, .external_lex_state = 2}, - [84] = {.lex_state = 146, .external_lex_state = 2}, + [83] = {.lex_state = 145, .external_lex_state = 4}, + [84] = {.lex_state = 145, .external_lex_state = 4}, [85] = {.lex_state = 146, .external_lex_state = 2}, [86] = {.lex_state = 146, .external_lex_state = 2}, [87] = {.lex_state = 146, .external_lex_state = 2}, @@ -6964,17 +7053,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [98] = {.lex_state = 146, .external_lex_state = 2}, [99] = {.lex_state = 146, .external_lex_state = 2}, [100] = {.lex_state = 146, .external_lex_state = 2}, - [101] = {.lex_state = 146, .external_lex_state = 5}, + [101] = {.lex_state = 146, .external_lex_state = 2}, [102] = {.lex_state = 146, .external_lex_state = 2}, [103] = {.lex_state = 146, .external_lex_state = 2}, [104] = {.lex_state = 146, .external_lex_state = 2}, [105] = {.lex_state = 146, .external_lex_state = 2}, [106] = {.lex_state = 146, .external_lex_state = 2}, [107] = {.lex_state = 146, .external_lex_state = 2}, - [108] = {.lex_state = 7, .external_lex_state = 2}, + [108] = {.lex_state = 146, .external_lex_state = 2}, [109] = {.lex_state = 146, .external_lex_state = 2}, [110] = {.lex_state = 146, .external_lex_state = 2}, - [111] = {.lex_state = 146, .external_lex_state = 2}, + [111] = {.lex_state = 146, .external_lex_state = 5}, [112] = {.lex_state = 146, .external_lex_state = 2}, [113] = {.lex_state = 146, .external_lex_state = 2}, [114] = {.lex_state = 146, .external_lex_state = 2}, @@ -6982,9 +7071,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 146, .external_lex_state = 2}, [117] = {.lex_state = 146, .external_lex_state = 2}, [118] = {.lex_state = 146, .external_lex_state = 2}, - [119] = {.lex_state = 7, .external_lex_state = 2}, + [119] = {.lex_state = 146, .external_lex_state = 2}, [120] = {.lex_state = 146, .external_lex_state = 2}, - [121] = {.lex_state = 7, .external_lex_state = 2}, + [121] = {.lex_state = 146, .external_lex_state = 2}, [122] = {.lex_state = 146, .external_lex_state = 2}, [123] = {.lex_state = 146, .external_lex_state = 2}, [124] = {.lex_state = 146, .external_lex_state = 2}, @@ -6992,19 +7081,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 146, .external_lex_state = 2}, [127] = {.lex_state = 146, .external_lex_state = 2}, [128] = {.lex_state = 146, .external_lex_state = 2}, - [129] = {.lex_state = 146, .external_lex_state = 2}, + [129] = {.lex_state = 7, .external_lex_state = 2}, [130] = {.lex_state = 146, .external_lex_state = 2}, [131] = {.lex_state = 146, .external_lex_state = 2}, [132] = {.lex_state = 146, .external_lex_state = 2}, [133] = {.lex_state = 146, .external_lex_state = 2}, [134] = {.lex_state = 146, .external_lex_state = 2}, - [135] = {.lex_state = 7, .external_lex_state = 2}, - [136] = {.lex_state = 7, .external_lex_state = 2}, + [135] = {.lex_state = 146, .external_lex_state = 2}, + [136] = {.lex_state = 146, .external_lex_state = 2}, [137] = {.lex_state = 146, .external_lex_state = 2}, - [138] = {.lex_state = 146, .external_lex_state = 2}, + [138] = {.lex_state = 7, .external_lex_state = 2}, [139] = {.lex_state = 146, .external_lex_state = 2}, - [140] = {.lex_state = 146, .external_lex_state = 2}, - [141] = {.lex_state = 146, .external_lex_state = 2}, + [140] = {.lex_state = 7, .external_lex_state = 2}, + [141] = {.lex_state = 7, .external_lex_state = 2}, [142] = {.lex_state = 146, .external_lex_state = 2}, [143] = {.lex_state = 146, .external_lex_state = 2}, [144] = {.lex_state = 146, .external_lex_state = 2}, @@ -7026,7 +7115,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [160] = {.lex_state = 146, .external_lex_state = 2}, [161] = {.lex_state = 146, .external_lex_state = 2}, [162] = {.lex_state = 146, .external_lex_state = 2}, - [163] = {.lex_state = 146, .external_lex_state = 2}, + [163] = {.lex_state = 7, .external_lex_state = 2}, [164] = {.lex_state = 146, .external_lex_state = 2}, [165] = {.lex_state = 146, .external_lex_state = 2}, [166] = {.lex_state = 146, .external_lex_state = 2}, @@ -7140,87 +7229,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 146, .external_lex_state = 2}, [275] = {.lex_state = 146, .external_lex_state = 2}, [276] = {.lex_state = 146, .external_lex_state = 2}, - [277] = {.lex_state = 8, .external_lex_state = 4}, - [278] = {.lex_state = 8, .external_lex_state = 4}, - [279] = {.lex_state = 8, .external_lex_state = 4}, - [280] = {.lex_state = 8, .external_lex_state = 4}, - [281] = {.lex_state = 8, .external_lex_state = 4}, - [282] = {.lex_state = 8, .external_lex_state = 4}, - [283] = {.lex_state = 8, .external_lex_state = 4}, - [284] = {.lex_state = 8, .external_lex_state = 4}, - [285] = {.lex_state = 8, .external_lex_state = 4}, - [286] = {.lex_state = 8, .external_lex_state = 4}, - [287] = {.lex_state = 8, .external_lex_state = 4}, - [288] = {.lex_state = 8, .external_lex_state = 4}, - [289] = {.lex_state = 8, .external_lex_state = 4}, - [290] = {.lex_state = 8, .external_lex_state = 4}, - [291] = {.lex_state = 8, .external_lex_state = 3}, - [292] = {.lex_state = 8, .external_lex_state = 3}, - [293] = {.lex_state = 146, .external_lex_state = 5}, - [294] = {.lex_state = 146, .external_lex_state = 5}, + [277] = {.lex_state = 146, .external_lex_state = 2}, + [278] = {.lex_state = 146, .external_lex_state = 2}, + [279] = {.lex_state = 146, .external_lex_state = 2}, + [280] = {.lex_state = 146, .external_lex_state = 2}, + [281] = {.lex_state = 146, .external_lex_state = 2}, + [282] = {.lex_state = 146, .external_lex_state = 2}, + [283] = {.lex_state = 146, .external_lex_state = 2}, + [284] = {.lex_state = 146, .external_lex_state = 2}, + [285] = {.lex_state = 146, .external_lex_state = 2}, + [286] = {.lex_state = 146, .external_lex_state = 2}, + [287] = {.lex_state = 146, .external_lex_state = 2}, + [288] = {.lex_state = 146, .external_lex_state = 2}, + [289] = {.lex_state = 146, .external_lex_state = 2}, + [290] = {.lex_state = 146, .external_lex_state = 2}, + [291] = {.lex_state = 146, .external_lex_state = 2}, + [292] = {.lex_state = 146, .external_lex_state = 2}, + [293] = {.lex_state = 146, .external_lex_state = 2}, + [294] = {.lex_state = 146, .external_lex_state = 2}, [295] = {.lex_state = 146, .external_lex_state = 2}, - [296] = {.lex_state = 8, .external_lex_state = 4}, - [297] = {.lex_state = 8, .external_lex_state = 3}, - [298] = {.lex_state = 8, .external_lex_state = 3}, + [296] = {.lex_state = 146, .external_lex_state = 2}, + [297] = {.lex_state = 8, .external_lex_state = 4}, + [298] = {.lex_state = 8, .external_lex_state = 4}, [299] = {.lex_state = 8, .external_lex_state = 4}, [300] = {.lex_state = 8, .external_lex_state = 4}, - [301] = {.lex_state = 8, .external_lex_state = 3}, + [301] = {.lex_state = 8, .external_lex_state = 4}, [302] = {.lex_state = 8, .external_lex_state = 4}, [303] = {.lex_state = 8, .external_lex_state = 4}, [304] = {.lex_state = 8, .external_lex_state = 4}, - [305] = {.lex_state = 146, .external_lex_state = 2}, + [305] = {.lex_state = 8, .external_lex_state = 4}, [306] = {.lex_state = 8, .external_lex_state = 4}, [307] = {.lex_state = 8, .external_lex_state = 4}, - [308] = {.lex_state = 146, .external_lex_state = 2}, + [308] = {.lex_state = 8, .external_lex_state = 4}, [309] = {.lex_state = 8, .external_lex_state = 4}, [310] = {.lex_state = 8, .external_lex_state = 4}, - [311] = {.lex_state = 146, .external_lex_state = 2}, + [311] = {.lex_state = 8, .external_lex_state = 3}, [312] = {.lex_state = 8, .external_lex_state = 3}, - [313] = {.lex_state = 146, .external_lex_state = 5}, - [314] = {.lex_state = 146, .external_lex_state = 2}, - [315] = {.lex_state = 146, .external_lex_state = 2}, - [316] = {.lex_state = 146, .external_lex_state = 5}, - [317] = {.lex_state = 146, .external_lex_state = 5}, - [318] = {.lex_state = 146, .external_lex_state = 5}, - [319] = {.lex_state = 8, .external_lex_state = 3}, + [313] = {.lex_state = 146, .external_lex_state = 2}, + [314] = {.lex_state = 146, .external_lex_state = 5}, + [315] = {.lex_state = 146, .external_lex_state = 5}, + [316] = {.lex_state = 146, .external_lex_state = 2}, + [317] = {.lex_state = 8, .external_lex_state = 4}, + [318] = {.lex_state = 8, .external_lex_state = 4}, + [319] = {.lex_state = 146, .external_lex_state = 2}, [320] = {.lex_state = 8, .external_lex_state = 4}, - [321] = {.lex_state = 146, .external_lex_state = 5}, - [322] = {.lex_state = 146, .external_lex_state = 2}, - [323] = {.lex_state = 146, .external_lex_state = 5}, - [324] = {.lex_state = 146, .external_lex_state = 5}, - [325] = {.lex_state = 146, .external_lex_state = 5}, - [326] = {.lex_state = 146, .external_lex_state = 5}, - [327] = {.lex_state = 146, .external_lex_state = 2}, - [328] = {.lex_state = 146, .external_lex_state = 5}, - [329] = {.lex_state = 146, .external_lex_state = 5}, - [330] = {.lex_state = 8, .external_lex_state = 4}, - [331] = {.lex_state = 146, .external_lex_state = 5}, + [321] = {.lex_state = 8, .external_lex_state = 4}, + [322] = {.lex_state = 8, .external_lex_state = 4}, + [323] = {.lex_state = 8, .external_lex_state = 3}, + [324] = {.lex_state = 8, .external_lex_state = 4}, + [325] = {.lex_state = 8, .external_lex_state = 4}, + [326] = {.lex_state = 8, .external_lex_state = 3}, + [327] = {.lex_state = 8, .external_lex_state = 3}, + [328] = {.lex_state = 8, .external_lex_state = 4}, + [329] = {.lex_state = 8, .external_lex_state = 4}, + [330] = {.lex_state = 8, .external_lex_state = 3}, + [331] = {.lex_state = 8, .external_lex_state = 3}, [332] = {.lex_state = 146, .external_lex_state = 2}, [333] = {.lex_state = 146, .external_lex_state = 5}, [334] = {.lex_state = 146, .external_lex_state = 5}, [335] = {.lex_state = 146, .external_lex_state = 5}, - [336] = {.lex_state = 8, .external_lex_state = 3}, - [337] = {.lex_state = 146, .external_lex_state = 5}, - [338] = {.lex_state = 146, .external_lex_state = 2}, - [339] = {.lex_state = 146, .external_lex_state = 2}, - [340] = {.lex_state = 146, .external_lex_state = 2}, - [341] = {.lex_state = 146, .external_lex_state = 2}, - [342] = {.lex_state = 146, .external_lex_state = 2}, - [343] = {.lex_state = 146, .external_lex_state = 2}, + [336] = {.lex_state = 146, .external_lex_state = 5}, + [337] = {.lex_state = 146, .external_lex_state = 2}, + [338] = {.lex_state = 146, .external_lex_state = 5}, + [339] = {.lex_state = 146, .external_lex_state = 5}, + [340] = {.lex_state = 146, .external_lex_state = 5}, + [341] = {.lex_state = 146, .external_lex_state = 5}, + [342] = {.lex_state = 146, .external_lex_state = 5}, + [343] = {.lex_state = 8, .external_lex_state = 3}, [344] = {.lex_state = 146, .external_lex_state = 2}, - [345] = {.lex_state = 146, .external_lex_state = 2}, + [345] = {.lex_state = 146, .external_lex_state = 5}, [346] = {.lex_state = 146, .external_lex_state = 2}, - [347] = {.lex_state = 146, .external_lex_state = 2}, - [348] = {.lex_state = 146, .external_lex_state = 2}, + [347] = {.lex_state = 146, .external_lex_state = 5}, + [348] = {.lex_state = 146, .external_lex_state = 5}, [349] = {.lex_state = 8, .external_lex_state = 4}, - [350] = {.lex_state = 146, .external_lex_state = 2}, + [350] = {.lex_state = 8, .external_lex_state = 3}, [351] = {.lex_state = 146, .external_lex_state = 2}, - [352] = {.lex_state = 146, .external_lex_state = 2}, - [353] = {.lex_state = 146, .external_lex_state = 2}, - [354] = {.lex_state = 8, .external_lex_state = 3}, - [355] = {.lex_state = 8, .external_lex_state = 3}, - [356] = {.lex_state = 146, .external_lex_state = 2}, - [357] = {.lex_state = 146, .external_lex_state = 2}, + [352] = {.lex_state = 146, .external_lex_state = 5}, + [353] = {.lex_state = 146, .external_lex_state = 5}, + [354] = {.lex_state = 8, .external_lex_state = 4}, + [355] = {.lex_state = 146, .external_lex_state = 5}, + [356] = {.lex_state = 146, .external_lex_state = 5}, + [357] = {.lex_state = 8, .external_lex_state = 3}, [358] = {.lex_state = 146, .external_lex_state = 2}, [359] = {.lex_state = 146, .external_lex_state = 2}, [360] = {.lex_state = 146, .external_lex_state = 2}, @@ -7242,13 +7331,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [376] = {.lex_state = 146, .external_lex_state = 2}, [377] = {.lex_state = 146, .external_lex_state = 2}, [378] = {.lex_state = 146, .external_lex_state = 2}, - [379] = {.lex_state = 8, .external_lex_state = 4}, + [379] = {.lex_state = 146, .external_lex_state = 2}, [380] = {.lex_state = 146, .external_lex_state = 2}, [381] = {.lex_state = 146, .external_lex_state = 2}, [382] = {.lex_state = 146, .external_lex_state = 2}, [383] = {.lex_state = 146, .external_lex_state = 2}, [384] = {.lex_state = 146, .external_lex_state = 2}, - [385] = {.lex_state = 8, .external_lex_state = 4}, + [385] = {.lex_state = 146, .external_lex_state = 2}, [386] = {.lex_state = 146, .external_lex_state = 2}, [387] = {.lex_state = 146, .external_lex_state = 2}, [388] = {.lex_state = 146, .external_lex_state = 2}, @@ -7261,135 +7350,135 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 146, .external_lex_state = 2}, [396] = {.lex_state = 146, .external_lex_state = 2}, [397] = {.lex_state = 146, .external_lex_state = 2}, - [398] = {.lex_state = 8, .external_lex_state = 3}, + [398] = {.lex_state = 146, .external_lex_state = 2}, [399] = {.lex_state = 146, .external_lex_state = 2}, [400] = {.lex_state = 146, .external_lex_state = 2}, [401] = {.lex_state = 146, .external_lex_state = 2}, - [402] = {.lex_state = 8, .external_lex_state = 4}, - [403] = {.lex_state = 8, .external_lex_state = 4}, + [402] = {.lex_state = 146, .external_lex_state = 2}, + [403] = {.lex_state = 146, .external_lex_state = 2}, [404] = {.lex_state = 8, .external_lex_state = 4}, - [405] = {.lex_state = 8, .external_lex_state = 4}, - [406] = {.lex_state = 8, .external_lex_state = 3}, - [407] = {.lex_state = 8, .external_lex_state = 3}, - [408] = {.lex_state = 8, .external_lex_state = 3}, - [409] = {.lex_state = 8, .external_lex_state = 3}, - [410] = {.lex_state = 8, .external_lex_state = 3}, - [411] = {.lex_state = 8, .external_lex_state = 3}, - [412] = {.lex_state = 8, .external_lex_state = 3}, - [413] = {.lex_state = 8, .external_lex_state = 3}, + [405] = {.lex_state = 146, .external_lex_state = 2}, + [406] = {.lex_state = 146, .external_lex_state = 2}, + [407] = {.lex_state = 146, .external_lex_state = 2}, + [408] = {.lex_state = 146, .external_lex_state = 2}, + [409] = {.lex_state = 146, .external_lex_state = 2}, + [410] = {.lex_state = 146, .external_lex_state = 2}, + [411] = {.lex_state = 146, .external_lex_state = 2}, + [412] = {.lex_state = 146, .external_lex_state = 2}, + [413] = {.lex_state = 146, .external_lex_state = 2}, [414] = {.lex_state = 8, .external_lex_state = 3}, [415] = {.lex_state = 146, .external_lex_state = 2}, - [416] = {.lex_state = 8, .external_lex_state = 3}, - [417] = {.lex_state = 8, .external_lex_state = 3}, + [416] = {.lex_state = 146, .external_lex_state = 2}, + [417] = {.lex_state = 8, .external_lex_state = 4}, [418] = {.lex_state = 146, .external_lex_state = 2}, [419] = {.lex_state = 146, .external_lex_state = 2}, - [420] = {.lex_state = 8, .external_lex_state = 3}, - [421] = {.lex_state = 8, .external_lex_state = 3}, + [420] = {.lex_state = 146, .external_lex_state = 2}, + [421] = {.lex_state = 146, .external_lex_state = 2}, [422] = {.lex_state = 146, .external_lex_state = 2}, [423] = {.lex_state = 146, .external_lex_state = 2}, - [424] = {.lex_state = 146, .external_lex_state = 2}, + [424] = {.lex_state = 8, .external_lex_state = 3}, [425] = {.lex_state = 146, .external_lex_state = 2}, [426] = {.lex_state = 146, .external_lex_state = 2}, [427] = {.lex_state = 8, .external_lex_state = 3}, - [428] = {.lex_state = 8, .external_lex_state = 3}, - [429] = {.lex_state = 8, .external_lex_state = 4}, + [428] = {.lex_state = 8, .external_lex_state = 4}, + [429] = {.lex_state = 8, .external_lex_state = 3}, [430] = {.lex_state = 8, .external_lex_state = 4}, - [431] = {.lex_state = 8, .external_lex_state = 4}, + [431] = {.lex_state = 8, .external_lex_state = 3}, [432] = {.lex_state = 8, .external_lex_state = 4}, - [433] = {.lex_state = 8, .external_lex_state = 4}, - [434] = {.lex_state = 8, .external_lex_state = 4}, + [433] = {.lex_state = 8, .external_lex_state = 3}, + [434] = {.lex_state = 8, .external_lex_state = 3}, [435] = {.lex_state = 8, .external_lex_state = 4}, - [436] = {.lex_state = 8, .external_lex_state = 4}, - [437] = {.lex_state = 8, .external_lex_state = 4}, + [436] = {.lex_state = 8, .external_lex_state = 3}, + [437] = {.lex_state = 8, .external_lex_state = 3}, [438] = {.lex_state = 8, .external_lex_state = 3}, - [439] = {.lex_state = 8, .external_lex_state = 4}, + [439] = {.lex_state = 8, .external_lex_state = 3}, [440] = {.lex_state = 8, .external_lex_state = 3}, - [441] = {.lex_state = 8, .external_lex_state = 4}, - [442] = {.lex_state = 8, .external_lex_state = 4}, + [441] = {.lex_state = 8, .external_lex_state = 3}, + [442] = {.lex_state = 8, .external_lex_state = 3}, [443] = {.lex_state = 8, .external_lex_state = 3}, - [444] = {.lex_state = 8, .external_lex_state = 4}, - [445] = {.lex_state = 8, .external_lex_state = 4}, - [446] = {.lex_state = 8, .external_lex_state = 4}, - [447] = {.lex_state = 8, .external_lex_state = 4}, - [448] = {.lex_state = 8, .external_lex_state = 4}, - [449] = {.lex_state = 8, .external_lex_state = 4}, - [450] = {.lex_state = 8, .external_lex_state = 4}, - [451] = {.lex_state = 8, .external_lex_state = 4}, - [452] = {.lex_state = 8, .external_lex_state = 3}, - [453] = {.lex_state = 8, .external_lex_state = 3}, - [454] = {.lex_state = 8, .external_lex_state = 4}, + [444] = {.lex_state = 8, .external_lex_state = 3}, + [445] = {.lex_state = 146, .external_lex_state = 2}, + [446] = {.lex_state = 146, .external_lex_state = 2}, + [447] = {.lex_state = 8, .external_lex_state = 3}, + [448] = {.lex_state = 146, .external_lex_state = 2}, + [449] = {.lex_state = 146, .external_lex_state = 2}, + [450] = {.lex_state = 146, .external_lex_state = 2}, + [451] = {.lex_state = 146, .external_lex_state = 2}, + [452] = {.lex_state = 146, .external_lex_state = 2}, + [453] = {.lex_state = 146, .external_lex_state = 2}, + [454] = {.lex_state = 146, .external_lex_state = 2}, [455] = {.lex_state = 8, .external_lex_state = 4}, [456] = {.lex_state = 8, .external_lex_state = 3}, - [457] = {.lex_state = 8, .external_lex_state = 3}, - [458] = {.lex_state = 8, .external_lex_state = 3}, + [457] = {.lex_state = 8, .external_lex_state = 4}, + [458] = {.lex_state = 8, .external_lex_state = 4}, [459] = {.lex_state = 8, .external_lex_state = 4}, [460] = {.lex_state = 8, .external_lex_state = 4}, [461] = {.lex_state = 8, .external_lex_state = 3}, - [462] = {.lex_state = 8, .external_lex_state = 3}, + [462] = {.lex_state = 8, .external_lex_state = 4}, [463] = {.lex_state = 8, .external_lex_state = 4}, - [464] = {.lex_state = 8, .external_lex_state = 3}, - [465] = {.lex_state = 8, .external_lex_state = 3}, + [464] = {.lex_state = 8, .external_lex_state = 4}, + [465] = {.lex_state = 8, .external_lex_state = 4}, [466] = {.lex_state = 8, .external_lex_state = 3}, - [467] = {.lex_state = 8, .external_lex_state = 3}, - [468] = {.lex_state = 8, .external_lex_state = 3}, - [469] = {.lex_state = 8, .external_lex_state = 3}, - [470] = {.lex_state = 8, .external_lex_state = 3}, - [471] = {.lex_state = 8, .external_lex_state = 3}, + [467] = {.lex_state = 8, .external_lex_state = 4}, + [468] = {.lex_state = 8, .external_lex_state = 4}, + [469] = {.lex_state = 8, .external_lex_state = 4}, + [470] = {.lex_state = 8, .external_lex_state = 4}, + [471] = {.lex_state = 8, .external_lex_state = 4}, [472] = {.lex_state = 8, .external_lex_state = 3}, - [473] = {.lex_state = 8, .external_lex_state = 3}, - [474] = {.lex_state = 8, .external_lex_state = 3}, - [475] = {.lex_state = 8, .external_lex_state = 3}, - [476] = {.lex_state = 8, .external_lex_state = 3}, - [477] = {.lex_state = 8, .external_lex_state = 3}, - [478] = {.lex_state = 9, .external_lex_state = 4}, - [479] = {.lex_state = 9, .external_lex_state = 3}, - [480] = {.lex_state = 9, .external_lex_state = 3}, - [481] = {.lex_state = 9, .external_lex_state = 3}, - [482] = {.lex_state = 9, .external_lex_state = 3}, - [483] = {.lex_state = 9, .external_lex_state = 3}, - [484] = {.lex_state = 9, .external_lex_state = 4}, - [485] = {.lex_state = 9, .external_lex_state = 3}, - [486] = {.lex_state = 9, .external_lex_state = 3}, - [487] = {.lex_state = 9, .external_lex_state = 4}, - [488] = {.lex_state = 9, .external_lex_state = 3}, - [489] = {.lex_state = 9, .external_lex_state = 3}, - [490] = {.lex_state = 9, .external_lex_state = 3}, - [491] = {.lex_state = 9, .external_lex_state = 3}, - [492] = {.lex_state = 9, .external_lex_state = 3}, - [493] = {.lex_state = 9, .external_lex_state = 3}, - [494] = {.lex_state = 9, .external_lex_state = 3}, - [495] = {.lex_state = 9, .external_lex_state = 3}, - [496] = {.lex_state = 9, .external_lex_state = 3}, - [497] = {.lex_state = 9, .external_lex_state = 3}, - [498] = {.lex_state = 9, .external_lex_state = 3}, - [499] = {.lex_state = 9, .external_lex_state = 3}, - [500] = {.lex_state = 9, .external_lex_state = 3}, - [501] = {.lex_state = 9, .external_lex_state = 3}, - [502] = {.lex_state = 9, .external_lex_state = 3}, - [503] = {.lex_state = 9, .external_lex_state = 3}, - [504] = {.lex_state = 9, .external_lex_state = 3}, + [473] = {.lex_state = 8, .external_lex_state = 4}, + [474] = {.lex_state = 8, .external_lex_state = 4}, + [475] = {.lex_state = 8, .external_lex_state = 4}, + [476] = {.lex_state = 8, .external_lex_state = 4}, + [477] = {.lex_state = 8, .external_lex_state = 4}, + [478] = {.lex_state = 8, .external_lex_state = 4}, + [479] = {.lex_state = 8, .external_lex_state = 3}, + [480] = {.lex_state = 8, .external_lex_state = 3}, + [481] = {.lex_state = 8, .external_lex_state = 3}, + [482] = {.lex_state = 8, .external_lex_state = 4}, + [483] = {.lex_state = 8, .external_lex_state = 3}, + [484] = {.lex_state = 8, .external_lex_state = 3}, + [485] = {.lex_state = 8, .external_lex_state = 3}, + [486] = {.lex_state = 8, .external_lex_state = 3}, + [487] = {.lex_state = 8, .external_lex_state = 3}, + [488] = {.lex_state = 8, .external_lex_state = 3}, + [489] = {.lex_state = 8, .external_lex_state = 4}, + [490] = {.lex_state = 8, .external_lex_state = 3}, + [491] = {.lex_state = 8, .external_lex_state = 3}, + [492] = {.lex_state = 8, .external_lex_state = 3}, + [493] = {.lex_state = 8, .external_lex_state = 3}, + [494] = {.lex_state = 8, .external_lex_state = 3}, + [495] = {.lex_state = 8, .external_lex_state = 3}, + [496] = {.lex_state = 8, .external_lex_state = 3}, + [497] = {.lex_state = 8, .external_lex_state = 3}, + [498] = {.lex_state = 8, .external_lex_state = 3}, + [499] = {.lex_state = 8, .external_lex_state = 3}, + [500] = {.lex_state = 8, .external_lex_state = 3}, + [501] = {.lex_state = 8, .external_lex_state = 3}, + [502] = {.lex_state = 8, .external_lex_state = 3}, + [503] = {.lex_state = 8, .external_lex_state = 3}, + [504] = {.lex_state = 8, .external_lex_state = 3}, [505] = {.lex_state = 9, .external_lex_state = 4}, - [506] = {.lex_state = 9, .external_lex_state = 4}, + [506] = {.lex_state = 9, .external_lex_state = 3}, [507] = {.lex_state = 9, .external_lex_state = 3}, [508] = {.lex_state = 9, .external_lex_state = 3}, - [509] = {.lex_state = 9, .external_lex_state = 3}, + [509] = {.lex_state = 9, .external_lex_state = 4}, [510] = {.lex_state = 9, .external_lex_state = 3}, - [511] = {.lex_state = 9, .external_lex_state = 3}, - [512] = {.lex_state = 9, .external_lex_state = 4}, + [511] = {.lex_state = 9, .external_lex_state = 4}, + [512] = {.lex_state = 9, .external_lex_state = 3}, [513] = {.lex_state = 9, .external_lex_state = 3}, [514] = {.lex_state = 9, .external_lex_state = 3}, - [515] = {.lex_state = 9, .external_lex_state = 4}, + [515] = {.lex_state = 9, .external_lex_state = 3}, [516] = {.lex_state = 9, .external_lex_state = 3}, [517] = {.lex_state = 9, .external_lex_state = 3}, [518] = {.lex_state = 9, .external_lex_state = 3}, [519] = {.lex_state = 9, .external_lex_state = 3}, [520] = {.lex_state = 9, .external_lex_state = 3}, - [521] = {.lex_state = 9, .external_lex_state = 4}, + [521] = {.lex_state = 9, .external_lex_state = 3}, [522] = {.lex_state = 9, .external_lex_state = 3}, [523] = {.lex_state = 9, .external_lex_state = 3}, [524] = {.lex_state = 9, .external_lex_state = 3}, [525] = {.lex_state = 9, .external_lex_state = 3}, - [526] = {.lex_state = 10, .external_lex_state = 3}, + [526] = {.lex_state = 9, .external_lex_state = 3}, [527] = {.lex_state = 9, .external_lex_state = 3}, [528] = {.lex_state = 9, .external_lex_state = 3}, [529] = {.lex_state = 9, .external_lex_state = 3}, @@ -7403,8 +7492,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 9, .external_lex_state = 3}, [538] = {.lex_state = 9, .external_lex_state = 3}, [539] = {.lex_state = 9, .external_lex_state = 3}, - [540] = {.lex_state = 9, .external_lex_state = 4}, - [541] = {.lex_state = 9, .external_lex_state = 4}, + [540] = {.lex_state = 10, .external_lex_state = 3}, + [541] = {.lex_state = 9, .external_lex_state = 3}, [542] = {.lex_state = 9, .external_lex_state = 3}, [543] = {.lex_state = 9, .external_lex_state = 3}, [544] = {.lex_state = 9, .external_lex_state = 3}, @@ -7413,7 +7502,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [547] = {.lex_state = 9, .external_lex_state = 3}, [548] = {.lex_state = 9, .external_lex_state = 3}, [549] = {.lex_state = 9, .external_lex_state = 3}, - [550] = {.lex_state = 9, .external_lex_state = 4}, + [550] = {.lex_state = 9, .external_lex_state = 3}, [551] = {.lex_state = 9, .external_lex_state = 3}, [552] = {.lex_state = 9, .external_lex_state = 3}, [553] = {.lex_state = 9, .external_lex_state = 3}, @@ -7441,46 +7530,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [575] = {.lex_state = 9, .external_lex_state = 3}, [576] = {.lex_state = 9, .external_lex_state = 3}, [577] = {.lex_state = 9, .external_lex_state = 3}, - [578] = {.lex_state = 9, .external_lex_state = 4}, + [578] = {.lex_state = 9, .external_lex_state = 3}, [579] = {.lex_state = 9, .external_lex_state = 3}, [580] = {.lex_state = 9, .external_lex_state = 3}, [581] = {.lex_state = 9, .external_lex_state = 3}, [582] = {.lex_state = 9, .external_lex_state = 3}, - [583] = {.lex_state = 9, .external_lex_state = 4}, - [584] = {.lex_state = 9, .external_lex_state = 4}, - [585] = {.lex_state = 9, .external_lex_state = 4}, - [586] = {.lex_state = 9, .external_lex_state = 4}, - [587] = {.lex_state = 9, .external_lex_state = 4}, + [583] = {.lex_state = 9, .external_lex_state = 3}, + [584] = {.lex_state = 9, .external_lex_state = 3}, + [585] = {.lex_state = 9, .external_lex_state = 3}, + [586] = {.lex_state = 9, .external_lex_state = 3}, + [587] = {.lex_state = 9, .external_lex_state = 3}, [588] = {.lex_state = 9, .external_lex_state = 3}, - [589] = {.lex_state = 9, .external_lex_state = 4}, - [590] = {.lex_state = 9, .external_lex_state = 4}, - [591] = {.lex_state = 9, .external_lex_state = 4}, + [589] = {.lex_state = 9, .external_lex_state = 3}, + [590] = {.lex_state = 9, .external_lex_state = 3}, + [591] = {.lex_state = 9, .external_lex_state = 3}, [592] = {.lex_state = 9, .external_lex_state = 3}, - [593] = {.lex_state = 9, .external_lex_state = 4}, - [594] = {.lex_state = 9, .external_lex_state = 4}, + [593] = {.lex_state = 9, .external_lex_state = 3}, + [594] = {.lex_state = 9, .external_lex_state = 3}, [595] = {.lex_state = 9, .external_lex_state = 3}, - [596] = {.lex_state = 9, .external_lex_state = 4}, - [597] = {.lex_state = 9, .external_lex_state = 4}, - [598] = {.lex_state = 9, .external_lex_state = 4}, - [599] = {.lex_state = 9, .external_lex_state = 4}, - [600] = {.lex_state = 9, .external_lex_state = 4}, + [596] = {.lex_state = 9, .external_lex_state = 3}, + [597] = {.lex_state = 9, .external_lex_state = 3}, + [598] = {.lex_state = 9, .external_lex_state = 3}, + [599] = {.lex_state = 9, .external_lex_state = 3}, + [600] = {.lex_state = 9, .external_lex_state = 3}, [601] = {.lex_state = 9, .external_lex_state = 4}, [602] = {.lex_state = 9, .external_lex_state = 4}, [603] = {.lex_state = 9, .external_lex_state = 4}, - [604] = {.lex_state = 9, .external_lex_state = 4}, + [604] = {.lex_state = 9, .external_lex_state = 3}, [605] = {.lex_state = 9, .external_lex_state = 4}, [606] = {.lex_state = 9, .external_lex_state = 4}, - [607] = {.lex_state = 9, .external_lex_state = 4}, + [607] = {.lex_state = 9, .external_lex_state = 3}, [608] = {.lex_state = 9, .external_lex_state = 4}, - [609] = {.lex_state = 9, .external_lex_state = 4}, + [609] = {.lex_state = 9, .external_lex_state = 3}, [610] = {.lex_state = 9, .external_lex_state = 4}, [611] = {.lex_state = 9, .external_lex_state = 4}, - [612] = {.lex_state = 9, .external_lex_state = 4}, + [612] = {.lex_state = 9, .external_lex_state = 3}, [613] = {.lex_state = 9, .external_lex_state = 4}, [614] = {.lex_state = 9, .external_lex_state = 4}, [615] = {.lex_state = 9, .external_lex_state = 4}, [616] = {.lex_state = 9, .external_lex_state = 4}, - [617] = {.lex_state = 9, .external_lex_state = 4}, + [617] = {.lex_state = 9, .external_lex_state = 3}, [618] = {.lex_state = 9, .external_lex_state = 4}, [619] = {.lex_state = 9, .external_lex_state = 4}, [620] = {.lex_state = 9, .external_lex_state = 4}, @@ -7508,26 +7597,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 9, .external_lex_state = 4}, [643] = {.lex_state = 9, .external_lex_state = 4}, [644] = {.lex_state = 9, .external_lex_state = 4}, - [645] = {.lex_state = 9, .external_lex_state = 3}, + [645] = {.lex_state = 9, .external_lex_state = 4}, [646] = {.lex_state = 9, .external_lex_state = 4}, [647] = {.lex_state = 9, .external_lex_state = 4}, [648] = {.lex_state = 9, .external_lex_state = 4}, [649] = {.lex_state = 9, .external_lex_state = 4}, - [650] = {.lex_state = 9, .external_lex_state = 3}, + [650] = {.lex_state = 9, .external_lex_state = 4}, [651] = {.lex_state = 9, .external_lex_state = 4}, - [652] = {.lex_state = 9, .external_lex_state = 3}, + [652] = {.lex_state = 9, .external_lex_state = 4}, [653] = {.lex_state = 9, .external_lex_state = 4}, - [654] = {.lex_state = 9, .external_lex_state = 3}, + [654] = {.lex_state = 9, .external_lex_state = 4}, [655] = {.lex_state = 9, .external_lex_state = 4}, [656] = {.lex_state = 9, .external_lex_state = 3}, [657] = {.lex_state = 9, .external_lex_state = 4}, [658] = {.lex_state = 9, .external_lex_state = 4}, [659] = {.lex_state = 9, .external_lex_state = 4}, - [660] = {.lex_state = 9, .external_lex_state = 3}, - [661] = {.lex_state = 9, .external_lex_state = 3}, + [660] = {.lex_state = 9, .external_lex_state = 4}, + [661] = {.lex_state = 9, .external_lex_state = 4}, [662] = {.lex_state = 9, .external_lex_state = 4}, [663] = {.lex_state = 9, .external_lex_state = 4}, - [664] = {.lex_state = 9, .external_lex_state = 3}, + [664] = {.lex_state = 9, .external_lex_state = 4}, [665] = {.lex_state = 9, .external_lex_state = 4}, [666] = {.lex_state = 9, .external_lex_state = 4}, [667] = {.lex_state = 9, .external_lex_state = 4}, @@ -7535,95 +7624,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 9, .external_lex_state = 4}, [670] = {.lex_state = 9, .external_lex_state = 4}, [671] = {.lex_state = 9, .external_lex_state = 4}, - [672] = {.lex_state = 9, .external_lex_state = 3}, + [672] = {.lex_state = 9, .external_lex_state = 4}, [673] = {.lex_state = 9, .external_lex_state = 4}, - [674] = {.lex_state = 9, .external_lex_state = 3}, + [674] = {.lex_state = 9, .external_lex_state = 4}, [675] = {.lex_state = 9, .external_lex_state = 4}, - [676] = {.lex_state = 9, .external_lex_state = 3}, - [677] = {.lex_state = 9, .external_lex_state = 3}, + [676] = {.lex_state = 9, .external_lex_state = 4}, + [677] = {.lex_state = 9, .external_lex_state = 4}, [678] = {.lex_state = 9, .external_lex_state = 4}, [679] = {.lex_state = 9, .external_lex_state = 4}, [680] = {.lex_state = 9, .external_lex_state = 4}, - [681] = {.lex_state = 9, .external_lex_state = 4}, + [681] = {.lex_state = 10, .external_lex_state = 4}, [682] = {.lex_state = 9, .external_lex_state = 3}, [683] = {.lex_state = 9, .external_lex_state = 3}, [684] = {.lex_state = 9, .external_lex_state = 4}, - [685] = {.lex_state = 9, .external_lex_state = 4}, - [686] = {.lex_state = 9, .external_lex_state = 4}, + [685] = {.lex_state = 9, .external_lex_state = 3}, + [686] = {.lex_state = 9, .external_lex_state = 3}, [687] = {.lex_state = 9, .external_lex_state = 4}, [688] = {.lex_state = 9, .external_lex_state = 4}, [689] = {.lex_state = 9, .external_lex_state = 3}, [690] = {.lex_state = 9, .external_lex_state = 3}, - [691] = {.lex_state = 9, .external_lex_state = 4}, - [692] = {.lex_state = 9, .external_lex_state = 4}, - [693] = {.lex_state = 9, .external_lex_state = 4}, - [694] = {.lex_state = 9, .external_lex_state = 4}, + [691] = {.lex_state = 9, .external_lex_state = 3}, + [692] = {.lex_state = 9, .external_lex_state = 3}, + [693] = {.lex_state = 9, .external_lex_state = 3}, + [694] = {.lex_state = 9, .external_lex_state = 3}, [695] = {.lex_state = 9, .external_lex_state = 4}, [696] = {.lex_state = 9, .external_lex_state = 3}, - [697] = {.lex_state = 9, .external_lex_state = 3}, + [697] = {.lex_state = 9, .external_lex_state = 4}, [698] = {.lex_state = 9, .external_lex_state = 3}, [699] = {.lex_state = 9, .external_lex_state = 4}, [700] = {.lex_state = 9, .external_lex_state = 4}, - [701] = {.lex_state = 9, .external_lex_state = 4}, - [702] = {.lex_state = 10, .external_lex_state = 4}, + [701] = {.lex_state = 9, .external_lex_state = 3}, + [702] = {.lex_state = 9, .external_lex_state = 4}, [703] = {.lex_state = 9, .external_lex_state = 4}, [704] = {.lex_state = 9, .external_lex_state = 4}, - [705] = {.lex_state = 9, .external_lex_state = 4}, + [705] = {.lex_state = 9, .external_lex_state = 3}, [706] = {.lex_state = 9, .external_lex_state = 4}, - [707] = {.lex_state = 9, .external_lex_state = 4}, + [707] = {.lex_state = 9, .external_lex_state = 3}, [708] = {.lex_state = 9, .external_lex_state = 3}, - [709] = {.lex_state = 9, .external_lex_state = 3}, + [709] = {.lex_state = 9, .external_lex_state = 4}, [710] = {.lex_state = 9, .external_lex_state = 4}, - [711] = {.lex_state = 9, .external_lex_state = 4}, - [712] = {.lex_state = 9, .external_lex_state = 3}, + [711] = {.lex_state = 9, .external_lex_state = 3}, + [712] = {.lex_state = 9, .external_lex_state = 4}, [713] = {.lex_state = 9, .external_lex_state = 4}, - [714] = {.lex_state = 9, .external_lex_state = 3}, + [714] = {.lex_state = 9, .external_lex_state = 4}, [715] = {.lex_state = 9, .external_lex_state = 4}, - [716] = {.lex_state = 9, .external_lex_state = 3}, + [716] = {.lex_state = 9, .external_lex_state = 4}, [717] = {.lex_state = 9, .external_lex_state = 4}, [718] = {.lex_state = 9, .external_lex_state = 4}, - [719] = {.lex_state = 9, .external_lex_state = 4}, + [719] = {.lex_state = 9, .external_lex_state = 3}, [720] = {.lex_state = 9, .external_lex_state = 4}, - [721] = {.lex_state = 9, .external_lex_state = 4}, - [722] = {.lex_state = 9, .external_lex_state = 3}, + [721] = {.lex_state = 9, .external_lex_state = 3}, + [722] = {.lex_state = 9, .external_lex_state = 4}, [723] = {.lex_state = 9, .external_lex_state = 3}, [724] = {.lex_state = 9, .external_lex_state = 3}, [725] = {.lex_state = 9, .external_lex_state = 3}, [726] = {.lex_state = 9, .external_lex_state = 3}, [727] = {.lex_state = 9, .external_lex_state = 4}, - [728] = {.lex_state = 9, .external_lex_state = 4}, - [729] = {.lex_state = 9, .external_lex_state = 4}, + [728] = {.lex_state = 9, .external_lex_state = 3}, + [729] = {.lex_state = 9, .external_lex_state = 3}, [730] = {.lex_state = 9, .external_lex_state = 4}, [731] = {.lex_state = 9, .external_lex_state = 4}, [732] = {.lex_state = 9, .external_lex_state = 3}, - [733] = {.lex_state = 10, .external_lex_state = 4}, + [733] = {.lex_state = 9, .external_lex_state = 4}, [734] = {.lex_state = 9, .external_lex_state = 4}, - [735] = {.lex_state = 9, .external_lex_state = 3}, + [735] = {.lex_state = 9, .external_lex_state = 4}, [736] = {.lex_state = 9, .external_lex_state = 4}, [737] = {.lex_state = 9, .external_lex_state = 4}, - [738] = {.lex_state = 9, .external_lex_state = 3}, + [738] = {.lex_state = 9, .external_lex_state = 4}, [739] = {.lex_state = 9, .external_lex_state = 4}, - [740] = {.lex_state = 9, .external_lex_state = 4}, - [741] = {.lex_state = 9, .external_lex_state = 4}, - [742] = {.lex_state = 9, .external_lex_state = 4}, - [743] = {.lex_state = 9, .external_lex_state = 4}, + [740] = {.lex_state = 9, .external_lex_state = 3}, + [741] = {.lex_state = 9, .external_lex_state = 3}, + [742] = {.lex_state = 9, .external_lex_state = 3}, + [743] = {.lex_state = 9, .external_lex_state = 3}, [744] = {.lex_state = 9, .external_lex_state = 4}, [745] = {.lex_state = 9, .external_lex_state = 4}, [746] = {.lex_state = 9, .external_lex_state = 4}, - [747] = {.lex_state = 9, .external_lex_state = 3}, + [747] = {.lex_state = 9, .external_lex_state = 4}, [748] = {.lex_state = 9, .external_lex_state = 4}, - [749] = {.lex_state = 9, .external_lex_state = 3}, + [749] = {.lex_state = 9, .external_lex_state = 4}, [750] = {.lex_state = 9, .external_lex_state = 4}, [751] = {.lex_state = 9, .external_lex_state = 4}, - [752] = {.lex_state = 9, .external_lex_state = 3}, + [752] = {.lex_state = 9, .external_lex_state = 4}, [753] = {.lex_state = 9, .external_lex_state = 4}, [754] = {.lex_state = 9, .external_lex_state = 4}, [755] = {.lex_state = 9, .external_lex_state = 4}, [756] = {.lex_state = 9, .external_lex_state = 4}, - [757] = {.lex_state = 9, .external_lex_state = 3}, - [758] = {.lex_state = 9, .external_lex_state = 4}, - [759] = {.lex_state = 9, .external_lex_state = 3}, - [760] = {.lex_state = 9, .external_lex_state = 3}, + [757] = {.lex_state = 10, .external_lex_state = 4}, + [758] = {.lex_state = 9, .external_lex_state = 3}, + [759] = {.lex_state = 9, .external_lex_state = 4}, + [760] = {.lex_state = 9, .external_lex_state = 4}, [761] = {.lex_state = 9, .external_lex_state = 3}, [762] = {.lex_state = 9, .external_lex_state = 3}, [763] = {.lex_state = 9, .external_lex_state = 3}, @@ -7631,33 +7720,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [765] = {.lex_state = 9, .external_lex_state = 3}, [766] = {.lex_state = 9, .external_lex_state = 3}, [767] = {.lex_state = 9, .external_lex_state = 3}, - [768] = {.lex_state = 9, .external_lex_state = 3}, - [769] = {.lex_state = 9, .external_lex_state = 4}, - [770] = {.lex_state = 9, .external_lex_state = 3}, - [771] = {.lex_state = 9, .external_lex_state = 3}, - [772] = {.lex_state = 9, .external_lex_state = 3}, - [773] = {.lex_state = 9, .external_lex_state = 3}, + [768] = {.lex_state = 9, .external_lex_state = 4}, + [769] = {.lex_state = 9, .external_lex_state = 3}, + [770] = {.lex_state = 9, .external_lex_state = 4}, + [771] = {.lex_state = 9, .external_lex_state = 4}, + [772] = {.lex_state = 9, .external_lex_state = 4}, + [773] = {.lex_state = 9, .external_lex_state = 4}, [774] = {.lex_state = 9, .external_lex_state = 3}, [775] = {.lex_state = 9, .external_lex_state = 3}, - [776] = {.lex_state = 9, .external_lex_state = 3}, - [777] = {.lex_state = 9, .external_lex_state = 3}, - [778] = {.lex_state = 9, .external_lex_state = 3}, - [779] = {.lex_state = 9, .external_lex_state = 3}, + [776] = {.lex_state = 9, .external_lex_state = 4}, + [777] = {.lex_state = 9, .external_lex_state = 4}, + [778] = {.lex_state = 9, .external_lex_state = 4}, + [779] = {.lex_state = 9, .external_lex_state = 4}, [780] = {.lex_state = 9, .external_lex_state = 3}, - [781] = {.lex_state = 9, .external_lex_state = 3}, - [782] = {.lex_state = 9, .external_lex_state = 3}, - [783] = {.lex_state = 9, .external_lex_state = 3}, - [784] = {.lex_state = 9, .external_lex_state = 4}, - [785] = {.lex_state = 9, .external_lex_state = 3}, - [786] = {.lex_state = 9, .external_lex_state = 3}, - [787] = {.lex_state = 9, .external_lex_state = 3}, - [788] = {.lex_state = 9, .external_lex_state = 3}, + [781] = {.lex_state = 9, .external_lex_state = 4}, + [782] = {.lex_state = 9, .external_lex_state = 4}, + [783] = {.lex_state = 9, .external_lex_state = 4}, + [784] = {.lex_state = 9, .external_lex_state = 3}, + [785] = {.lex_state = 9, .external_lex_state = 4}, + [786] = {.lex_state = 9, .external_lex_state = 4}, + [787] = {.lex_state = 9, .external_lex_state = 4}, + [788] = {.lex_state = 9, .external_lex_state = 4}, [789] = {.lex_state = 9, .external_lex_state = 3}, [790] = {.lex_state = 9, .external_lex_state = 3}, - [791] = {.lex_state = 9, .external_lex_state = 3}, + [791] = {.lex_state = 9, .external_lex_state = 4}, [792] = {.lex_state = 9, .external_lex_state = 3}, [793] = {.lex_state = 9, .external_lex_state = 3}, - [794] = {.lex_state = 9, .external_lex_state = 3}, + [794] = {.lex_state = 9, .external_lex_state = 4}, [795] = {.lex_state = 9, .external_lex_state = 3}, [796] = {.lex_state = 9, .external_lex_state = 3}, [797] = {.lex_state = 9, .external_lex_state = 3}, @@ -7671,7 +7760,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [805] = {.lex_state = 9, .external_lex_state = 3}, [806] = {.lex_state = 9, .external_lex_state = 3}, [807] = {.lex_state = 9, .external_lex_state = 3}, - [808] = {.lex_state = 9, .external_lex_state = 3}, + [808] = {.lex_state = 9, .external_lex_state = 4}, [809] = {.lex_state = 9, .external_lex_state = 3}, [810] = {.lex_state = 9, .external_lex_state = 3}, [811] = {.lex_state = 9, .external_lex_state = 3}, @@ -7686,161 +7775,161 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 9, .external_lex_state = 3}, [821] = {.lex_state = 9, .external_lex_state = 3}, [822] = {.lex_state = 9, .external_lex_state = 3}, - [823] = {.lex_state = 9, .external_lex_state = 3}, - [824] = {.lex_state = 9, .external_lex_state = 3}, - [825] = {.lex_state = 6, .external_lex_state = 2}, + [823] = {.lex_state = 9, .external_lex_state = 4}, + [824] = {.lex_state = 9, .external_lex_state = 4}, + [825] = {.lex_state = 9, .external_lex_state = 3}, [826] = {.lex_state = 9, .external_lex_state = 3}, [827] = {.lex_state = 9, .external_lex_state = 3}, [828] = {.lex_state = 9, .external_lex_state = 3}, - [829] = {.lex_state = 6, .external_lex_state = 2}, - [830] = {.lex_state = 6, .external_lex_state = 2}, + [829] = {.lex_state = 9, .external_lex_state = 3}, + [830] = {.lex_state = 9, .external_lex_state = 3}, [831] = {.lex_state = 9, .external_lex_state = 3}, [832] = {.lex_state = 9, .external_lex_state = 3}, - [833] = {.lex_state = 6, .external_lex_state = 2}, + [833] = {.lex_state = 9, .external_lex_state = 3}, [834] = {.lex_state = 9, .external_lex_state = 3}, - [835] = {.lex_state = 6, .external_lex_state = 2}, + [835] = {.lex_state = 9, .external_lex_state = 3}, [836] = {.lex_state = 9, .external_lex_state = 3}, - [837] = {.lex_state = 6, .external_lex_state = 2}, - [838] = {.lex_state = 6, .external_lex_state = 2}, - [839] = {.lex_state = 10, .external_lex_state = 3}, - [840] = {.lex_state = 6, .external_lex_state = 2}, - [841] = {.lex_state = 6, .external_lex_state = 2}, - [842] = {.lex_state = 6, .external_lex_state = 2}, - [843] = {.lex_state = 6, .external_lex_state = 2}, - [844] = {.lex_state = 6, .external_lex_state = 2}, - [845] = {.lex_state = 6, .external_lex_state = 2}, - [846] = {.lex_state = 6, .external_lex_state = 2}, - [847] = {.lex_state = 6, .external_lex_state = 2}, - [848] = {.lex_state = 6, .external_lex_state = 2}, - [849] = {.lex_state = 6, .external_lex_state = 2}, - [850] = {.lex_state = 6, .external_lex_state = 2}, - [851] = {.lex_state = 146, .external_lex_state = 2}, - [852] = {.lex_state = 146, .external_lex_state = 2}, - [853] = {.lex_state = 6, .external_lex_state = 2}, - [854] = {.lex_state = 146, .external_lex_state = 2}, - [855] = {.lex_state = 146, .external_lex_state = 2}, - [856] = {.lex_state = 146, .external_lex_state = 2}, - [857] = {.lex_state = 146, .external_lex_state = 2}, - [858] = {.lex_state = 146, .external_lex_state = 2}, - [859] = {.lex_state = 146, .external_lex_state = 2}, - [860] = {.lex_state = 146, .external_lex_state = 2}, - [861] = {.lex_state = 146, .external_lex_state = 2}, - [862] = {.lex_state = 146, .external_lex_state = 2}, - [863] = {.lex_state = 146, .external_lex_state = 2}, - [864] = {.lex_state = 146, .external_lex_state = 2}, - [865] = {.lex_state = 146, .external_lex_state = 2}, - [866] = {.lex_state = 146, .external_lex_state = 2}, - [867] = {.lex_state = 146, .external_lex_state = 2}, - [868] = {.lex_state = 146, .external_lex_state = 2}, - [869] = {.lex_state = 146, .external_lex_state = 2}, - [870] = {.lex_state = 146, .external_lex_state = 2}, - [871] = {.lex_state = 146, .external_lex_state = 2}, - [872] = {.lex_state = 146, .external_lex_state = 2}, - [873] = {.lex_state = 146, .external_lex_state = 2}, - [874] = {.lex_state = 146, .external_lex_state = 2}, - [875] = {.lex_state = 146, .external_lex_state = 2}, - [876] = {.lex_state = 146, .external_lex_state = 5}, - [877] = {.lex_state = 146, .external_lex_state = 2}, - [878] = {.lex_state = 146, .external_lex_state = 2}, - [879] = {.lex_state = 146, .external_lex_state = 2}, - [880] = {.lex_state = 146, .external_lex_state = 2}, + [837] = {.lex_state = 9, .external_lex_state = 3}, + [838] = {.lex_state = 9, .external_lex_state = 3}, + [839] = {.lex_state = 9, .external_lex_state = 3}, + [840] = {.lex_state = 9, .external_lex_state = 3}, + [841] = {.lex_state = 9, .external_lex_state = 3}, + [842] = {.lex_state = 9, .external_lex_state = 3}, + [843] = {.lex_state = 9, .external_lex_state = 3}, + [844] = {.lex_state = 9, .external_lex_state = 3}, + [845] = {.lex_state = 9, .external_lex_state = 3}, + [846] = {.lex_state = 9, .external_lex_state = 3}, + [847] = {.lex_state = 9, .external_lex_state = 3}, + [848] = {.lex_state = 9, .external_lex_state = 3}, + [849] = {.lex_state = 9, .external_lex_state = 3}, + [850] = {.lex_state = 9, .external_lex_state = 3}, + [851] = {.lex_state = 9, .external_lex_state = 3}, + [852] = {.lex_state = 9, .external_lex_state = 3}, + [853] = {.lex_state = 9, .external_lex_state = 3}, + [854] = {.lex_state = 9, .external_lex_state = 3}, + [855] = {.lex_state = 9, .external_lex_state = 3}, + [856] = {.lex_state = 9, .external_lex_state = 3}, + [857] = {.lex_state = 9, .external_lex_state = 3}, + [858] = {.lex_state = 9, .external_lex_state = 3}, + [859] = {.lex_state = 9, .external_lex_state = 3}, + [860] = {.lex_state = 9, .external_lex_state = 3}, + [861] = {.lex_state = 9, .external_lex_state = 3}, + [862] = {.lex_state = 9, .external_lex_state = 3}, + [863] = {.lex_state = 9, .external_lex_state = 3}, + [864] = {.lex_state = 9, .external_lex_state = 3}, + [865] = {.lex_state = 9, .external_lex_state = 3}, + [866] = {.lex_state = 6, .external_lex_state = 2}, + [867] = {.lex_state = 9, .external_lex_state = 3}, + [868] = {.lex_state = 6, .external_lex_state = 2}, + [869] = {.lex_state = 6, .external_lex_state = 2}, + [870] = {.lex_state = 9, .external_lex_state = 3}, + [871] = {.lex_state = 6, .external_lex_state = 2}, + [872] = {.lex_state = 6, .external_lex_state = 2}, + [873] = {.lex_state = 10, .external_lex_state = 3}, + [874] = {.lex_state = 6, .external_lex_state = 2}, + [875] = {.lex_state = 9, .external_lex_state = 3}, + [876] = {.lex_state = 6, .external_lex_state = 2}, + [877] = {.lex_state = 6, .external_lex_state = 2}, + [878] = {.lex_state = 6, .external_lex_state = 2}, + [879] = {.lex_state = 6, .external_lex_state = 2}, + [880] = {.lex_state = 6, .external_lex_state = 2}, [881] = {.lex_state = 6, .external_lex_state = 2}, - [882] = {.lex_state = 146, .external_lex_state = 2}, - [883] = {.lex_state = 146, .external_lex_state = 2}, - [884] = {.lex_state = 146, .external_lex_state = 2}, + [882] = {.lex_state = 6, .external_lex_state = 2}, + [883] = {.lex_state = 6, .external_lex_state = 2}, + [884] = {.lex_state = 6, .external_lex_state = 2}, [885] = {.lex_state = 6, .external_lex_state = 2}, - [886] = {.lex_state = 146, .external_lex_state = 2}, - [887] = {.lex_state = 146, .external_lex_state = 5}, - [888] = {.lex_state = 146, .external_lex_state = 5}, - [889] = {.lex_state = 6, .external_lex_state = 2}, - [890] = {.lex_state = 146, .external_lex_state = 5}, - [891] = {.lex_state = 146, .external_lex_state = 5}, - [892] = {.lex_state = 146, .external_lex_state = 5}, - [893] = {.lex_state = 6, .external_lex_state = 2}, - [894] = {.lex_state = 6, .external_lex_state = 2}, - [895] = {.lex_state = 6, .external_lex_state = 2}, - [896] = {.lex_state = 6, .external_lex_state = 2}, - [897] = {.lex_state = 6, .external_lex_state = 5}, - [898] = {.lex_state = 6, .external_lex_state = 2}, - [899] = {.lex_state = 6, .external_lex_state = 2}, - [900] = {.lex_state = 6, .external_lex_state = 2}, - [901] = {.lex_state = 6, .external_lex_state = 2}, - [902] = {.lex_state = 6, .external_lex_state = 2}, - [903] = {.lex_state = 146, .external_lex_state = 5}, - [904] = {.lex_state = 6, .external_lex_state = 2}, - [905] = {.lex_state = 6, .external_lex_state = 2}, - [906] = {.lex_state = 6, .external_lex_state = 2}, - [907] = {.lex_state = 6, .external_lex_state = 2}, - [908] = {.lex_state = 6, .external_lex_state = 2}, - [909] = {.lex_state = 6, .external_lex_state = 2}, - [910] = {.lex_state = 6, .external_lex_state = 2}, - [911] = {.lex_state = 6, .external_lex_state = 2}, - [912] = {.lex_state = 6, .external_lex_state = 2}, - [913] = {.lex_state = 146, .external_lex_state = 2}, - [914] = {.lex_state = 6, .external_lex_state = 2}, + [886] = {.lex_state = 6, .external_lex_state = 2}, + [887] = {.lex_state = 6, .external_lex_state = 2}, + [888] = {.lex_state = 146, .external_lex_state = 2}, + [889] = {.lex_state = 146, .external_lex_state = 2}, + [890] = {.lex_state = 146, .external_lex_state = 2}, + [891] = {.lex_state = 146, .external_lex_state = 2}, + [892] = {.lex_state = 146, .external_lex_state = 2}, + [893] = {.lex_state = 146, .external_lex_state = 2}, + [894] = {.lex_state = 146, .external_lex_state = 2}, + [895] = {.lex_state = 146, .external_lex_state = 2}, + [896] = {.lex_state = 146, .external_lex_state = 2}, + [897] = {.lex_state = 146, .external_lex_state = 2}, + [898] = {.lex_state = 146, .external_lex_state = 2}, + [899] = {.lex_state = 146, .external_lex_state = 2}, + [900] = {.lex_state = 146, .external_lex_state = 2}, + [901] = {.lex_state = 146, .external_lex_state = 2}, + [902] = {.lex_state = 146, .external_lex_state = 2}, + [903] = {.lex_state = 146, .external_lex_state = 2}, + [904] = {.lex_state = 146, .external_lex_state = 2}, + [905] = {.lex_state = 146, .external_lex_state = 2}, + [906] = {.lex_state = 146, .external_lex_state = 2}, + [907] = {.lex_state = 146, .external_lex_state = 5}, + [908] = {.lex_state = 146, .external_lex_state = 2}, + [909] = {.lex_state = 146, .external_lex_state = 2}, + [910] = {.lex_state = 146, .external_lex_state = 2}, + [911] = {.lex_state = 146, .external_lex_state = 2}, + [912] = {.lex_state = 146, .external_lex_state = 2}, + [913] = {.lex_state = 6, .external_lex_state = 2}, + [914] = {.lex_state = 146, .external_lex_state = 2}, [915] = {.lex_state = 6, .external_lex_state = 2}, - [916] = {.lex_state = 6, .external_lex_state = 2}, - [917] = {.lex_state = 6, .external_lex_state = 5}, - [918] = {.lex_state = 6, .external_lex_state = 2}, + [916] = {.lex_state = 146, .external_lex_state = 2}, + [917] = {.lex_state = 6, .external_lex_state = 2}, + [918] = {.lex_state = 146, .external_lex_state = 2}, [919] = {.lex_state = 146, .external_lex_state = 5}, - [920] = {.lex_state = 6, .external_lex_state = 2}, - [921] = {.lex_state = 6, .external_lex_state = 2}, - [922] = {.lex_state = 12, .external_lex_state = 2}, + [920] = {.lex_state = 146, .external_lex_state = 2}, + [921] = {.lex_state = 146, .external_lex_state = 2}, + [922] = {.lex_state = 146, .external_lex_state = 5}, [923] = {.lex_state = 146, .external_lex_state = 5}, - [924] = {.lex_state = 6, .external_lex_state = 2}, + [924] = {.lex_state = 146, .external_lex_state = 5}, [925] = {.lex_state = 146, .external_lex_state = 5}, - [926] = {.lex_state = 6, .external_lex_state = 2}, + [926] = {.lex_state = 146, .external_lex_state = 5}, [927] = {.lex_state = 6, .external_lex_state = 2}, [928] = {.lex_state = 6, .external_lex_state = 2}, - [929] = {.lex_state = 146, .external_lex_state = 5}, - [930] = {.lex_state = 146, .external_lex_state = 5}, + [929] = {.lex_state = 6, .external_lex_state = 2}, + [930] = {.lex_state = 6, .external_lex_state = 2}, [931] = {.lex_state = 6, .external_lex_state = 2}, [932] = {.lex_state = 6, .external_lex_state = 2}, [933] = {.lex_state = 6, .external_lex_state = 2}, [934] = {.lex_state = 6, .external_lex_state = 2}, [935] = {.lex_state = 6, .external_lex_state = 2}, - [936] = {.lex_state = 6, .external_lex_state = 2}, - [937] = {.lex_state = 6, .external_lex_state = 2}, + [936] = {.lex_state = 146, .external_lex_state = 5}, + [937] = {.lex_state = 146, .external_lex_state = 2}, [938] = {.lex_state = 6, .external_lex_state = 2}, - [939] = {.lex_state = 12, .external_lex_state = 2}, - [940] = {.lex_state = 6, .external_lex_state = 2}, - [941] = {.lex_state = 6, .external_lex_state = 2}, - [942] = {.lex_state = 6, .external_lex_state = 2}, - [943] = {.lex_state = 146, .external_lex_state = 2}, - [944] = {.lex_state = 146, .external_lex_state = 2}, - [945] = {.lex_state = 146, .external_lex_state = 2}, - [946] = {.lex_state = 146, .external_lex_state = 2}, - [947] = {.lex_state = 146, .external_lex_state = 2}, - [948] = {.lex_state = 146, .external_lex_state = 2}, - [949] = {.lex_state = 146, .external_lex_state = 2}, - [950] = {.lex_state = 146, .external_lex_state = 2}, - [951] = {.lex_state = 146, .external_lex_state = 2}, - [952] = {.lex_state = 146, .external_lex_state = 2}, - [953] = {.lex_state = 146, .external_lex_state = 2}, - [954] = {.lex_state = 146, .external_lex_state = 2}, - [955] = {.lex_state = 146, .external_lex_state = 2}, - [956] = {.lex_state = 146, .external_lex_state = 2}, - [957] = {.lex_state = 146, .external_lex_state = 2}, + [939] = {.lex_state = 6, .external_lex_state = 5}, + [940] = {.lex_state = 146, .external_lex_state = 5}, + [941] = {.lex_state = 146, .external_lex_state = 5}, + [942] = {.lex_state = 6, .external_lex_state = 5}, + [943] = {.lex_state = 6, .external_lex_state = 2}, + [944] = {.lex_state = 6, .external_lex_state = 2}, + [945] = {.lex_state = 6, .external_lex_state = 2}, + [946] = {.lex_state = 6, .external_lex_state = 2}, + [947] = {.lex_state = 6, .external_lex_state = 2}, + [948] = {.lex_state = 6, .external_lex_state = 2}, + [949] = {.lex_state = 6, .external_lex_state = 2}, + [950] = {.lex_state = 6, .external_lex_state = 2}, + [951] = {.lex_state = 6, .external_lex_state = 2}, + [952] = {.lex_state = 12, .external_lex_state = 2}, + [953] = {.lex_state = 6, .external_lex_state = 2}, + [954] = {.lex_state = 6, .external_lex_state = 2}, + [955] = {.lex_state = 146, .external_lex_state = 5}, + [956] = {.lex_state = 6, .external_lex_state = 2}, + [957] = {.lex_state = 6, .external_lex_state = 2}, [958] = {.lex_state = 6, .external_lex_state = 2}, [959] = {.lex_state = 6, .external_lex_state = 2}, [960] = {.lex_state = 6, .external_lex_state = 2}, - [961] = {.lex_state = 146, .external_lex_state = 2}, - [962] = {.lex_state = 146, .external_lex_state = 2}, - [963] = {.lex_state = 146, .external_lex_state = 2}, - [964] = {.lex_state = 146, .external_lex_state = 2}, - [965] = {.lex_state = 146, .external_lex_state = 2}, - [966] = {.lex_state = 146, .external_lex_state = 2}, - [967] = {.lex_state = 146, .external_lex_state = 2}, - [968] = {.lex_state = 146, .external_lex_state = 2}, - [969] = {.lex_state = 146, .external_lex_state = 2}, - [970] = {.lex_state = 146, .external_lex_state = 2}, - [971] = {.lex_state = 146, .external_lex_state = 2}, - [972] = {.lex_state = 146, .external_lex_state = 2}, - [973] = {.lex_state = 146, .external_lex_state = 2}, - [974] = {.lex_state = 146, .external_lex_state = 2}, + [961] = {.lex_state = 6, .external_lex_state = 2}, + [962] = {.lex_state = 6, .external_lex_state = 2}, + [963] = {.lex_state = 146, .external_lex_state = 5}, + [964] = {.lex_state = 6, .external_lex_state = 2}, + [965] = {.lex_state = 6, .external_lex_state = 2}, + [966] = {.lex_state = 6, .external_lex_state = 2}, + [967] = {.lex_state = 6, .external_lex_state = 2}, + [968] = {.lex_state = 6, .external_lex_state = 2}, + [969] = {.lex_state = 6, .external_lex_state = 2}, + [970] = {.lex_state = 6, .external_lex_state = 2}, + [971] = {.lex_state = 6, .external_lex_state = 2}, + [972] = {.lex_state = 6, .external_lex_state = 2}, + [973] = {.lex_state = 6, .external_lex_state = 2}, + [974] = {.lex_state = 12, .external_lex_state = 2}, [975] = {.lex_state = 6, .external_lex_state = 2}, - [976] = {.lex_state = 6, .external_lex_state = 2}, - [977] = {.lex_state = 6, .external_lex_state = 2}, + [976] = {.lex_state = 146, .external_lex_state = 2}, + [977] = {.lex_state = 146, .external_lex_state = 2}, [978] = {.lex_state = 146, .external_lex_state = 2}, [979] = {.lex_state = 146, .external_lex_state = 2}, [980] = {.lex_state = 146, .external_lex_state = 2}, @@ -7855,331 +7944,331 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [989] = {.lex_state = 146, .external_lex_state = 2}, [990] = {.lex_state = 146, .external_lex_state = 2}, [991] = {.lex_state = 146, .external_lex_state = 2}, - [992] = {.lex_state = 8, .external_lex_state = 2}, - [993] = {.lex_state = 146, .external_lex_state = 2}, - [994] = {.lex_state = 146, .external_lex_state = 2}, - [995] = {.lex_state = 146, .external_lex_state = 2}, + [992] = {.lex_state = 146, .external_lex_state = 2}, + [993] = {.lex_state = 6, .external_lex_state = 2}, + [994] = {.lex_state = 6, .external_lex_state = 2}, + [995] = {.lex_state = 6, .external_lex_state = 2}, [996] = {.lex_state = 146, .external_lex_state = 2}, [997] = {.lex_state = 146, .external_lex_state = 2}, [998] = {.lex_state = 146, .external_lex_state = 2}, [999] = {.lex_state = 146, .external_lex_state = 2}, [1000] = {.lex_state = 146, .external_lex_state = 2}, [1001] = {.lex_state = 146, .external_lex_state = 2}, - [1002] = {.lex_state = 8, .external_lex_state = 2}, - [1003] = {.lex_state = 8, .external_lex_state = 2}, + [1002] = {.lex_state = 6, .external_lex_state = 2}, + [1003] = {.lex_state = 6, .external_lex_state = 2}, [1004] = {.lex_state = 146, .external_lex_state = 2}, [1005] = {.lex_state = 146, .external_lex_state = 2}, [1006] = {.lex_state = 146, .external_lex_state = 2}, - [1007] = {.lex_state = 8, .external_lex_state = 2}, + [1007] = {.lex_state = 146, .external_lex_state = 2}, [1008] = {.lex_state = 146, .external_lex_state = 2}, [1009] = {.lex_state = 146, .external_lex_state = 2}, - [1010] = {.lex_state = 8, .external_lex_state = 2}, - [1011] = {.lex_state = 2, .external_lex_state = 2}, - [1012] = {.lex_state = 2, .external_lex_state = 2}, - [1013] = {.lex_state = 2, .external_lex_state = 2}, - [1014] = {.lex_state = 2, .external_lex_state = 2}, - [1015] = {.lex_state = 2, .external_lex_state = 2}, - [1016] = {.lex_state = 2, .external_lex_state = 2}, - [1017] = {.lex_state = 2, .external_lex_state = 2}, - [1018] = {.lex_state = 2, .external_lex_state = 2}, - [1019] = {.lex_state = 145, .external_lex_state = 2}, - [1020] = {.lex_state = 2, .external_lex_state = 2}, - [1021] = {.lex_state = 35, .external_lex_state = 2}, - [1022] = {.lex_state = 35, .external_lex_state = 2}, - [1023] = {.lex_state = 35, .external_lex_state = 2}, - [1024] = {.lex_state = 35, .external_lex_state = 2}, - [1025] = {.lex_state = 35, .external_lex_state = 2}, - [1026] = {.lex_state = 35, .external_lex_state = 2}, - [1027] = {.lex_state = 35, .external_lex_state = 2}, - [1028] = {.lex_state = 35, .external_lex_state = 2}, - [1029] = {.lex_state = 35, .external_lex_state = 2}, - [1030] = {.lex_state = 35, .external_lex_state = 2}, - [1031] = {.lex_state = 35, .external_lex_state = 2}, - [1032] = {.lex_state = 35, .external_lex_state = 2}, - [1033] = {.lex_state = 35, .external_lex_state = 2}, - [1034] = {.lex_state = 35, .external_lex_state = 2}, - [1035] = {.lex_state = 35, .external_lex_state = 2}, - [1036] = {.lex_state = 35, .external_lex_state = 2}, - [1037] = {.lex_state = 35, .external_lex_state = 2}, - [1038] = {.lex_state = 35, .external_lex_state = 2}, - [1039] = {.lex_state = 35, .external_lex_state = 2}, - [1040] = {.lex_state = 35, .external_lex_state = 2}, - [1041] = {.lex_state = 35, .external_lex_state = 2}, - [1042] = {.lex_state = 12, .external_lex_state = 2}, - [1043] = {.lex_state = 35, .external_lex_state = 2}, - [1044] = {.lex_state = 35, .external_lex_state = 2}, - [1045] = {.lex_state = 35, .external_lex_state = 2}, - [1046] = {.lex_state = 35, .external_lex_state = 2}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 35, .external_lex_state = 2}, - [1049] = {.lex_state = 35, .external_lex_state = 2}, - [1050] = {.lex_state = 35, .external_lex_state = 2}, - [1051] = {.lex_state = 35, .external_lex_state = 2}, - [1052] = {.lex_state = 35, .external_lex_state = 2}, - [1053] = {.lex_state = 35, .external_lex_state = 2}, + [1010] = {.lex_state = 146, .external_lex_state = 2}, + [1011] = {.lex_state = 146, .external_lex_state = 2}, + [1012] = {.lex_state = 146, .external_lex_state = 2}, + [1013] = {.lex_state = 146, .external_lex_state = 2}, + [1014] = {.lex_state = 146, .external_lex_state = 2}, + [1015] = {.lex_state = 146, .external_lex_state = 2}, + [1016] = {.lex_state = 146, .external_lex_state = 2}, + [1017] = {.lex_state = 146, .external_lex_state = 2}, + [1018] = {.lex_state = 146, .external_lex_state = 2}, + [1019] = {.lex_state = 146, .external_lex_state = 2}, + [1020] = {.lex_state = 6, .external_lex_state = 2}, + [1021] = {.lex_state = 146, .external_lex_state = 2}, + [1022] = {.lex_state = 146, .external_lex_state = 2}, + [1023] = {.lex_state = 8, .external_lex_state = 2}, + [1024] = {.lex_state = 146, .external_lex_state = 2}, + [1025] = {.lex_state = 146, .external_lex_state = 2}, + [1026] = {.lex_state = 8, .external_lex_state = 2}, + [1027] = {.lex_state = 146, .external_lex_state = 2}, + [1028] = {.lex_state = 8, .external_lex_state = 2}, + [1029] = {.lex_state = 8, .external_lex_state = 2}, + [1030] = {.lex_state = 146, .external_lex_state = 2}, + [1031] = {.lex_state = 146, .external_lex_state = 2}, + [1032] = {.lex_state = 146, .external_lex_state = 2}, + [1033] = {.lex_state = 146, .external_lex_state = 2}, + [1034] = {.lex_state = 146, .external_lex_state = 2}, + [1035] = {.lex_state = 146, .external_lex_state = 2}, + [1036] = {.lex_state = 146, .external_lex_state = 2}, + [1037] = {.lex_state = 146, .external_lex_state = 2}, + [1038] = {.lex_state = 146, .external_lex_state = 2}, + [1039] = {.lex_state = 146, .external_lex_state = 2}, + [1040] = {.lex_state = 146, .external_lex_state = 2}, + [1041] = {.lex_state = 146, .external_lex_state = 2}, + [1042] = {.lex_state = 8, .external_lex_state = 2}, + [1043] = {.lex_state = 146, .external_lex_state = 2}, + [1044] = {.lex_state = 2, .external_lex_state = 2}, + [1045] = {.lex_state = 2, .external_lex_state = 2}, + [1046] = {.lex_state = 2, .external_lex_state = 2}, + [1047] = {.lex_state = 2, .external_lex_state = 2}, + [1048] = {.lex_state = 2, .external_lex_state = 2}, + [1049] = {.lex_state = 2, .external_lex_state = 2}, + [1050] = {.lex_state = 145, .external_lex_state = 2}, + [1051] = {.lex_state = 2, .external_lex_state = 2}, + [1052] = {.lex_state = 2, .external_lex_state = 2}, + [1053] = {.lex_state = 2, .external_lex_state = 2}, [1054] = {.lex_state = 35, .external_lex_state = 2}, [1055] = {.lex_state = 35, .external_lex_state = 2}, - [1056] = {.lex_state = 146, .external_lex_state = 2}, - [1057] = {.lex_state = 146, .external_lex_state = 2}, - [1058] = {.lex_state = 146, .external_lex_state = 5}, - [1059] = {.lex_state = 146, .external_lex_state = 2}, - [1060] = {.lex_state = 146, .external_lex_state = 2}, - [1061] = {.lex_state = 146, .external_lex_state = 2}, - [1062] = {.lex_state = 146, .external_lex_state = 2}, + [1056] = {.lex_state = 35, .external_lex_state = 2}, + [1057] = {.lex_state = 35, .external_lex_state = 2}, + [1058] = {.lex_state = 35, .external_lex_state = 2}, + [1059] = {.lex_state = 35, .external_lex_state = 2}, + [1060] = {.lex_state = 35, .external_lex_state = 2}, + [1061] = {.lex_state = 35, .external_lex_state = 2}, + [1062] = {.lex_state = 35, .external_lex_state = 2}, [1063] = {.lex_state = 35, .external_lex_state = 2}, - [1064] = {.lex_state = 146, .external_lex_state = 2}, - [1065] = {.lex_state = 146, .external_lex_state = 2}, - [1066] = {.lex_state = 146, .external_lex_state = 2}, - [1067] = {.lex_state = 146, .external_lex_state = 2}, - [1068] = {.lex_state = 146, .external_lex_state = 2}, - [1069] = {.lex_state = 146, .external_lex_state = 2}, - [1070] = {.lex_state = 146, .external_lex_state = 2}, - [1071] = {.lex_state = 146, .external_lex_state = 2}, - [1072] = {.lex_state = 146, .external_lex_state = 2}, - [1073] = {.lex_state = 146, .external_lex_state = 2}, - [1074] = {.lex_state = 146, .external_lex_state = 5}, - [1075] = {.lex_state = 146, .external_lex_state = 2}, - [1076] = {.lex_state = 146, .external_lex_state = 2}, - [1077] = {.lex_state = 146, .external_lex_state = 2}, - [1078] = {.lex_state = 146, .external_lex_state = 2}, - [1079] = {.lex_state = 146, .external_lex_state = 2}, - [1080] = {.lex_state = 146, .external_lex_state = 2}, - [1081] = {.lex_state = 146, .external_lex_state = 2}, - [1082] = {.lex_state = 146, .external_lex_state = 2}, + [1064] = {.lex_state = 35, .external_lex_state = 2}, + [1065] = {.lex_state = 35, .external_lex_state = 2}, + [1066] = {.lex_state = 35, .external_lex_state = 2}, + [1067] = {.lex_state = 35, .external_lex_state = 2}, + [1068] = {.lex_state = 35, .external_lex_state = 2}, + [1069] = {.lex_state = 35, .external_lex_state = 2}, + [1070] = {.lex_state = 35, .external_lex_state = 2}, + [1071] = {.lex_state = 35, .external_lex_state = 2}, + [1072] = {.lex_state = 35, .external_lex_state = 2}, + [1073] = {.lex_state = 35, .external_lex_state = 2}, + [1074] = {.lex_state = 35, .external_lex_state = 2}, + [1075] = {.lex_state = 35, .external_lex_state = 2}, + [1076] = {.lex_state = 35, .external_lex_state = 2}, + [1077] = {.lex_state = 35, .external_lex_state = 2}, + [1078] = {.lex_state = 35, .external_lex_state = 2}, + [1079] = {.lex_state = 35, .external_lex_state = 2}, + [1080] = {.lex_state = 35, .external_lex_state = 2}, + [1081] = {.lex_state = 35, .external_lex_state = 2}, + [1082] = {.lex_state = 35, .external_lex_state = 2}, [1083] = {.lex_state = 35, .external_lex_state = 2}, - [1084] = {.lex_state = 19, .external_lex_state = 6}, - [1085] = {.lex_state = 2, .external_lex_state = 2}, - [1086] = {.lex_state = 2, .external_lex_state = 2}, - [1087] = {.lex_state = 2, .external_lex_state = 2}, - [1088] = {.lex_state = 2, .external_lex_state = 2}, - [1089] = {.lex_state = 2, .external_lex_state = 2}, + [1084] = {.lex_state = 35, .external_lex_state = 2}, + [1085] = {.lex_state = 35, .external_lex_state = 2}, + [1086] = {.lex_state = 12, .external_lex_state = 2}, + [1087] = {.lex_state = 12, .external_lex_state = 2}, + [1088] = {.lex_state = 35, .external_lex_state = 2}, + [1089] = {.lex_state = 146, .external_lex_state = 2}, [1090] = {.lex_state = 146, .external_lex_state = 2}, - [1091] = {.lex_state = 2, .external_lex_state = 2}, - [1092] = {.lex_state = 2, .external_lex_state = 2}, - [1093] = {.lex_state = 146, .external_lex_state = 5}, - [1094] = {.lex_state = 2, .external_lex_state = 2}, - [1095] = {.lex_state = 146, .external_lex_state = 2}, - [1096] = {.lex_state = 2, .external_lex_state = 2}, - [1097] = {.lex_state = 146, .external_lex_state = 5}, - [1098] = {.lex_state = 2, .external_lex_state = 2}, - [1099] = {.lex_state = 2, .external_lex_state = 2}, - [1100] = {.lex_state = 2, .external_lex_state = 2}, + [1091] = {.lex_state = 35, .external_lex_state = 2}, + [1092] = {.lex_state = 146, .external_lex_state = 2}, + [1093] = {.lex_state = 146, .external_lex_state = 2}, + [1094] = {.lex_state = 146, .external_lex_state = 2}, + [1095] = {.lex_state = 146, .external_lex_state = 5}, + [1096] = {.lex_state = 146, .external_lex_state = 2}, + [1097] = {.lex_state = 146, .external_lex_state = 2}, + [1098] = {.lex_state = 146, .external_lex_state = 2}, + [1099] = {.lex_state = 146, .external_lex_state = 2}, + [1100] = {.lex_state = 146, .external_lex_state = 2}, [1101] = {.lex_state = 146, .external_lex_state = 5}, [1102] = {.lex_state = 146, .external_lex_state = 2}, - [1103] = {.lex_state = 35, .external_lex_state = 2}, - [1104] = {.lex_state = 146, .external_lex_state = 5}, + [1103] = {.lex_state = 146, .external_lex_state = 2}, + [1104] = {.lex_state = 146, .external_lex_state = 2}, [1105] = {.lex_state = 146, .external_lex_state = 2}, - [1106] = {.lex_state = 2, .external_lex_state = 2}, - [1107] = {.lex_state = 145, .external_lex_state = 2}, - [1108] = {.lex_state = 2, .external_lex_state = 2}, - [1109] = {.lex_state = 19, .external_lex_state = 6}, - [1110] = {.lex_state = 19, .external_lex_state = 6}, + [1106] = {.lex_state = 146, .external_lex_state = 2}, + [1107] = {.lex_state = 146, .external_lex_state = 2}, + [1108] = {.lex_state = 146, .external_lex_state = 2}, + [1109] = {.lex_state = 146, .external_lex_state = 2}, + [1110] = {.lex_state = 146, .external_lex_state = 2}, [1111] = {.lex_state = 146, .external_lex_state = 2}, - [1112] = {.lex_state = 2, .external_lex_state = 2}, + [1112] = {.lex_state = 146, .external_lex_state = 2}, [1113] = {.lex_state = 146, .external_lex_state = 2}, - [1114] = {.lex_state = 35, .external_lex_state = 2}, + [1114] = {.lex_state = 146, .external_lex_state = 2}, [1115] = {.lex_state = 146, .external_lex_state = 2}, - [1116] = {.lex_state = 146, .external_lex_state = 2}, - [1117] = {.lex_state = 145, .external_lex_state = 2}, - [1118] = {.lex_state = 146, .external_lex_state = 5}, - [1119] = {.lex_state = 146, .external_lex_state = 5}, - [1120] = {.lex_state = 146, .external_lex_state = 5}, - [1121] = {.lex_state = 146, .external_lex_state = 2}, + [1116] = {.lex_state = 146, .external_lex_state = 5}, + [1117] = {.lex_state = 146, .external_lex_state = 2}, + [1118] = {.lex_state = 146, .external_lex_state = 2}, + [1119] = {.lex_state = 146, .external_lex_state = 2}, + [1120] = {.lex_state = 2, .external_lex_state = 2}, + [1121] = {.lex_state = 146, .external_lex_state = 5}, [1122] = {.lex_state = 2, .external_lex_state = 2}, - [1123] = {.lex_state = 146, .external_lex_state = 5}, - [1124] = {.lex_state = 146, .external_lex_state = 2}, + [1123] = {.lex_state = 146, .external_lex_state = 2}, + [1124] = {.lex_state = 35, .external_lex_state = 2}, [1125] = {.lex_state = 146, .external_lex_state = 5}, - [1126] = {.lex_state = 146, .external_lex_state = 5}, - [1127] = {.lex_state = 146, .external_lex_state = 5}, - [1128] = {.lex_state = 146, .external_lex_state = 5}, - [1129] = {.lex_state = 2, .external_lex_state = 2}, + [1126] = {.lex_state = 145, .external_lex_state = 2}, + [1127] = {.lex_state = 19, .external_lex_state = 6}, + [1128] = {.lex_state = 146, .external_lex_state = 2}, + [1129] = {.lex_state = 146, .external_lex_state = 5}, [1130] = {.lex_state = 146, .external_lex_state = 2}, [1131] = {.lex_state = 19, .external_lex_state = 6}, - [1132] = {.lex_state = 19, .external_lex_state = 6}, + [1132] = {.lex_state = 146, .external_lex_state = 5}, [1133] = {.lex_state = 2, .external_lex_state = 2}, - [1134] = {.lex_state = 35, .external_lex_state = 2}, - [1135] = {.lex_state = 35, .external_lex_state = 2}, + [1134] = {.lex_state = 146, .external_lex_state = 2}, + [1135] = {.lex_state = 2, .external_lex_state = 2}, [1136] = {.lex_state = 146, .external_lex_state = 2}, - [1137] = {.lex_state = 35, .external_lex_state = 2}, - [1138] = {.lex_state = 146, .external_lex_state = 2}, + [1137] = {.lex_state = 2, .external_lex_state = 2}, + [1138] = {.lex_state = 146, .external_lex_state = 5}, [1139] = {.lex_state = 146, .external_lex_state = 2}, - [1140] = {.lex_state = 35, .external_lex_state = 2}, - [1141] = {.lex_state = 146, .external_lex_state = 2}, - [1142] = {.lex_state = 35, .external_lex_state = 2}, - [1143] = {.lex_state = 146, .external_lex_state = 2}, + [1140] = {.lex_state = 146, .external_lex_state = 2}, + [1141] = {.lex_state = 2, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 2}, + [1143] = {.lex_state = 2, .external_lex_state = 2}, [1144] = {.lex_state = 35, .external_lex_state = 2}, - [1145] = {.lex_state = 146, .external_lex_state = 2}, - [1146] = {.lex_state = 146, .external_lex_state = 2}, - [1147] = {.lex_state = 146, .external_lex_state = 2}, - [1148] = {.lex_state = 146, .external_lex_state = 2}, - [1149] = {.lex_state = 146, .external_lex_state = 5}, + [1145] = {.lex_state = 2, .external_lex_state = 2}, + [1146] = {.lex_state = 2, .external_lex_state = 2}, + [1147] = {.lex_state = 2, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 2}, + [1149] = {.lex_state = 2, .external_lex_state = 2}, [1150] = {.lex_state = 35, .external_lex_state = 2}, - [1151] = {.lex_state = 35, .external_lex_state = 2}, - [1152] = {.lex_state = 146, .external_lex_state = 2}, - [1153] = {.lex_state = 35, .external_lex_state = 2}, - [1154] = {.lex_state = 35, .external_lex_state = 2}, - [1155] = {.lex_state = 146, .external_lex_state = 2}, - [1156] = {.lex_state = 35, .external_lex_state = 2}, - [1157] = {.lex_state = 35, .external_lex_state = 2}, - [1158] = {.lex_state = 35, .external_lex_state = 2}, - [1159] = {.lex_state = 146, .external_lex_state = 5}, - [1160] = {.lex_state = 146, .external_lex_state = 2}, - [1161] = {.lex_state = 146, .external_lex_state = 2}, - [1162] = {.lex_state = 35, .external_lex_state = 2}, - [1163] = {.lex_state = 146, .external_lex_state = 2}, - [1164] = {.lex_state = 146, .external_lex_state = 2}, - [1165] = {.lex_state = 146, .external_lex_state = 2}, + [1151] = {.lex_state = 2, .external_lex_state = 2}, + [1152] = {.lex_state = 19, .external_lex_state = 6}, + [1153] = {.lex_state = 2, .external_lex_state = 2}, + [1154] = {.lex_state = 146, .external_lex_state = 5}, + [1155] = {.lex_state = 146, .external_lex_state = 5}, + [1156] = {.lex_state = 145, .external_lex_state = 2}, + [1157] = {.lex_state = 146, .external_lex_state = 5}, + [1158] = {.lex_state = 146, .external_lex_state = 5}, + [1159] = {.lex_state = 2, .external_lex_state = 2}, + [1160] = {.lex_state = 146, .external_lex_state = 5}, + [1161] = {.lex_state = 146, .external_lex_state = 5}, + [1162] = {.lex_state = 2, .external_lex_state = 2}, + [1163] = {.lex_state = 2, .external_lex_state = 2}, + [1164] = {.lex_state = 19, .external_lex_state = 6}, + [1165] = {.lex_state = 19, .external_lex_state = 6}, [1166] = {.lex_state = 35, .external_lex_state = 2}, [1167] = {.lex_state = 146, .external_lex_state = 2}, - [1168] = {.lex_state = 146, .external_lex_state = 2}, + [1168] = {.lex_state = 35, .external_lex_state = 2}, [1169] = {.lex_state = 35, .external_lex_state = 2}, - [1170] = {.lex_state = 35, .external_lex_state = 2}, - [1171] = {.lex_state = 146, .external_lex_state = 2}, - [1172] = {.lex_state = 146, .external_lex_state = 2}, + [1170] = {.lex_state = 146, .external_lex_state = 2}, + [1171] = {.lex_state = 35, .external_lex_state = 2}, + [1172] = {.lex_state = 35, .external_lex_state = 2}, [1173] = {.lex_state = 35, .external_lex_state = 2}, - [1174] = {.lex_state = 146, .external_lex_state = 5}, + [1174] = {.lex_state = 146, .external_lex_state = 2}, [1175] = {.lex_state = 146, .external_lex_state = 2}, [1176] = {.lex_state = 35, .external_lex_state = 2}, [1177] = {.lex_state = 35, .external_lex_state = 2}, - [1178] = {.lex_state = 35, .external_lex_state = 2}, + [1178] = {.lex_state = 146, .external_lex_state = 2}, [1179] = {.lex_state = 35, .external_lex_state = 2}, - [1180] = {.lex_state = 35, .external_lex_state = 2}, - [1181] = {.lex_state = 146, .external_lex_state = 2}, + [1180] = {.lex_state = 146, .external_lex_state = 2}, + [1181] = {.lex_state = 35, .external_lex_state = 2}, [1182] = {.lex_state = 35, .external_lex_state = 2}, - [1183] = {.lex_state = 146, .external_lex_state = 5}, - [1184] = {.lex_state = 13, .external_lex_state = 2}, - [1185] = {.lex_state = 146, .external_lex_state = 2}, - [1186] = {.lex_state = 145, .external_lex_state = 2}, - [1187] = {.lex_state = 146, .external_lex_state = 5}, - [1188] = {.lex_state = 146, .external_lex_state = 5}, - [1189] = {.lex_state = 24, .external_lex_state = 7}, - [1190] = {.lex_state = 146, .external_lex_state = 2}, - [1191] = {.lex_state = 15, .external_lex_state = 7}, - [1192] = {.lex_state = 146, .external_lex_state = 5}, - [1193] = {.lex_state = 146, .external_lex_state = 5}, + [1183] = {.lex_state = 35, .external_lex_state = 2}, + [1184] = {.lex_state = 146, .external_lex_state = 5}, + [1185] = {.lex_state = 146, .external_lex_state = 5}, + [1186] = {.lex_state = 146, .external_lex_state = 2}, + [1187] = {.lex_state = 35, .external_lex_state = 2}, + [1188] = {.lex_state = 146, .external_lex_state = 2}, + [1189] = {.lex_state = 146, .external_lex_state = 2}, + [1190] = {.lex_state = 35, .external_lex_state = 2}, + [1191] = {.lex_state = 35, .external_lex_state = 2}, + [1192] = {.lex_state = 146, .external_lex_state = 2}, + [1193] = {.lex_state = 146, .external_lex_state = 2}, [1194] = {.lex_state = 146, .external_lex_state = 2}, - [1195] = {.lex_state = 146, .external_lex_state = 2}, - [1196] = {.lex_state = 24, .external_lex_state = 7}, - [1197] = {.lex_state = 24, .external_lex_state = 7}, - [1198] = {.lex_state = 15, .external_lex_state = 7}, - [1199] = {.lex_state = 13, .external_lex_state = 2}, - [1200] = {.lex_state = 22, .external_lex_state = 2}, - [1201] = {.lex_state = 15, .external_lex_state = 7}, - [1202] = {.lex_state = 24, .external_lex_state = 7}, - [1203] = {.lex_state = 15, .external_lex_state = 7}, - [1204] = {.lex_state = 146, .external_lex_state = 2}, - [1205] = {.lex_state = 19, .external_lex_state = 6}, - [1206] = {.lex_state = 15, .external_lex_state = 7}, - [1207] = {.lex_state = 146, .external_lex_state = 2}, - [1208] = {.lex_state = 24, .external_lex_state = 7}, + [1195] = {.lex_state = 35, .external_lex_state = 2}, + [1196] = {.lex_state = 35, .external_lex_state = 2}, + [1197] = {.lex_state = 146, .external_lex_state = 2}, + [1198] = {.lex_state = 146, .external_lex_state = 2}, + [1199] = {.lex_state = 146, .external_lex_state = 2}, + [1200] = {.lex_state = 146, .external_lex_state = 2}, + [1201] = {.lex_state = 35, .external_lex_state = 2}, + [1202] = {.lex_state = 35, .external_lex_state = 2}, + [1203] = {.lex_state = 35, .external_lex_state = 2}, + [1204] = {.lex_state = 35, .external_lex_state = 2}, + [1205] = {.lex_state = 35, .external_lex_state = 2}, + [1206] = {.lex_state = 146, .external_lex_state = 2}, + [1207] = {.lex_state = 146, .external_lex_state = 5}, + [1208] = {.lex_state = 146, .external_lex_state = 2}, [1209] = {.lex_state = 146, .external_lex_state = 2}, [1210] = {.lex_state = 146, .external_lex_state = 2}, - [1211] = {.lex_state = 146, .external_lex_state = 2}, - [1212] = {.lex_state = 145, .external_lex_state = 2}, - [1213] = {.lex_state = 146, .external_lex_state = 2}, - [1214] = {.lex_state = 146, .external_lex_state = 2}, + [1211] = {.lex_state = 35, .external_lex_state = 2}, + [1212] = {.lex_state = 146, .external_lex_state = 2}, + [1213] = {.lex_state = 146, .external_lex_state = 5}, + [1214] = {.lex_state = 35, .external_lex_state = 2}, [1215] = {.lex_state = 146, .external_lex_state = 2}, - [1216] = {.lex_state = 146, .external_lex_state = 5}, + [1216] = {.lex_state = 146, .external_lex_state = 2}, [1217] = {.lex_state = 146, .external_lex_state = 5}, [1218] = {.lex_state = 146, .external_lex_state = 2}, [1219] = {.lex_state = 146, .external_lex_state = 2}, - [1220] = {.lex_state = 13, .external_lex_state = 2}, - [1221] = {.lex_state = 22, .external_lex_state = 2}, + [1220] = {.lex_state = 146, .external_lex_state = 2}, + [1221] = {.lex_state = 146, .external_lex_state = 2}, [1222] = {.lex_state = 146, .external_lex_state = 2}, [1223] = {.lex_state = 146, .external_lex_state = 2}, [1224] = {.lex_state = 146, .external_lex_state = 2}, [1225] = {.lex_state = 146, .external_lex_state = 2}, - [1226] = {.lex_state = 146, .external_lex_state = 2}, - [1227] = {.lex_state = 146, .external_lex_state = 2}, - [1228] = {.lex_state = 15, .external_lex_state = 7}, - [1229] = {.lex_state = 24, .external_lex_state = 7}, + [1226] = {.lex_state = 13, .external_lex_state = 2}, + [1227] = {.lex_state = 22, .external_lex_state = 2}, + [1228] = {.lex_state = 146, .external_lex_state = 2}, + [1229] = {.lex_state = 15, .external_lex_state = 7}, [1230] = {.lex_state = 24, .external_lex_state = 7}, [1231] = {.lex_state = 146, .external_lex_state = 2}, - [1232] = {.lex_state = 22, .external_lex_state = 2}, - [1233] = {.lex_state = 146, .external_lex_state = 2}, - [1234] = {.lex_state = 146, .external_lex_state = 2}, - [1235] = {.lex_state = 146, .external_lex_state = 2}, - [1236] = {.lex_state = 146, .external_lex_state = 2}, - [1237] = {.lex_state = 146, .external_lex_state = 5}, - [1238] = {.lex_state = 15, .external_lex_state = 7}, - [1239] = {.lex_state = 146, .external_lex_state = 2}, - [1240] = {.lex_state = 146, .external_lex_state = 2}, - [1241] = {.lex_state = 146, .external_lex_state = 2}, - [1242] = {.lex_state = 146, .external_lex_state = 5}, + [1232] = {.lex_state = 146, .external_lex_state = 2}, + [1233] = {.lex_state = 15, .external_lex_state = 7}, + [1234] = {.lex_state = 24, .external_lex_state = 7}, + [1235] = {.lex_state = 19, .external_lex_state = 6}, + [1236] = {.lex_state = 15, .external_lex_state = 7}, + [1237] = {.lex_state = 24, .external_lex_state = 7}, + [1238] = {.lex_state = 146, .external_lex_state = 5}, + [1239] = {.lex_state = 146, .external_lex_state = 5}, + [1240] = {.lex_state = 15, .external_lex_state = 7}, + [1241] = {.lex_state = 24, .external_lex_state = 7}, + [1242] = {.lex_state = 146, .external_lex_state = 2}, [1243] = {.lex_state = 146, .external_lex_state = 2}, - [1244] = {.lex_state = 146, .external_lex_state = 2}, + [1244] = {.lex_state = 146, .external_lex_state = 5}, [1245] = {.lex_state = 146, .external_lex_state = 5}, - [1246] = {.lex_state = 146, .external_lex_state = 2}, - [1247] = {.lex_state = 146, .external_lex_state = 5}, - [1248] = {.lex_state = 15, .external_lex_state = 7}, - [1249] = {.lex_state = 24, .external_lex_state = 7}, - [1250] = {.lex_state = 146, .external_lex_state = 5}, - [1251] = {.lex_state = 146, .external_lex_state = 5}, - [1252] = {.lex_state = 15, .external_lex_state = 7}, - [1253] = {.lex_state = 146, .external_lex_state = 2}, - [1254] = {.lex_state = 146, .external_lex_state = 2}, - [1255] = {.lex_state = 146, .external_lex_state = 2}, - [1256] = {.lex_state = 24, .external_lex_state = 7}, - [1257] = {.lex_state = 146, .external_lex_state = 2}, + [1246] = {.lex_state = 15, .external_lex_state = 7}, + [1247] = {.lex_state = 15, .external_lex_state = 7}, + [1248] = {.lex_state = 24, .external_lex_state = 7}, + [1249] = {.lex_state = 146, .external_lex_state = 5}, + [1250] = {.lex_state = 13, .external_lex_state = 2}, + [1251] = {.lex_state = 146, .external_lex_state = 2}, + [1252] = {.lex_state = 146, .external_lex_state = 2}, + [1253] = {.lex_state = 22, .external_lex_state = 2}, + [1254] = {.lex_state = 146, .external_lex_state = 5}, + [1255] = {.lex_state = 146, .external_lex_state = 5}, + [1256] = {.lex_state = 146, .external_lex_state = 2}, + [1257] = {.lex_state = 24, .external_lex_state = 7}, [1258] = {.lex_state = 146, .external_lex_state = 2}, - [1259] = {.lex_state = 146, .external_lex_state = 2}, - [1260] = {.lex_state = 146, .external_lex_state = 2}, - [1261] = {.lex_state = 146, .external_lex_state = 2}, - [1262] = {.lex_state = 146, .external_lex_state = 2}, - [1263] = {.lex_state = 146, .external_lex_state = 2}, - [1264] = {.lex_state = 3, .external_lex_state = 2}, + [1259] = {.lex_state = 146, .external_lex_state = 5}, + [1260] = {.lex_state = 15, .external_lex_state = 7}, + [1261] = {.lex_state = 24, .external_lex_state = 7}, + [1262] = {.lex_state = 13, .external_lex_state = 2}, + [1263] = {.lex_state = 22, .external_lex_state = 2}, + [1264] = {.lex_state = 145, .external_lex_state = 2}, [1265] = {.lex_state = 146, .external_lex_state = 2}, - [1266] = {.lex_state = 146, .external_lex_state = 2}, - [1267] = {.lex_state = 146, .external_lex_state = 2}, + [1266] = {.lex_state = 15, .external_lex_state = 7}, + [1267] = {.lex_state = 24, .external_lex_state = 7}, [1268] = {.lex_state = 146, .external_lex_state = 2}, [1269] = {.lex_state = 146, .external_lex_state = 2}, [1270] = {.lex_state = 146, .external_lex_state = 5}, [1271] = {.lex_state = 146, .external_lex_state = 2}, [1272] = {.lex_state = 146, .external_lex_state = 2}, [1273] = {.lex_state = 146, .external_lex_state = 2}, - [1274] = {.lex_state = 3, .external_lex_state = 2}, + [1274] = {.lex_state = 145, .external_lex_state = 2}, [1275] = {.lex_state = 146, .external_lex_state = 2}, [1276] = {.lex_state = 146, .external_lex_state = 2}, [1277] = {.lex_state = 146, .external_lex_state = 2}, [1278] = {.lex_state = 146, .external_lex_state = 2}, [1279] = {.lex_state = 146, .external_lex_state = 2}, - [1280] = {.lex_state = 146, .external_lex_state = 2}, - [1281] = {.lex_state = 7, .external_lex_state = 2}, - [1282] = {.lex_state = 3, .external_lex_state = 2}, + [1280] = {.lex_state = 15, .external_lex_state = 7}, + [1281] = {.lex_state = 24, .external_lex_state = 7}, + [1282] = {.lex_state = 146, .external_lex_state = 5}, [1283] = {.lex_state = 146, .external_lex_state = 2}, [1284] = {.lex_state = 146, .external_lex_state = 2}, [1285] = {.lex_state = 146, .external_lex_state = 2}, [1286] = {.lex_state = 146, .external_lex_state = 2}, [1287] = {.lex_state = 146, .external_lex_state = 2}, - [1288] = {.lex_state = 7, .external_lex_state = 2}, + [1288] = {.lex_state = 146, .external_lex_state = 5}, [1289] = {.lex_state = 146, .external_lex_state = 2}, [1290] = {.lex_state = 146, .external_lex_state = 2}, [1291] = {.lex_state = 146, .external_lex_state = 2}, [1292] = {.lex_state = 146, .external_lex_state = 5}, - [1293] = {.lex_state = 146, .external_lex_state = 5}, - [1294] = {.lex_state = 3, .external_lex_state = 2}, + [1293] = {.lex_state = 146, .external_lex_state = 2}, + [1294] = {.lex_state = 146, .external_lex_state = 2}, [1295] = {.lex_state = 146, .external_lex_state = 2}, - [1296] = {.lex_state = 146, .external_lex_state = 2}, - [1297] = {.lex_state = 146, .external_lex_state = 2}, + [1296] = {.lex_state = 146, .external_lex_state = 5}, + [1297] = {.lex_state = 7, .external_lex_state = 2}, [1298] = {.lex_state = 146, .external_lex_state = 2}, [1299] = {.lex_state = 146, .external_lex_state = 2}, [1300] = {.lex_state = 146, .external_lex_state = 2}, [1301] = {.lex_state = 146, .external_lex_state = 2}, - [1302] = {.lex_state = 146, .external_lex_state = 2}, + [1302] = {.lex_state = 146, .external_lex_state = 5}, [1303] = {.lex_state = 146, .external_lex_state = 2}, [1304] = {.lex_state = 146, .external_lex_state = 2}, [1305] = {.lex_state = 146, .external_lex_state = 2}, [1306] = {.lex_state = 146, .external_lex_state = 2}, - [1307] = {.lex_state = 146, .external_lex_state = 2}, - [1308] = {.lex_state = 146, .external_lex_state = 2}, + [1307] = {.lex_state = 146, .external_lex_state = 5}, + [1308] = {.lex_state = 3, .external_lex_state = 2}, [1309] = {.lex_state = 146, .external_lex_state = 5}, [1310] = {.lex_state = 146, .external_lex_state = 2}, [1311] = {.lex_state = 146, .external_lex_state = 2}, [1312] = {.lex_state = 146, .external_lex_state = 2}, - [1313] = {.lex_state = 146, .external_lex_state = 5}, - [1314] = {.lex_state = 7, .external_lex_state = 2}, + [1313] = {.lex_state = 146, .external_lex_state = 2}, + [1314] = {.lex_state = 146, .external_lex_state = 2}, [1315] = {.lex_state = 146, .external_lex_state = 2}, - [1316] = {.lex_state = 146, .external_lex_state = 2}, + [1316] = {.lex_state = 3, .external_lex_state = 2}, [1317] = {.lex_state = 146, .external_lex_state = 2}, [1318] = {.lex_state = 146, .external_lex_state = 2}, [1319] = {.lex_state = 146, .external_lex_state = 2}, @@ -8187,10 +8276,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1321] = {.lex_state = 146, .external_lex_state = 2}, [1322] = {.lex_state = 146, .external_lex_state = 2}, [1323] = {.lex_state = 146, .external_lex_state = 2}, - [1324] = {.lex_state = 146, .external_lex_state = 2}, - [1325] = {.lex_state = 3, .external_lex_state = 2}, - [1326] = {.lex_state = 146, .external_lex_state = 5}, - [1327] = {.lex_state = 146, .external_lex_state = 5}, + [1324] = {.lex_state = 146, .external_lex_state = 5}, + [1325] = {.lex_state = 146, .external_lex_state = 2}, + [1326] = {.lex_state = 3, .external_lex_state = 2}, + [1327] = {.lex_state = 3, .external_lex_state = 2}, [1328] = {.lex_state = 146, .external_lex_state = 2}, [1329] = {.lex_state = 146, .external_lex_state = 2}, [1330] = {.lex_state = 146, .external_lex_state = 2}, @@ -8199,55 +8288,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1333] = {.lex_state = 146, .external_lex_state = 2}, [1334] = {.lex_state = 146, .external_lex_state = 2}, [1335] = {.lex_state = 146, .external_lex_state = 2}, - [1336] = {.lex_state = 7, .external_lex_state = 2}, + [1336] = {.lex_state = 146, .external_lex_state = 2}, [1337] = {.lex_state = 146, .external_lex_state = 2}, [1338] = {.lex_state = 146, .external_lex_state = 2}, - [1339] = {.lex_state = 3, .external_lex_state = 2}, + [1339] = {.lex_state = 146, .external_lex_state = 2}, [1340] = {.lex_state = 146, .external_lex_state = 2}, - [1341] = {.lex_state = 146, .external_lex_state = 5}, + [1341] = {.lex_state = 3, .external_lex_state = 2}, [1342] = {.lex_state = 146, .external_lex_state = 2}, [1343] = {.lex_state = 146, .external_lex_state = 2}, - [1344] = {.lex_state = 146, .external_lex_state = 2}, + [1344] = {.lex_state = 146, .external_lex_state = 5}, [1345] = {.lex_state = 146, .external_lex_state = 2}, [1346] = {.lex_state = 146, .external_lex_state = 2}, [1347] = {.lex_state = 146, .external_lex_state = 2}, - [1348] = {.lex_state = 146, .external_lex_state = 2}, - [1349] = {.lex_state = 146, .external_lex_state = 2}, + [1348] = {.lex_state = 7, .external_lex_state = 2}, + [1349] = {.lex_state = 146, .external_lex_state = 5}, [1350] = {.lex_state = 146, .external_lex_state = 2}, [1351] = {.lex_state = 146, .external_lex_state = 2}, [1352] = {.lex_state = 146, .external_lex_state = 2}, - [1353] = {.lex_state = 146, .external_lex_state = 5}, - [1354] = {.lex_state = 3, .external_lex_state = 2}, + [1353] = {.lex_state = 7, .external_lex_state = 2}, + [1354] = {.lex_state = 146, .external_lex_state = 2}, [1355] = {.lex_state = 146, .external_lex_state = 2}, [1356] = {.lex_state = 146, .external_lex_state = 2}, [1357] = {.lex_state = 146, .external_lex_state = 2}, [1358] = {.lex_state = 146, .external_lex_state = 2}, - [1359] = {.lex_state = 7, .external_lex_state = 2}, + [1359] = {.lex_state = 146, .external_lex_state = 2}, [1360] = {.lex_state = 146, .external_lex_state = 2}, [1361] = {.lex_state = 146, .external_lex_state = 2}, [1362] = {.lex_state = 146, .external_lex_state = 2}, [1363] = {.lex_state = 146, .external_lex_state = 2}, [1364] = {.lex_state = 146, .external_lex_state = 2}, [1365] = {.lex_state = 146, .external_lex_state = 2}, - [1366] = {.lex_state = 146, .external_lex_state = 5}, - [1367] = {.lex_state = 146, .external_lex_state = 2}, + [1366] = {.lex_state = 146, .external_lex_state = 2}, + [1367] = {.lex_state = 146, .external_lex_state = 5}, [1368] = {.lex_state = 146, .external_lex_state = 2}, [1369] = {.lex_state = 146, .external_lex_state = 2}, [1370] = {.lex_state = 146, .external_lex_state = 2}, - [1371] = {.lex_state = 146, .external_lex_state = 2}, + [1371] = {.lex_state = 146, .external_lex_state = 5}, [1372] = {.lex_state = 146, .external_lex_state = 2}, [1373] = {.lex_state = 146, .external_lex_state = 2}, - [1374] = {.lex_state = 146, .external_lex_state = 2}, + [1374] = {.lex_state = 3, .external_lex_state = 2}, [1375] = {.lex_state = 146, .external_lex_state = 2}, [1376] = {.lex_state = 146, .external_lex_state = 2}, [1377] = {.lex_state = 146, .external_lex_state = 2}, [1378] = {.lex_state = 146, .external_lex_state = 2}, - [1379] = {.lex_state = 146, .external_lex_state = 2}, + [1379] = {.lex_state = 7, .external_lex_state = 2}, [1380] = {.lex_state = 146, .external_lex_state = 2}, [1381] = {.lex_state = 146, .external_lex_state = 2}, [1382] = {.lex_state = 146, .external_lex_state = 2}, [1383] = {.lex_state = 146, .external_lex_state = 2}, - [1384] = {.lex_state = 146, .external_lex_state = 2}, + [1384] = {.lex_state = 3, .external_lex_state = 2}, [1385] = {.lex_state = 146, .external_lex_state = 2}, [1386] = {.lex_state = 146, .external_lex_state = 2}, [1387] = {.lex_state = 146, .external_lex_state = 2}, @@ -8264,8 +8353,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1398] = {.lex_state = 146, .external_lex_state = 2}, [1399] = {.lex_state = 146, .external_lex_state = 2}, [1400] = {.lex_state = 146, .external_lex_state = 2}, - [1401] = {.lex_state = 146, .external_lex_state = 5}, - [1402] = {.lex_state = 146, .external_lex_state = 5}, + [1401] = {.lex_state = 146, .external_lex_state = 2}, + [1402] = {.lex_state = 146, .external_lex_state = 2}, [1403] = {.lex_state = 146, .external_lex_state = 2}, [1404] = {.lex_state = 146, .external_lex_state = 2}, [1405] = {.lex_state = 146, .external_lex_state = 2}, @@ -8276,11 +8365,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1410] = {.lex_state = 146, .external_lex_state = 2}, [1411] = {.lex_state = 146, .external_lex_state = 2}, [1412] = {.lex_state = 146, .external_lex_state = 2}, - [1413] = {.lex_state = 146, .external_lex_state = 2}, + [1413] = {.lex_state = 146, .external_lex_state = 5}, [1414] = {.lex_state = 146, .external_lex_state = 2}, [1415] = {.lex_state = 146, .external_lex_state = 2}, [1416] = {.lex_state = 146, .external_lex_state = 2}, - [1417] = {.lex_state = 146, .external_lex_state = 5}, + [1417] = {.lex_state = 7, .external_lex_state = 2}, [1418] = {.lex_state = 146, .external_lex_state = 2}, [1419] = {.lex_state = 146, .external_lex_state = 2}, [1420] = {.lex_state = 146, .external_lex_state = 2}, @@ -8291,41 +8380,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1425] = {.lex_state = 146, .external_lex_state = 2}, [1426] = {.lex_state = 146, .external_lex_state = 2}, [1427] = {.lex_state = 146, .external_lex_state = 2}, - [1428] = {.lex_state = 146, .external_lex_state = 2}, - [1429] = {.lex_state = 7, .external_lex_state = 2}, + [1428] = {.lex_state = 35, .external_lex_state = 2}, + [1429] = {.lex_state = 146, .external_lex_state = 2}, [1430] = {.lex_state = 146, .external_lex_state = 2}, [1431] = {.lex_state = 146, .external_lex_state = 2}, [1432] = {.lex_state = 146, .external_lex_state = 2}, [1433] = {.lex_state = 146, .external_lex_state = 2}, [1434] = {.lex_state = 146, .external_lex_state = 2}, [1435] = {.lex_state = 146, .external_lex_state = 2}, - [1436] = {.lex_state = 146, .external_lex_state = 5}, + [1436] = {.lex_state = 146, .external_lex_state = 2}, [1437] = {.lex_state = 146, .external_lex_state = 5}, [1438] = {.lex_state = 146, .external_lex_state = 5}, [1439] = {.lex_state = 146, .external_lex_state = 2}, [1440] = {.lex_state = 146, .external_lex_state = 2}, - [1441] = {.lex_state = 146, .external_lex_state = 5}, - [1442] = {.lex_state = 146, .external_lex_state = 5}, + [1441] = {.lex_state = 146, .external_lex_state = 2}, + [1442] = {.lex_state = 146, .external_lex_state = 2}, [1443] = {.lex_state = 146, .external_lex_state = 2}, [1444] = {.lex_state = 146, .external_lex_state = 2}, [1445] = {.lex_state = 146, .external_lex_state = 2}, [1446] = {.lex_state = 146, .external_lex_state = 2}, - [1447] = {.lex_state = 146, .external_lex_state = 2}, + [1447] = {.lex_state = 7, .external_lex_state = 2}, [1448] = {.lex_state = 146, .external_lex_state = 2}, [1449] = {.lex_state = 146, .external_lex_state = 2}, - [1450] = {.lex_state = 146, .external_lex_state = 2}, + [1450] = {.lex_state = 146, .external_lex_state = 5}, [1451] = {.lex_state = 146, .external_lex_state = 2}, [1452] = {.lex_state = 146, .external_lex_state = 2}, [1453] = {.lex_state = 146, .external_lex_state = 2}, [1454] = {.lex_state = 146, .external_lex_state = 2}, [1455] = {.lex_state = 146, .external_lex_state = 2}, [1456] = {.lex_state = 146, .external_lex_state = 2}, - [1457] = {.lex_state = 146, .external_lex_state = 5}, + [1457] = {.lex_state = 146, .external_lex_state = 2}, [1458] = {.lex_state = 146, .external_lex_state = 2}, - [1459] = {.lex_state = 146, .external_lex_state = 5}, + [1459] = {.lex_state = 146, .external_lex_state = 2}, [1460] = {.lex_state = 146, .external_lex_state = 2}, [1461] = {.lex_state = 146, .external_lex_state = 2}, - [1462] = {.lex_state = 146, .external_lex_state = 5}, + [1462] = {.lex_state = 146, .external_lex_state = 2}, [1463] = {.lex_state = 146, .external_lex_state = 2}, [1464] = {.lex_state = 146, .external_lex_state = 2}, [1465] = {.lex_state = 146, .external_lex_state = 2}, @@ -8334,17 +8423,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1468] = {.lex_state = 146, .external_lex_state = 2}, [1469] = {.lex_state = 146, .external_lex_state = 2}, [1470] = {.lex_state = 146, .external_lex_state = 2}, - [1471] = {.lex_state = 146, .external_lex_state = 2}, + [1471] = {.lex_state = 146, .external_lex_state = 5}, [1472] = {.lex_state = 146, .external_lex_state = 2}, [1473] = {.lex_state = 146, .external_lex_state = 2}, - [1474] = {.lex_state = 146, .external_lex_state = 2}, - [1475] = {.lex_state = 146, .external_lex_state = 2}, + [1474] = {.lex_state = 146, .external_lex_state = 5}, + [1475] = {.lex_state = 146, .external_lex_state = 5}, [1476] = {.lex_state = 146, .external_lex_state = 2}, - [1477] = {.lex_state = 146, .external_lex_state = 2}, + [1477] = {.lex_state = 146, .external_lex_state = 5}, [1478] = {.lex_state = 146, .external_lex_state = 2}, - [1479] = {.lex_state = 7, .external_lex_state = 2}, + [1479] = {.lex_state = 146, .external_lex_state = 2}, [1480] = {.lex_state = 146, .external_lex_state = 2}, - [1481] = {.lex_state = 146, .external_lex_state = 2}, + [1481] = {.lex_state = 146, .external_lex_state = 5}, [1482] = {.lex_state = 146, .external_lex_state = 2}, [1483] = {.lex_state = 146, .external_lex_state = 2}, [1484] = {.lex_state = 146, .external_lex_state = 2}, @@ -8360,7 +8449,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1494] = {.lex_state = 146, .external_lex_state = 2}, [1495] = {.lex_state = 146, .external_lex_state = 2}, [1496] = {.lex_state = 146, .external_lex_state = 2}, - [1497] = {.lex_state = 146, .external_lex_state = 5}, + [1497] = {.lex_state = 146, .external_lex_state = 2}, [1498] = {.lex_state = 146, .external_lex_state = 2}, [1499] = {.lex_state = 146, .external_lex_state = 2}, [1500] = {.lex_state = 146, .external_lex_state = 2}, @@ -8369,16 +8458,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1503] = {.lex_state = 146, .external_lex_state = 2}, [1504] = {.lex_state = 146, .external_lex_state = 2}, [1505] = {.lex_state = 146, .external_lex_state = 2}, - [1506] = {.lex_state = 35, .external_lex_state = 2}, + [1506] = {.lex_state = 146, .external_lex_state = 2}, [1507] = {.lex_state = 146, .external_lex_state = 2}, [1508] = {.lex_state = 146, .external_lex_state = 2}, [1509] = {.lex_state = 146, .external_lex_state = 2}, - [1510] = {.lex_state = 146, .external_lex_state = 2}, + [1510] = {.lex_state = 146, .external_lex_state = 5}, [1511] = {.lex_state = 146, .external_lex_state = 2}, [1512] = {.lex_state = 146, .external_lex_state = 2}, - [1513] = {.lex_state = 146, .external_lex_state = 2}, + [1513] = {.lex_state = 146, .external_lex_state = 5}, [1514] = {.lex_state = 146, .external_lex_state = 2}, - [1515] = {.lex_state = 146, .external_lex_state = 5}, + [1515] = {.lex_state = 146, .external_lex_state = 2}, [1516] = {.lex_state = 146, .external_lex_state = 2}, [1517] = {.lex_state = 146, .external_lex_state = 2}, [1518] = {.lex_state = 146, .external_lex_state = 2}, @@ -8398,18 +8487,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1532] = {.lex_state = 146, .external_lex_state = 2}, [1533] = {.lex_state = 146, .external_lex_state = 2}, [1534] = {.lex_state = 146, .external_lex_state = 2}, - [1535] = {.lex_state = 146, .external_lex_state = 5}, - [1536] = {.lex_state = 146, .external_lex_state = 5}, + [1535] = {.lex_state = 146, .external_lex_state = 2}, + [1536] = {.lex_state = 146, .external_lex_state = 2}, [1537] = {.lex_state = 146, .external_lex_state = 2}, [1538] = {.lex_state = 146, .external_lex_state = 2}, [1539] = {.lex_state = 146, .external_lex_state = 2}, [1540] = {.lex_state = 146, .external_lex_state = 2}, - [1541] = {.lex_state = 146, .external_lex_state = 5}, + [1541] = {.lex_state = 146, .external_lex_state = 2}, [1542] = {.lex_state = 146, .external_lex_state = 2}, [1543] = {.lex_state = 146, .external_lex_state = 2}, [1544] = {.lex_state = 146, .external_lex_state = 2}, [1545] = {.lex_state = 146, .external_lex_state = 2}, - [1546] = {.lex_state = 146, .external_lex_state = 2}, + [1546] = {.lex_state = 146, .external_lex_state = 5}, [1547] = {.lex_state = 146, .external_lex_state = 2}, [1548] = {.lex_state = 146, .external_lex_state = 2}, [1549] = {.lex_state = 146, .external_lex_state = 2}, @@ -8420,9 +8509,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1554] = {.lex_state = 146, .external_lex_state = 2}, [1555] = {.lex_state = 146, .external_lex_state = 2}, [1556] = {.lex_state = 146, .external_lex_state = 2}, - [1557] = {.lex_state = 146, .external_lex_state = 2}, + [1557] = {.lex_state = 146, .external_lex_state = 5}, [1558] = {.lex_state = 146, .external_lex_state = 2}, - [1559] = {.lex_state = 146, .external_lex_state = 2}, + [1559] = {.lex_state = 146, .external_lex_state = 5}, [1560] = {.lex_state = 146, .external_lex_state = 2}, [1561] = {.lex_state = 146, .external_lex_state = 2}, [1562] = {.lex_state = 146, .external_lex_state = 2}, @@ -8433,44 +8522,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1567] = {.lex_state = 146, .external_lex_state = 2}, [1568] = {.lex_state = 146, .external_lex_state = 2}, [1569] = {.lex_state = 146, .external_lex_state = 2}, - [1570] = {.lex_state = 146, .external_lex_state = 2}, + [1570] = {.lex_state = 7, .external_lex_state = 2}, [1571] = {.lex_state = 146, .external_lex_state = 2}, [1572] = {.lex_state = 146, .external_lex_state = 2}, - [1573] = {.lex_state = 7, .external_lex_state = 2}, + [1573] = {.lex_state = 146, .external_lex_state = 2}, [1574] = {.lex_state = 146, .external_lex_state = 2}, - [1575] = {.lex_state = 146, .external_lex_state = 5}, + [1575] = {.lex_state = 7, .external_lex_state = 2}, [1576] = {.lex_state = 146, .external_lex_state = 2}, [1577] = {.lex_state = 146, .external_lex_state = 2}, [1578] = {.lex_state = 146, .external_lex_state = 2}, [1579] = {.lex_state = 146, .external_lex_state = 2}, - [1580] = {.lex_state = 146, .external_lex_state = 2}, + [1580] = {.lex_state = 146, .external_lex_state = 5}, [1581] = {.lex_state = 146, .external_lex_state = 2}, - [1582] = {.lex_state = 146, .external_lex_state = 2}, - [1583] = {.lex_state = 146, .external_lex_state = 5}, + [1582] = {.lex_state = 146, .external_lex_state = 5}, + [1583] = {.lex_state = 146, .external_lex_state = 2}, [1584] = {.lex_state = 146, .external_lex_state = 2}, - [1585] = {.lex_state = 146, .external_lex_state = 5}, - [1586] = {.lex_state = 146, .external_lex_state = 5}, + [1585] = {.lex_state = 146, .external_lex_state = 2}, + [1586] = {.lex_state = 146, .external_lex_state = 2}, [1587] = {.lex_state = 146, .external_lex_state = 2}, [1588] = {.lex_state = 146, .external_lex_state = 2}, - [1589] = {.lex_state = 146, .external_lex_state = 2}, + [1589] = {.lex_state = 146, .external_lex_state = 5}, [1590] = {.lex_state = 146, .external_lex_state = 2}, - [1591] = {.lex_state = 146, .external_lex_state = 2}, - [1592] = {.lex_state = 146, .external_lex_state = 2}, + [1591] = {.lex_state = 146, .external_lex_state = 5}, + [1592] = {.lex_state = 146, .external_lex_state = 5}, [1593] = {.lex_state = 146, .external_lex_state = 2}, [1594] = {.lex_state = 146, .external_lex_state = 2}, - [1595] = {.lex_state = 146, .external_lex_state = 5}, + [1595] = {.lex_state = 146, .external_lex_state = 2}, [1596] = {.lex_state = 146, .external_lex_state = 2}, [1597] = {.lex_state = 146, .external_lex_state = 2}, [1598] = {.lex_state = 146, .external_lex_state = 2}, [1599] = {.lex_state = 146, .external_lex_state = 2}, [1600] = {.lex_state = 146, .external_lex_state = 2}, [1601] = {.lex_state = 146, .external_lex_state = 2}, - [1602] = {.lex_state = 146, .external_lex_state = 2}, + [1602] = {.lex_state = 146, .external_lex_state = 5}, [1603] = {.lex_state = 146, .external_lex_state = 2}, [1604] = {.lex_state = 146, .external_lex_state = 2}, [1605] = {.lex_state = 146, .external_lex_state = 2}, - [1606] = {.lex_state = 4, .external_lex_state = 8}, - [1607] = {.lex_state = 4, .external_lex_state = 8}, + [1606] = {.lex_state = 146, .external_lex_state = 2}, + [1607] = {.lex_state = 146, .external_lex_state = 2}, [1608] = {.lex_state = 146, .external_lex_state = 2}, [1609] = {.lex_state = 146, .external_lex_state = 2}, [1610] = {.lex_state = 146, .external_lex_state = 2}, @@ -8480,7 +8569,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1614] = {.lex_state = 146, .external_lex_state = 2}, [1615] = {.lex_state = 146, .external_lex_state = 2}, [1616] = {.lex_state = 146, .external_lex_state = 2}, - [1617] = {.lex_state = 36, .external_lex_state = 2}, + [1617] = {.lex_state = 146, .external_lex_state = 2}, [1618] = {.lex_state = 146, .external_lex_state = 2}, [1619] = {.lex_state = 146, .external_lex_state = 2}, [1620] = {.lex_state = 146, .external_lex_state = 2}, @@ -8488,11 +8577,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1622] = {.lex_state = 146, .external_lex_state = 2}, [1623] = {.lex_state = 146, .external_lex_state = 2}, [1624] = {.lex_state = 146, .external_lex_state = 2}, - [1625] = {.lex_state = 146, .external_lex_state = 2}, + [1625] = {.lex_state = 146, .external_lex_state = 5}, [1626] = {.lex_state = 146, .external_lex_state = 2}, [1627] = {.lex_state = 146, .external_lex_state = 2}, [1628] = {.lex_state = 146, .external_lex_state = 2}, - [1629] = {.lex_state = 146, .external_lex_state = 2}, + [1629] = {.lex_state = 146, .external_lex_state = 5}, [1630] = {.lex_state = 146, .external_lex_state = 2}, [1631] = {.lex_state = 146, .external_lex_state = 2}, [1632] = {.lex_state = 146, .external_lex_state = 2}, @@ -8500,18 +8589,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1634] = {.lex_state = 146, .external_lex_state = 2}, [1635] = {.lex_state = 146, .external_lex_state = 2}, [1636] = {.lex_state = 146, .external_lex_state = 2}, - [1637] = {.lex_state = 4, .external_lex_state = 8}, + [1637] = {.lex_state = 146, .external_lex_state = 2}, [1638] = {.lex_state = 146, .external_lex_state = 2}, [1639] = {.lex_state = 146, .external_lex_state = 2}, [1640] = {.lex_state = 146, .external_lex_state = 2}, - [1641] = {.lex_state = 146, .external_lex_state = 2}, + [1641] = {.lex_state = 4, .external_lex_state = 8}, [1642] = {.lex_state = 146, .external_lex_state = 2}, [1643] = {.lex_state = 146, .external_lex_state = 2}, - [1644] = {.lex_state = 36, .external_lex_state = 2}, + [1644] = {.lex_state = 146, .external_lex_state = 2}, [1645] = {.lex_state = 146, .external_lex_state = 2}, - [1646] = {.lex_state = 146, .external_lex_state = 2}, + [1646] = {.lex_state = 36, .external_lex_state = 2}, [1647] = {.lex_state = 146, .external_lex_state = 2}, - [1648] = {.lex_state = 36, .external_lex_state = 2}, + [1648] = {.lex_state = 146, .external_lex_state = 2}, [1649] = {.lex_state = 146, .external_lex_state = 2}, [1650] = {.lex_state = 146, .external_lex_state = 2}, [1651] = {.lex_state = 146, .external_lex_state = 2}, @@ -8542,11 +8631,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1676] = {.lex_state = 146, .external_lex_state = 2}, [1677] = {.lex_state = 146, .external_lex_state = 2}, [1678] = {.lex_state = 146, .external_lex_state = 2}, - [1679] = {.lex_state = 146, .external_lex_state = 2}, + [1679] = {.lex_state = 4, .external_lex_state = 8}, [1680] = {.lex_state = 146, .external_lex_state = 2}, [1681] = {.lex_state = 146, .external_lex_state = 2}, [1682] = {.lex_state = 146, .external_lex_state = 2}, - [1683] = {.lex_state = 4, .external_lex_state = 8}, + [1683] = {.lex_state = 146, .external_lex_state = 2}, [1684] = {.lex_state = 146, .external_lex_state = 2}, [1685] = {.lex_state = 146, .external_lex_state = 2}, [1686] = {.lex_state = 146, .external_lex_state = 2}, @@ -8557,9 +8646,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1691] = {.lex_state = 146, .external_lex_state = 2}, [1692] = {.lex_state = 146, .external_lex_state = 2}, [1693] = {.lex_state = 146, .external_lex_state = 2}, - [1694] = {.lex_state = 36, .external_lex_state = 2}, + [1694] = {.lex_state = 146, .external_lex_state = 2}, [1695] = {.lex_state = 146, .external_lex_state = 2}, [1696] = {.lex_state = 146, .external_lex_state = 2}, + [1697] = {.lex_state = 146, .external_lex_state = 2}, + [1698] = {.lex_state = 146, .external_lex_state = 2}, + [1699] = {.lex_state = 146, .external_lex_state = 2}, + [1700] = {.lex_state = 146, .external_lex_state = 2}, + [1701] = {.lex_state = 146, .external_lex_state = 2}, + [1702] = {.lex_state = 146, .external_lex_state = 2}, + [1703] = {.lex_state = 146, .external_lex_state = 2}, + [1704] = {.lex_state = 146, .external_lex_state = 2}, + [1705] = {.lex_state = 4, .external_lex_state = 8}, + [1706] = {.lex_state = 146, .external_lex_state = 2}, + [1707] = {.lex_state = 146, .external_lex_state = 2}, + [1708] = {.lex_state = 146, .external_lex_state = 2}, + [1709] = {.lex_state = 146, .external_lex_state = 2}, + [1710] = {.lex_state = 146, .external_lex_state = 2}, + [1711] = {.lex_state = 4, .external_lex_state = 8}, + [1712] = {.lex_state = 146, .external_lex_state = 2}, + [1713] = {.lex_state = 146, .external_lex_state = 2}, + [1714] = {.lex_state = 146, .external_lex_state = 2}, + [1715] = {.lex_state = 146, .external_lex_state = 2}, + [1716] = {.lex_state = 146, .external_lex_state = 2}, + [1717] = {.lex_state = 146, .external_lex_state = 2}, + [1718] = {.lex_state = 146, .external_lex_state = 2}, + [1719] = {.lex_state = 146, .external_lex_state = 2}, + [1720] = {.lex_state = 146, .external_lex_state = 2}, + [1721] = {.lex_state = 146, .external_lex_state = 2}, + [1722] = {.lex_state = 146, .external_lex_state = 2}, + [1723] = {.lex_state = 146, .external_lex_state = 2}, + [1724] = {.lex_state = 146, .external_lex_state = 2}, + [1725] = {.lex_state = 146, .external_lex_state = 2}, + [1726] = {.lex_state = 146, .external_lex_state = 2}, + [1727] = {.lex_state = 146, .external_lex_state = 2}, + [1728] = {.lex_state = 36, .external_lex_state = 2}, + [1729] = {.lex_state = 146, .external_lex_state = 2}, + [1730] = {.lex_state = 146, .external_lex_state = 2}, + [1731] = {.lex_state = 146, .external_lex_state = 2}, + [1732] = {.lex_state = 36, .external_lex_state = 2}, + [1733] = {.lex_state = 146, .external_lex_state = 2}, + [1734] = {.lex_state = 146, .external_lex_state = 2}, + [1735] = {.lex_state = 36, .external_lex_state = 2}, + [1736] = {.lex_state = 146, .external_lex_state = 2}, + [1737] = {.lex_state = 146, .external_lex_state = 2}, + [1738] = {.lex_state = 146, .external_lex_state = 2}, + [1739] = {.lex_state = 146, .external_lex_state = 2}, + [1740] = {.lex_state = 146, .external_lex_state = 2}, + [1741] = {.lex_state = 146, .external_lex_state = 2}, + [1742] = {.lex_state = 146, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -8585,6 +8720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_await] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), @@ -8597,7 +8733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_throw] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), [anon_sym_catch] = ACTIONS(1), @@ -8690,72 +8825,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1] = { - [sym_program] = STATE(1675), - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_program] = STATE(1729), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1210), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8770,16 +8905,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -8817,81 +8952,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1662), - [sym_object_assignment_pattern] = STATE(1343), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1662), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1662), - [sym_spread_element] = STATE(1306), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(756), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [sym_rest_pattern] = STATE(1343), - [sym_method_definition] = STATE(1306), - [sym_pair] = STATE(1306), - [sym_pair_pattern] = STATE(1343), - [sym__property_name] = STATE(1346), - [sym_computed_property_name] = STATE(1346), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(881), - [aux_sym_object_repeat1] = STATE(1307), - [aux_sym_object_pattern_repeat1] = STATE(1348), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1663), + [sym_object_assignment_pattern] = STATE(1303), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1663), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1663), + [sym_spread_element] = STATE(1312), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(824), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [sym_rest_pattern] = STATE(1303), + [sym_method_definition] = STATE(1312), + [sym_pair] = STATE(1312), + [sym_pair_pattern] = STATE(1303), + [sym__property_name] = STATE(1313), + [sym_computed_property_name] = STATE(1313), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(913), + [aux_sym_object_repeat1] = STATE(1317), + [aux_sym_object_pattern_repeat1] = STATE(1318), [sym_identifier] = ACTIONS(97), [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), @@ -8907,16 +9042,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(109), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -8956,106 +9091,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1662), - [sym_object_assignment_pattern] = STATE(1343), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1662), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1662), - [sym_spread_element] = STATE(1345), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(756), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [sym_rest_pattern] = STATE(1343), - [sym_method_definition] = STATE(1345), - [sym_pair] = STATE(1345), - [sym_pair_pattern] = STATE(1343), - [sym__property_name] = STATE(1346), - [sym_computed_property_name] = STATE(1346), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(881), - [aux_sym_object_repeat1] = STATE(1347), - [aux_sym_object_pattern_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(125), - [anon_sym_export] = ACTIONS(127), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1663), + [sym_object_assignment_pattern] = STATE(1303), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1663), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1663), + [sym_spread_element] = STATE(1312), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(824), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [sym_rest_pattern] = STATE(1303), + [sym_method_definition] = STATE(1312), + [sym_pair] = STATE(1312), + [sym_pair_pattern] = STATE(1303), + [sym__property_name] = STATE(1313), + [sym_computed_property_name] = STATE(1313), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(913), + [aux_sym_object_repeat1] = STATE(1317), + [aux_sym_object_pattern_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(131), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(109), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -9063,7 +9198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(133), + [anon_sym_async] = ACTIONS(111), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9088,113 +9223,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(135), + [anon_sym_static] = ACTIONS(119), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1662), - [sym_object_assignment_pattern] = STATE(1343), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1662), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1662), - [sym_spread_element] = STATE(1345), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(756), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [sym_rest_pattern] = STATE(1343), - [sym_method_definition] = STATE(1345), - [sym_pair] = STATE(1345), - [sym_pair_pattern] = STATE(1343), - [sym__property_name] = STATE(1346), - [sym_computed_property_name] = STATE(1346), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(881), - [aux_sym_object_repeat1] = STATE(1347), - [aux_sym_object_pattern_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(125), - [anon_sym_export] = ACTIONS(127), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1663), + [sym_object_assignment_pattern] = STATE(1303), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1663), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1663), + [sym_spread_element] = STATE(1312), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(824), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [sym_rest_pattern] = STATE(1303), + [sym_method_definition] = STATE(1312), + [sym_pair] = STATE(1312), + [sym_pair_pattern] = STATE(1303), + [sym__property_name] = STATE(1313), + [sym_computed_property_name] = STATE(1313), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(913), + [aux_sym_object_repeat1] = STATE(1317), + [aux_sym_object_pattern_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(131), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(109), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -9202,7 +9337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(133), + [anon_sym_async] = ACTIONS(111), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9227,113 +9362,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(135), + [anon_sym_static] = ACTIONS(119), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1662), - [sym_object_assignment_pattern] = STATE(1343), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1662), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1662), - [sym_spread_element] = STATE(1306), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(756), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [sym_rest_pattern] = STATE(1343), - [sym_method_definition] = STATE(1306), - [sym_pair] = STATE(1306), - [sym_pair_pattern] = STATE(1343), - [sym__property_name] = STATE(1346), - [sym_computed_property_name] = STATE(1346), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(881), - [aux_sym_object_repeat1] = STATE(1307), - [aux_sym_object_pattern_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(141), - [anon_sym_export] = ACTIONS(143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1663), + [sym_object_assignment_pattern] = STATE(1303), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1663), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1663), + [sym_spread_element] = STATE(1356), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(824), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [sym_rest_pattern] = STATE(1303), + [sym_method_definition] = STATE(1356), + [sym_pair] = STATE(1356), + [sym_pair_pattern] = STATE(1303), + [sym__property_name] = STATE(1313), + [sym_computed_property_name] = STATE(1313), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(913), + [aux_sym_object_repeat1] = STATE(1357), + [aux_sym_object_pattern_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(129), + [anon_sym_export] = ACTIONS(131), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(145), + [anon_sym_let] = ACTIONS(135), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(109), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -9341,7 +9476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(147), + [anon_sym_async] = ACTIONS(137), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9366,113 +9501,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(149), + [anon_sym_static] = ACTIONS(139), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(151), - [anon_sym_set] = ACTIONS(151), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(141), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1662), - [sym_object_assignment_pattern] = STATE(1343), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1662), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1662), - [sym_spread_element] = STATE(1345), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(756), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [sym_rest_pattern] = STATE(1343), - [sym_method_definition] = STATE(1345), - [sym_pair] = STATE(1345), - [sym_pair_pattern] = STATE(1343), - [sym__property_name] = STATE(1346), - [sym_computed_property_name] = STATE(1346), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1663), + [sym_object_assignment_pattern] = STATE(1303), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1663), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1663), + [sym_spread_element] = STATE(1356), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(824), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [sym_rest_pattern] = STATE(1303), + [sym_method_definition] = STATE(1356), + [sym_pair] = STATE(1356), + [sym_pair_pattern] = STATE(1303), + [sym__property_name] = STATE(1313), + [sym_computed_property_name] = STATE(1313), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(881), - [aux_sym_object_repeat1] = STATE(1347), - [aux_sym_object_pattern_repeat1] = STATE(1348), - [sym_identifier] = ACTIONS(125), - [anon_sym_export] = ACTIONS(127), + [aux_sym_export_statement_repeat1] = STATE(913), + [aux_sym_object_repeat1] = STATE(1357), + [aux_sym_object_pattern_repeat1] = STATE(1318), + [sym_identifier] = ACTIONS(143), + [anon_sym_export] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(131), + [anon_sym_let] = ACTIONS(147), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(109), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -9480,7 +9615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(133), + [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -9505,78 +9640,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(135), + [anon_sym_static] = ACTIONS(151), [aux_sym_method_definition_token1] = ACTIONS(121), - [anon_sym_get] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), + [anon_sym_get] = ACTIONS(153), + [anon_sym_set] = ACTIONS(153), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [ts_builtin_sym_end] = ACTIONS(155), [sym_identifier] = ACTIONS(157), [anon_sym_export] = ACTIONS(160), @@ -9592,16 +9727,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(186), [anon_sym_for] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_await] = ACTIONS(195), - [anon_sym_while] = ACTIONS(198), - [anon_sym_do] = ACTIONS(201), - [anon_sym_try] = ACTIONS(204), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(210), - [anon_sym_debugger] = ACTIONS(213), - [anon_sym_return] = ACTIONS(216), - [anon_sym_throw] = ACTIONS(219), - [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_await] = ACTIONS(198), + [anon_sym_while] = ACTIONS(201), + [anon_sym_do] = ACTIONS(204), + [anon_sym_try] = ACTIONS(207), + [anon_sym_break] = ACTIONS(210), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_debugger] = ACTIONS(216), + [anon_sym_return] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(222), [anon_sym_case] = ACTIONS(163), [anon_sym_yield] = ACTIONS(225), [anon_sym_LBRACK] = ACTIONS(228), @@ -9640,71 +9775,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(288), @@ -9719,16 +9854,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_case] = ACTIONS(288), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), @@ -9767,71 +9902,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(292), @@ -9846,16 +9981,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_case] = ACTIONS(292), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), @@ -9894,71 +10029,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(296), @@ -9973,16 +10108,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_case] = ACTIONS(296), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), @@ -10021,71 +10156,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(300), @@ -10100,16 +10235,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_case] = ACTIONS(300), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), @@ -10148,71 +10283,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10226,16 +10361,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10273,75 +10408,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(306), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(306), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10351,16 +10486,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10398,75 +10533,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(308), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(308), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10476,16 +10611,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10523,75 +10658,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), - [ts_builtin_sym_end] = ACTIONS(310), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10601,16 +10736,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10648,75 +10783,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), - [ts_builtin_sym_end] = ACTIONS(312), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10726,16 +10861,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10773,75 +10908,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(306), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10851,16 +10986,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -10898,75 +11033,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_RBRACE] = ACTIONS(314), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10976,16 +11111,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11023,75 +11158,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11101,16 +11236,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11148,75 +11283,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11226,16 +11361,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11273,75 +11408,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11351,16 +11486,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11398,75 +11533,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_RBRACE] = ACTIONS(322), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11476,16 +11611,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11523,75 +11658,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11601,16 +11736,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11648,75 +11783,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1141), - [ts_builtin_sym_end] = ACTIONS(312), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11726,16 +11861,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11773,71 +11908,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1141), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11851,16 +11986,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -11898,71 +12033,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11976,16 +12111,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -12023,101 +12158,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(356), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(385), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12140,107 +12275,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(1616), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(380), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12263,76 +12398,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(371), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(361), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -12345,16 +12480,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -12392,70 +12527,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(422), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12468,16 +12603,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -12515,70 +12650,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(364), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(380), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -12591,16 +12726,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -12638,101 +12773,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(352), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(1322), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12755,107 +12890,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(364), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(384), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -12878,76 +13013,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(385), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -12960,16 +13095,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13007,101 +13142,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(352), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(332), - [anon_sym_export] = ACTIONS(334), - [anon_sym_LBRACE] = ACTIONS(336), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(367), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(338), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(340), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(342), + [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(344), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(350), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13124,76 +13259,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(354), - [anon_sym_get] = ACTIONS(354), - [anon_sym_set] = ACTIONS(354), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(341), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(361), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13206,16 +13341,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13253,70 +13388,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(1268), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(412), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13329,16 +13464,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13376,101 +13511,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(371), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(422), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13493,76 +13628,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(389), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(367), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13575,16 +13710,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13622,101 +13757,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(371), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -13739,76 +13874,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(341), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13821,16 +13956,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13868,70 +14003,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(390), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1143), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(373), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), [sym_identifier] = ACTIONS(332), [anon_sym_export] = ACTIONS(334), [anon_sym_LBRACE] = ACTIONS(336), @@ -13944,16 +14079,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -13991,101 +14126,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(389), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(375), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(338), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(340), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), + [anon_sym_if] = ACTIONS(342), [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym_html_comment] = ACTIONS(5), + }, + [44] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(376), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(338), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(340), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(342), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym_html_comment] = ACTIONS(5), + }, + [45] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(338), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(340), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(342), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym_html_comment] = ACTIONS(5), + }, + [46] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(378), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(338), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(340), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(342), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), + [sym_html_comment] = ACTIONS(5), + }, + [47] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(351), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -14113,71 +14740,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(314), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), + [48] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(371), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14190,16 +14817,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -14236,71 +14863,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(1117), - [sym_import_statement] = STATE(359), - [sym_statement] = STATE(356), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1141), + [49] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(384), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14313,16 +14940,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(29), [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_do] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_debugger] = ACTIONS(47), - [anon_sym_return] = ACTIONS(49), - [anon_sym_throw] = ACTIONS(51), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -14359,201 +14986,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(552), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_STAR] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_RBRACE] = ACTIONS(364), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(364), - [anon_sym_await] = ACTIONS(370), - [anon_sym_in] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(364), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [sym_optional_chain] = ACTIONS(364), - [anon_sym_new] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(364), - [anon_sym_PIPE_PIPE] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_QMARK_QMARK] = ACTIONS(364), - [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [50] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(372), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym__ternary_qmark] = ACTIONS(364), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_RBRACE] = ACTIONS(364), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [51] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(373), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_in] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [sym_optional_chain] = ACTIONS(364), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), - [anon_sym_AMP_AMP] = ACTIONS(364), - [anon_sym_PIPE_PIPE] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(372), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_QMARK_QMARK] = ACTIONS(364), - [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(75), + [anon_sym_BANG] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(79), [anon_sym_typeof] = ACTIONS(75), [anon_sym_void] = ACTIONS(75), @@ -14571,281 +15227,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym__automatic_semicolon] = ACTIONS(364), - [sym__ternary_qmark] = ACTIONS(364), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(364), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), + [52] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(1709), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1167), + [sym_identifier] = ACTIONS(332), + [anon_sym_export] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(338), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(340), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(342), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_in] = ACTIONS(372), - [anon_sym_of] = ACTIONS(372), - [anon_sym_SEMI] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(436), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(346), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [sym_optional_chain] = ACTIONS(364), - [anon_sym_new] = ACTIONS(440), - [anon_sym_AMP_AMP] = ACTIONS(364), - [anon_sym_PIPE_PIPE] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_QMARK_QMARK] = ACTIONS(364), - [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(442), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(350), + [anon_sym_function] = ACTIONS(352), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym__automatic_semicolon] = ACTIONS(364), - [sym__ternary_qmark] = ACTIONS(364), + [anon_sym_static] = ACTIONS(354), + [anon_sym_get] = ACTIONS(354), + [anon_sym_set] = ACTIONS(354), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(765), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_in] = ACTIONS(372), - [anon_sym_COLON] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_DOT] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [sym_optional_chain] = ACTIONS(364), - [anon_sym_new] = ACTIONS(470), - [anon_sym_AMP_AMP] = ACTIONS(364), - [anon_sym_PIPE_PIPE] = ACTIONS(364), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(364), - [anon_sym_LT_LT] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(364), - [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(364), - [anon_sym_STAR_STAR] = ACTIONS(364), - [anon_sym_LT_EQ] = ACTIONS(364), - [anon_sym_EQ_EQ] = ACTIONS(372), - [anon_sym_EQ_EQ_EQ] = ACTIONS(364), - [anon_sym_BANG_EQ] = ACTIONS(372), - [anon_sym_BANG_EQ_EQ] = ACTIONS(364), - [anon_sym_GT_EQ] = ACTIONS(364), - [anon_sym_QMARK_QMARK] = ACTIONS(364), - [anon_sym_instanceof] = ACTIONS(372), - [anon_sym_BANG] = ACTIONS(472), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [53] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(375), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym__ternary_qmark] = ACTIONS(364), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_in] = ACTIONS(372), - [anon_sym_of] = ACTIONS(372), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(372), + [54] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(376), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_html_comment] = ACTIONS(5), + }, + [55] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(377), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_html_comment] = ACTIONS(5), + }, + [56] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(378), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_export_statement] = STATE(392), + [sym_declaration] = STATE(392), + [sym_import] = STATE(1126), + [sym_import_statement] = STATE(392), + [sym_statement] = STATE(412), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_statement_block] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_for_in_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_with_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_debugger_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1510), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(550), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_STAR] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_COMMA] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(364), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_RPAREN] = ACTIONS(364), + [anon_sym_await] = ACTIONS(370), + [anon_sym_in] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_RBRACK] = ACTIONS(364), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [sym_optional_chain] = ACTIONS(364), + [anon_sym_new] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(364), + [anon_sym_PIPE_PIPE] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(372), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_STAR_STAR] = ACTIONS(364), + [anon_sym_LT_EQ] = ACTIONS(364), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(364), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(364), + [anon_sym_GT_EQ] = ACTIONS(364), + [anon_sym_QMARK_QMARK] = ACTIONS(364), + [anon_sym_instanceof] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(394), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym__ternary_qmark] = ACTIONS(364), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(621), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_COMMA] = ACTIONS(364), + [anon_sym_RBRACE] = ACTIONS(364), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_await] = ACTIONS(37), + [anon_sym_in] = ACTIONS(372), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [sym_optional_chain] = ACTIONS(364), + [anon_sym_new] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(364), + [anon_sym_PIPE_PIPE] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(372), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_STAR_STAR] = ACTIONS(364), + [anon_sym_LT_EQ] = ACTIONS(364), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(364), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(364), + [anon_sym_GT_EQ] = ACTIONS(364), + [anon_sym_QMARK_QMARK] = ACTIONS(364), + [anon_sym_instanceof] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym__automatic_semicolon] = ACTIONS(364), + [sym__ternary_qmark] = ACTIONS(364), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(660), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_COMMA] = ACTIONS(364), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(364), + [anon_sym_await] = ACTIONS(434), + [anon_sym_in] = ACTIONS(372), + [anon_sym_of] = ACTIONS(372), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [sym_optional_chain] = ACTIONS(364), + [anon_sym_new] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(364), + [anon_sym_PIPE_PIPE] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(372), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_STAR_STAR] = ACTIONS(364), + [anon_sym_LT_EQ] = ACTIONS(364), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(364), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(364), + [anon_sym_GT_EQ] = ACTIONS(364), + [anon_sym_QMARK_QMARK] = ACTIONS(364), + [anon_sym_instanceof] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym__automatic_semicolon] = ACTIONS(364), + [sym__ternary_qmark] = ACTIONS(364), + [sym_html_comment] = ACTIONS(5), + }, + [61] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_in] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [sym_optional_chain] = ACTIONS(364), + [anon_sym_new] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(364), + [anon_sym_PIPE_PIPE] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(372), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(372), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_PIPE] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_STAR_STAR] = ACTIONS(364), + [anon_sym_LT_EQ] = ACTIONS(364), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_EQ_EQ_EQ] = ACTIONS(364), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ_EQ] = ACTIONS(364), + [anon_sym_GT_EQ] = ACTIONS(364), + [anon_sym_QMARK_QMARK] = ACTIONS(364), + [anon_sym_instanceof] = ACTIONS(372), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), + [sym__ternary_qmark] = ACTIONS(364), + [sym_html_comment] = ACTIONS(5), + }, + [62] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_in] = ACTIONS(372), + [anon_sym_of] = ACTIONS(372), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(372), [anon_sym_DOT] = ACTIONS(372), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), @@ -14899,7 +16511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(364), [sym_html_comment] = ACTIONS(5), }, - [51] = { + [63] = { [ts_builtin_sym_end] = ACTIONS(508), [sym_identifier] = ACTIONS(510), [anon_sym_export] = ACTIONS(510), @@ -14918,6 +16530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(510), [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), [anon_sym_await] = ACTIONS(510), [anon_sym_in] = ACTIONS(512), [anon_sym_while] = ACTIONS(510), @@ -14928,7 +16541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(510), [anon_sym_return] = ACTIONS(510), [anon_sym_throw] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), [anon_sym_case] = ACTIONS(510), [anon_sym_yield] = ACTIONS(510), [anon_sym_EQ] = ACTIONS(516), @@ -14990,157 +16602,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(514), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [anon_sym_export] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_default] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_import] = ACTIONS(522), - [anon_sym_with] = ACTIONS(522), - [anon_sym_var] = ACTIONS(522), - [anon_sym_let] = ACTIONS(522), - [anon_sym_const] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_if] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_await] = ACTIONS(522), - [anon_sym_in] = ACTIONS(524), - [anon_sym_while] = ACTIONS(522), - [anon_sym_do] = ACTIONS(522), - [anon_sym_try] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_debugger] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_throw] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(520), - [anon_sym_case] = ACTIONS(522), - [anon_sym_yield] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(520), - [sym_glimmer_opening_tag] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_DQUOTE] = ACTIONS(520), - [anon_sym_SQUOTE] = ACTIONS(520), - [anon_sym_class] = ACTIONS(522), - [anon_sym_async] = ACTIONS(522), - [anon_sym_function] = ACTIONS(522), - [sym_optional_chain] = ACTIONS(526), - [anon_sym_new] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(526), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(526), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_QMARK_QMARK] = ACTIONS(526), - [anon_sym_instanceof] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_typeof] = ACTIONS(522), - [anon_sym_void] = ACTIONS(522), - [anon_sym_delete] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(520), - [sym_number] = ACTIONS(520), - [sym_private_property_identifier] = ACTIONS(520), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_null] = ACTIONS(522), - [sym_undefined] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_get] = ACTIONS(522), - [anon_sym_set] = ACTIONS(522), - [sym__automatic_semicolon] = ACTIONS(528), - [sym__ternary_qmark] = ACTIONS(526), - [sym_html_comment] = ACTIONS(5), - }, - [53] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1320), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [64] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1364), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1321), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1368), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_RBRACK] = ACTIONS(526), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15163,74 +16685,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(677), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [65] = { + [ts_builtin_sym_end] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [anon_sym_export] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(536), + [anon_sym_default] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_import] = ACTIONS(534), + [anon_sym_with] = ACTIONS(534), + [anon_sym_var] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_else] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_in] = ACTIONS(536), + [anon_sym_while] = ACTIONS(534), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_debugger] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_throw] = ACTIONS(534), + [anon_sym_case] = ACTIONS(534), + [anon_sym_yield] = ACTIONS(534), + [anon_sym_LBRACK] = ACTIONS(532), + [sym_glimmer_opening_tag] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(536), + [anon_sym_DQUOTE] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(532), + [anon_sym_class] = ACTIONS(534), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(534), + [sym_optional_chain] = ACTIONS(538), + [anon_sym_new] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(538), + [anon_sym_PIPE_PIPE] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(536), + [anon_sym_GT_GT_GT] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_AMP] = ACTIONS(536), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(536), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_STAR_STAR] = ACTIONS(538), + [anon_sym_LT_EQ] = ACTIONS(538), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ_EQ] = ACTIONS(538), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ_EQ] = ACTIONS(538), + [anon_sym_GT_EQ] = ACTIONS(538), + [anon_sym_QMARK_QMARK] = ACTIONS(538), + [anon_sym_instanceof] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(532), + [anon_sym_typeof] = ACTIONS(534), + [anon_sym_void] = ACTIONS(534), + [anon_sym_delete] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(532), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(532), + [sym_number] = ACTIONS(532), + [sym_private_property_identifier] = ACTIONS(532), + [sym_this] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_true] = ACTIONS(534), + [sym_false] = ACTIONS(534), + [sym_null] = ACTIONS(534), + [sym_undefined] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_static] = ACTIONS(534), + [anon_sym_get] = ACTIONS(534), + [anon_sym_set] = ACTIONS(534), + [sym__automatic_semicolon] = ACTIONS(540), + [sym__ternary_qmark] = ACTIONS(538), + [sym_html_comment] = ACTIONS(5), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(542), + [sym_identifier] = ACTIONS(544), + [anon_sym_export] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_default] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_import] = ACTIONS(544), + [anon_sym_with] = ACTIONS(544), + [anon_sym_var] = ACTIONS(544), + [anon_sym_let] = ACTIONS(544), + [anon_sym_const] = ACTIONS(544), + [anon_sym_else] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [anon_sym_switch] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_SEMI] = ACTIONS(542), + [anon_sym_await] = ACTIONS(544), + [anon_sym_in] = ACTIONS(546), + [anon_sym_while] = ACTIONS(544), + [anon_sym_do] = ACTIONS(544), + [anon_sym_try] = ACTIONS(544), + [anon_sym_break] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_debugger] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(544), + [anon_sym_case] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(542), + [sym_glimmer_opening_tag] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(542), + [anon_sym_SQUOTE] = ACTIONS(542), + [anon_sym_class] = ACTIONS(544), + [anon_sym_async] = ACTIONS(544), + [anon_sym_function] = ACTIONS(544), + [sym_optional_chain] = ACTIONS(548), + [anon_sym_new] = ACTIONS(544), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_GT_GT_GT] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_SLASH] = ACTIONS(544), + [anon_sym_PERCENT] = ACTIONS(548), + [anon_sym_STAR_STAR] = ACTIONS(548), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(546), + [anon_sym_EQ_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(546), + [anon_sym_BANG_EQ_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_QMARK_QMARK] = ACTIONS(548), + [anon_sym_instanceof] = ACTIONS(546), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(544), + [anon_sym_void] = ACTIONS(544), + [anon_sym_delete] = ACTIONS(544), + [anon_sym_PLUS_PLUS] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(542), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(542), + [sym_number] = ACTIONS(542), + [sym_private_property_identifier] = ACTIONS(542), + [sym_this] = ACTIONS(544), + [sym_super] = ACTIONS(544), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_null] = ACTIONS(544), + [sym_undefined] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(542), + [anon_sym_static] = ACTIONS(544), + [anon_sym_get] = ACTIONS(544), + [anon_sym_set] = ACTIONS(544), + [sym__automatic_semicolon] = ACTIONS(550), + [sym__ternary_qmark] = ACTIONS(548), + [sym_html_comment] = ACTIONS(5), + }, + [67] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1354), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1280), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1314), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(542), + [anon_sym_RBRACK] = ACTIONS(552), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15253,104 +16955,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), - [sym_html_comment] = ACTIONS(5), - }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_default] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_import] = ACTIONS(546), - [anon_sym_with] = ACTIONS(546), - [anon_sym_var] = ACTIONS(546), - [anon_sym_let] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_await] = ACTIONS(546), - [anon_sym_in] = ACTIONS(548), - [anon_sym_while] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_try] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_debugger] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_throw] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_yield] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(544), - [sym_glimmer_opening_tag] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(548), - [anon_sym_DQUOTE] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_class] = ACTIONS(546), - [anon_sym_async] = ACTIONS(546), - [anon_sym_function] = ACTIONS(546), - [sym_optional_chain] = ACTIONS(550), - [anon_sym_new] = ACTIONS(546), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_GT_GT_GT] = ACTIONS(550), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_STAR_STAR] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ_EQ] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_QMARK_QMARK] = ACTIONS(550), - [anon_sym_instanceof] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_typeof] = ACTIONS(546), - [anon_sym_void] = ACTIONS(546), - [anon_sym_delete] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(544), - [sym_number] = ACTIONS(544), - [sym_private_property_identifier] = ACTIONS(544), - [sym_this] = ACTIONS(546), - [sym_super] = ACTIONS(546), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_null] = ACTIONS(546), - [sym_undefined] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_static] = ACTIONS(546), - [anon_sym_get] = ACTIONS(546), - [anon_sym_set] = ACTIONS(546), - [sym__automatic_semicolon] = ACTIONS(552), - [sym__ternary_qmark] = ACTIONS(550), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [56] = { + [68] = { [ts_builtin_sym_end] = ACTIONS(554), [sym_identifier] = ACTIONS(556), [anon_sym_export] = ACTIONS(556), @@ -15369,6 +16981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(556), [anon_sym_for] = ACTIONS(556), [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_SEMI] = ACTIONS(554), [anon_sym_await] = ACTIONS(556), [anon_sym_in] = ACTIONS(558), [anon_sym_while] = ACTIONS(556), @@ -15379,7 +16992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(556), [anon_sym_return] = ACTIONS(556), [anon_sym_throw] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(554), [anon_sym_case] = ACTIONS(556), [anon_sym_yield] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(554), @@ -15440,7 +17052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(560), [sym_html_comment] = ACTIONS(5), }, - [57] = { + [69] = { [ts_builtin_sym_end] = ACTIONS(564), [sym_identifier] = ACTIONS(566), [anon_sym_export] = ACTIONS(566), @@ -15459,6 +17071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(566), [anon_sym_for] = ACTIONS(566), [anon_sym_LPAREN] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(564), [anon_sym_await] = ACTIONS(566), [anon_sym_in] = ACTIONS(568), [anon_sym_while] = ACTIONS(566), @@ -15469,7 +17082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(566), [anon_sym_return] = ACTIONS(566), [anon_sym_throw] = ACTIONS(566), - [anon_sym_SEMI] = ACTIONS(564), [anon_sym_case] = ACTIONS(566), [anon_sym_yield] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(564), @@ -15530,7 +17142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(570), [sym_html_comment] = ACTIONS(5), }, - [58] = { + [70] = { [ts_builtin_sym_end] = ACTIONS(574), [sym_identifier] = ACTIONS(576), [anon_sym_export] = ACTIONS(576), @@ -15549,6 +17161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(576), [anon_sym_for] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(574), [anon_sym_await] = ACTIONS(576), [anon_sym_in] = ACTIONS(578), [anon_sym_while] = ACTIONS(576), @@ -15559,7 +17172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(576), [anon_sym_return] = ACTIONS(576), [anon_sym_throw] = ACTIONS(576), - [anon_sym_SEMI] = ACTIONS(574), [anon_sym_case] = ACTIONS(576), [anon_sym_yield] = ACTIONS(576), [anon_sym_LBRACK] = ACTIONS(574), @@ -15620,14 +17232,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(580), [sym_html_comment] = ACTIONS(5), }, - [59] = { + [71] = { [ts_builtin_sym_end] = ACTIONS(584), [sym_identifier] = ACTIONS(586), [anon_sym_export] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(586), [anon_sym_default] = ACTIONS(586), [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(584), [anon_sym_RBRACE] = ACTIONS(584), [anon_sym_import] = ACTIONS(586), [anon_sym_with] = ACTIONS(586), @@ -15639,8 +17251,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(586), [anon_sym_for] = ACTIONS(586), [anon_sym_LPAREN] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(584), [anon_sym_await] = ACTIONS(586), - [anon_sym_in] = ACTIONS(588), + [anon_sym_in] = ACTIONS(586), [anon_sym_while] = ACTIONS(586), [anon_sym_do] = ACTIONS(586), [anon_sym_try] = ACTIONS(586), @@ -15649,42 +17262,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(586), [anon_sym_return] = ACTIONS(586), [anon_sym_throw] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), [anon_sym_case] = ACTIONS(586), [anon_sym_yield] = ACTIONS(586), [anon_sym_LBRACK] = ACTIONS(584), [sym_glimmer_opening_tag] = ACTIONS(584), [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), [anon_sym_DQUOTE] = ACTIONS(584), [anon_sym_SQUOTE] = ACTIONS(584), [anon_sym_class] = ACTIONS(586), [anon_sym_async] = ACTIONS(586), [anon_sym_function] = ACTIONS(586), - [sym_optional_chain] = ACTIONS(590), + [sym_optional_chain] = ACTIONS(584), [anon_sym_new] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(590), - [anon_sym_PIPE_PIPE] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_GT_GT_GT] = ACTIONS(590), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_PIPE] = ACTIONS(588), + [anon_sym_AMP_AMP] = ACTIONS(584), + [anon_sym_PIPE_PIPE] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_GT_GT_GT] = ACTIONS(584), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_PIPE] = ACTIONS(586), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_STAR_STAR] = ACTIONS(590), - [anon_sym_LT_EQ] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_EQ_EQ_EQ] = ACTIONS(590), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ_EQ] = ACTIONS(590), - [anon_sym_GT_EQ] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(590), - [anon_sym_instanceof] = ACTIONS(588), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_STAR_STAR] = ACTIONS(584), + [anon_sym_LT_EQ] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(584), + [anon_sym_BANG_EQ] = ACTIONS(586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(584), + [anon_sym_GT_EQ] = ACTIONS(584), + [anon_sym_QMARK_QMARK] = ACTIONS(584), + [anon_sym_instanceof] = ACTIONS(586), [anon_sym_BANG] = ACTIONS(586), [anon_sym_TILDE] = ACTIONS(584), [anon_sym_typeof] = ACTIONS(586), @@ -15706,161 +17318,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(586), [anon_sym_get] = ACTIONS(586), [anon_sym_set] = ACTIONS(586), - [sym__automatic_semicolon] = ACTIONS(592), - [sym__ternary_qmark] = ACTIONS(590), + [sym__automatic_semicolon] = ACTIONS(584), + [sym__ternary_qmark] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(677), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1280), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(594), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [72] = { + [ts_builtin_sym_end] = ACTIONS(588), + [sym_identifier] = ACTIONS(590), + [anon_sym_export] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_default] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(590), + [anon_sym_with] = ACTIONS(590), + [anon_sym_var] = ACTIONS(590), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_else] = ACTIONS(590), + [anon_sym_if] = ACTIONS(590), + [anon_sym_switch] = ACTIONS(590), + [anon_sym_for] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(588), + [anon_sym_await] = ACTIONS(590), + [anon_sym_in] = ACTIONS(590), + [anon_sym_while] = ACTIONS(590), + [anon_sym_do] = ACTIONS(590), + [anon_sym_try] = ACTIONS(590), + [anon_sym_break] = ACTIONS(590), + [anon_sym_continue] = ACTIONS(590), + [anon_sym_debugger] = ACTIONS(590), + [anon_sym_return] = ACTIONS(590), + [anon_sym_throw] = ACTIONS(590), + [anon_sym_case] = ACTIONS(590), + [anon_sym_yield] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(588), + [sym_glimmer_opening_tag] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(588), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_class] = ACTIONS(590), + [anon_sym_async] = ACTIONS(590), + [anon_sym_function] = ACTIONS(590), + [sym_optional_chain] = ACTIONS(588), + [anon_sym_new] = ACTIONS(590), + [anon_sym_AMP_AMP] = ACTIONS(588), + [anon_sym_PIPE_PIPE] = ACTIONS(588), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_GT_GT_GT] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(588), + [anon_sym_STAR_STAR] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_EQ_EQ] = ACTIONS(590), + [anon_sym_EQ_EQ_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ] = ACTIONS(590), + [anon_sym_BANG_EQ_EQ] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_QMARK_QMARK] = ACTIONS(588), + [anon_sym_instanceof] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(588), + [anon_sym_typeof] = ACTIONS(590), + [anon_sym_void] = ACTIONS(590), + [anon_sym_delete] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_BQUOTE] = ACTIONS(588), + [sym_number] = ACTIONS(588), + [sym_private_property_identifier] = ACTIONS(588), + [sym_this] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_true] = ACTIONS(590), + [sym_false] = ACTIONS(590), + [sym_null] = ACTIONS(590), + [sym_undefined] = ACTIONS(590), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_static] = ACTIONS(590), + [anon_sym_get] = ACTIONS(590), + [anon_sym_set] = ACTIONS(590), + [sym__automatic_semicolon] = ACTIONS(588), + [sym__ternary_qmark] = ACTIONS(588), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [73] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_import] = ACTIONS(594), + [anon_sym_with] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_else] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_await] = ACTIONS(594), + [anon_sym_in] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_debugger] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_case] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [sym_glimmer_opening_tag] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_class] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(594), + [sym_optional_chain] = ACTIONS(592), + [anon_sym_new] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_GT_GT_GT] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_STAR_STAR] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(592), + [anon_sym_instanceof] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_typeof] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_delete] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(592), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(592), + [sym_number] = ACTIONS(592), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_static] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [sym__automatic_semicolon] = ACTIONS(596), + [sym__ternary_qmark] = ACTIONS(592), + [sym_html_comment] = ACTIONS(5), + }, + [74] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1364), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1280), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1368), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(594), + [anon_sym_RBRACK] = ACTIONS(598), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15883,74 +17585,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1320), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [75] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_import] = ACTIONS(594), + [anon_sym_with] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_else] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_await] = ACTIONS(594), + [anon_sym_in] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_debugger] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_case] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [sym_glimmer_opening_tag] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_GT] = ACTIONS(594), + [anon_sym_DOT] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_class] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(594), + [sym_optional_chain] = ACTIONS(592), + [anon_sym_new] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(592), + [anon_sym_PIPE_PIPE] = ACTIONS(592), + [anon_sym_GT_GT] = ACTIONS(594), + [anon_sym_GT_GT_GT] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(592), + [anon_sym_AMP] = ACTIONS(594), + [anon_sym_CARET] = ACTIONS(592), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_PERCENT] = ACTIONS(592), + [anon_sym_STAR_STAR] = ACTIONS(592), + [anon_sym_LT_EQ] = ACTIONS(592), + [anon_sym_EQ_EQ] = ACTIONS(594), + [anon_sym_EQ_EQ_EQ] = ACTIONS(592), + [anon_sym_BANG_EQ] = ACTIONS(594), + [anon_sym_BANG_EQ_EQ] = ACTIONS(592), + [anon_sym_GT_EQ] = ACTIONS(592), + [anon_sym_QMARK_QMARK] = ACTIONS(592), + [anon_sym_instanceof] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_typeof] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_delete] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(592), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(592), + [sym_number] = ACTIONS(592), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_static] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [sym__automatic_semicolon] = ACTIONS(592), + [sym__ternary_qmark] = ACTIONS(592), + [sym_html_comment] = ACTIONS(5), + }, + [76] = { + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [anon_sym_export] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_import] = ACTIONS(510), + [anon_sym_with] = ACTIONS(510), + [anon_sym_var] = ACTIONS(510), + [anon_sym_let] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_else] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_await] = ACTIONS(510), + [anon_sym_in] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_try] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_debugger] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_throw] = ACTIONS(510), + [anon_sym_case] = ACTIONS(510), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_LBRACK] = ACTIONS(508), + [sym_glimmer_opening_tag] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_class] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_function] = ACTIONS(510), + [sym_optional_chain] = ACTIONS(508), + [anon_sym_new] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_GT_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_QMARK_QMARK] = ACTIONS(508), + [anon_sym_instanceof] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_typeof] = ACTIONS(510), + [anon_sym_void] = ACTIONS(510), + [anon_sym_delete] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(508), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(508), + [sym_number] = ACTIONS(508), + [sym_private_property_identifier] = ACTIONS(508), + [sym_this] = ACTIONS(510), + [sym_super] = ACTIONS(510), + [sym_true] = ACTIONS(510), + [sym_false] = ACTIONS(510), + [sym_null] = ACTIONS(510), + [sym_undefined] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_static] = ACTIONS(510), + [anon_sym_get] = ACTIONS(510), + [anon_sym_set] = ACTIONS(510), + [sym__automatic_semicolon] = ACTIONS(600), + [sym__ternary_qmark] = ACTIONS(508), + [sym_html_comment] = ACTIONS(5), + }, + [77] = { + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(604), + [anon_sym_STAR] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_import] = ACTIONS(604), + [anon_sym_with] = ACTIONS(604), + [anon_sym_var] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_await] = ACTIONS(604), + [anon_sym_in] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_debugger] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_case] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(602), + [sym_glimmer_opening_tag] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_GT] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_class] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_function] = ACTIONS(604), + [sym_optional_chain] = ACTIONS(602), + [anon_sym_new] = ACTIONS(604), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(604), + [anon_sym_GT_GT_GT] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_CARET] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_PERCENT] = ACTIONS(602), + [anon_sym_STAR_STAR] = ACTIONS(602), + [anon_sym_LT_EQ] = ACTIONS(602), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_EQ_EQ_EQ] = ACTIONS(602), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ_EQ] = ACTIONS(602), + [anon_sym_GT_EQ] = ACTIONS(602), + [anon_sym_QMARK_QMARK] = ACTIONS(602), + [anon_sym_instanceof] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_typeof] = ACTIONS(604), + [anon_sym_void] = ACTIONS(604), + [anon_sym_delete] = ACTIONS(604), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(602), + [sym_number] = ACTIONS(602), + [sym_private_property_identifier] = ACTIONS(602), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_null] = ACTIONS(604), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(602), + [anon_sym_static] = ACTIONS(604), + [anon_sym_get] = ACTIONS(604), + [anon_sym_set] = ACTIONS(604), + [sym__automatic_semicolon] = ACTIONS(602), + [sym__ternary_qmark] = ACTIONS(602), + [sym_html_comment] = ACTIONS(5), + }, + [78] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1364), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1321), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1368), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(596), + [anon_sym_RBRACK] = ACTIONS(606), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -15973,164 +17945,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(598), - [sym_identifier] = ACTIONS(600), - [anon_sym_export] = ACTIONS(600), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_default] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_import] = ACTIONS(600), - [anon_sym_with] = ACTIONS(600), - [anon_sym_var] = ACTIONS(600), - [anon_sym_let] = ACTIONS(600), - [anon_sym_const] = ACTIONS(600), - [anon_sym_else] = ACTIONS(600), - [anon_sym_if] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(600), - [anon_sym_for] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_await] = ACTIONS(600), - [anon_sym_in] = ACTIONS(602), - [anon_sym_while] = ACTIONS(600), - [anon_sym_do] = ACTIONS(600), - [anon_sym_try] = ACTIONS(600), - [anon_sym_break] = ACTIONS(600), - [anon_sym_continue] = ACTIONS(600), - [anon_sym_debugger] = ACTIONS(600), - [anon_sym_return] = ACTIONS(600), - [anon_sym_throw] = ACTIONS(600), - [anon_sym_SEMI] = ACTIONS(598), - [anon_sym_case] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(598), - [sym_glimmer_opening_tag] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(600), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DQUOTE] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_class] = ACTIONS(600), - [anon_sym_async] = ACTIONS(600), - [anon_sym_function] = ACTIONS(600), - [sym_optional_chain] = ACTIONS(604), - [anon_sym_new] = ACTIONS(600), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_GT_GT_GT] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_PLUS] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_SLASH] = ACTIONS(600), - [anon_sym_PERCENT] = ACTIONS(604), - [anon_sym_STAR_STAR] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(602), - [anon_sym_BANG_EQ_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_QMARK_QMARK] = ACTIONS(604), - [anon_sym_instanceof] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_typeof] = ACTIONS(600), - [anon_sym_void] = ACTIONS(600), - [anon_sym_delete] = ACTIONS(600), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_DASH_DASH] = ACTIONS(598), + [79] = { + [ts_builtin_sym_end] = ACTIONS(608), + [sym_identifier] = ACTIONS(610), + [anon_sym_export] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_default] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(608), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_import] = ACTIONS(610), + [anon_sym_with] = ACTIONS(610), + [anon_sym_var] = ACTIONS(610), + [anon_sym_let] = ACTIONS(610), + [anon_sym_const] = ACTIONS(610), + [anon_sym_else] = ACTIONS(610), + [anon_sym_if] = ACTIONS(610), + [anon_sym_switch] = ACTIONS(610), + [anon_sym_for] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym_await] = ACTIONS(610), + [anon_sym_in] = ACTIONS(612), + [anon_sym_while] = ACTIONS(610), + [anon_sym_do] = ACTIONS(610), + [anon_sym_try] = ACTIONS(610), + [anon_sym_break] = ACTIONS(610), + [anon_sym_continue] = ACTIONS(610), + [anon_sym_debugger] = ACTIONS(610), + [anon_sym_return] = ACTIONS(610), + [anon_sym_throw] = ACTIONS(610), + [anon_sym_case] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(608), + [sym_glimmer_opening_tag] = ACTIONS(608), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_SQUOTE] = ACTIONS(608), + [anon_sym_class] = ACTIONS(610), + [anon_sym_async] = ACTIONS(610), + [anon_sym_function] = ACTIONS(610), + [sym_optional_chain] = ACTIONS(614), + [anon_sym_new] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_GT_GT_GT] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_STAR_STAR] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_QMARK_QMARK] = ACTIONS(614), + [anon_sym_instanceof] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(610), + [anon_sym_void] = ACTIONS(610), + [anon_sym_delete] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_DASH_DASH] = ACTIONS(608), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(598), - [sym_number] = ACTIONS(598), - [sym_private_property_identifier] = ACTIONS(598), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(600), - [anon_sym_AT] = ACTIONS(598), - [anon_sym_static] = ACTIONS(600), - [anon_sym_get] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [sym__automatic_semicolon] = ACTIONS(606), - [sym__ternary_qmark] = ACTIONS(604), + [anon_sym_BQUOTE] = ACTIONS(608), + [sym_number] = ACTIONS(608), + [sym_private_property_identifier] = ACTIONS(608), + [sym_this] = ACTIONS(610), + [sym_super] = ACTIONS(610), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_null] = ACTIONS(610), + [sym_undefined] = ACTIONS(610), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_static] = ACTIONS(610), + [anon_sym_get] = ACTIONS(610), + [anon_sym_set] = ACTIONS(610), + [sym__automatic_semicolon] = ACTIONS(616), + [sym__ternary_qmark] = ACTIONS(614), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1320), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [80] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1364), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1321), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1368), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(618), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16153,344 +18125,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), - [sym_html_comment] = ACTIONS(5), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [anon_sym_export] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_import] = ACTIONS(612), - [anon_sym_with] = ACTIONS(612), - [anon_sym_var] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_else] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_await] = ACTIONS(612), - [anon_sym_in] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_debugger] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_throw] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_case] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(610), - [sym_glimmer_opening_tag] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_class] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_function] = ACTIONS(612), - [sym_optional_chain] = ACTIONS(610), - [anon_sym_new] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(612), - [anon_sym_GT_GT_GT] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(612), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_EQ_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_QMARK_QMARK] = ACTIONS(610), - [anon_sym_instanceof] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(610), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(610), - [sym_number] = ACTIONS(610), - [sym_private_property_identifier] = ACTIONS(610), - [sym_this] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_null] = ACTIONS(612), - [sym_undefined] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - [sym__automatic_semicolon] = ACTIONS(614), - [sym__ternary_qmark] = ACTIONS(610), - [sym_html_comment] = ACTIONS(5), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_export] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_default] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(622), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_import] = ACTIONS(618), - [anon_sym_with] = ACTIONS(618), - [anon_sym_var] = ACTIONS(618), - [anon_sym_let] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_else] = ACTIONS(618), - [anon_sym_if] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_await] = ACTIONS(618), - [anon_sym_in] = ACTIONS(620), - [anon_sym_while] = ACTIONS(618), - [anon_sym_do] = ACTIONS(618), - [anon_sym_try] = ACTIONS(618), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_debugger] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(618), - [anon_sym_SEMI] = ACTIONS(616), - [anon_sym_case] = ACTIONS(618), - [anon_sym_yield] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(616), - [sym_glimmer_opening_tag] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_DOT] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(616), - [anon_sym_class] = ACTIONS(618), - [anon_sym_async] = ACTIONS(618), - [anon_sym_function] = ACTIONS(618), - [sym_optional_chain] = ACTIONS(622), - [anon_sym_new] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(622), - [anon_sym_PIPE_PIPE] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(620), - [anon_sym_GT_GT_GT] = ACTIONS(622), - [anon_sym_LT_LT] = ACTIONS(622), - [anon_sym_AMP] = ACTIONS(620), - [anon_sym_CARET] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(622), - [anon_sym_STAR_STAR] = ACTIONS(622), - [anon_sym_LT_EQ] = ACTIONS(622), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_EQ_EQ_EQ] = ACTIONS(622), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(622), - [anon_sym_GT_EQ] = ACTIONS(622), - [anon_sym_QMARK_QMARK] = ACTIONS(622), - [anon_sym_instanceof] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_typeof] = ACTIONS(618), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(618), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(616), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(616), - [sym_number] = ACTIONS(616), - [sym_private_property_identifier] = ACTIONS(616), - [sym_this] = ACTIONS(618), - [sym_super] = ACTIONS(618), - [sym_true] = ACTIONS(618), - [sym_false] = ACTIONS(618), - [sym_null] = ACTIONS(618), - [sym_undefined] = ACTIONS(618), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_static] = ACTIONS(618), - [anon_sym_get] = ACTIONS(618), - [anon_sym_set] = ACTIONS(618), - [sym__automatic_semicolon] = ACTIONS(624), - [sym__ternary_qmark] = ACTIONS(622), - [sym_html_comment] = ACTIONS(5), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(626), - [sym_identifier] = ACTIONS(628), - [anon_sym_export] = ACTIONS(628), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_import] = ACTIONS(628), - [anon_sym_with] = ACTIONS(628), - [anon_sym_var] = ACTIONS(628), - [anon_sym_let] = ACTIONS(628), - [anon_sym_const] = ACTIONS(628), - [anon_sym_else] = ACTIONS(628), - [anon_sym_if] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(628), - [anon_sym_for] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_await] = ACTIONS(628), - [anon_sym_in] = ACTIONS(628), - [anon_sym_while] = ACTIONS(628), - [anon_sym_do] = ACTIONS(628), - [anon_sym_try] = ACTIONS(628), - [anon_sym_break] = ACTIONS(628), - [anon_sym_continue] = ACTIONS(628), - [anon_sym_debugger] = ACTIONS(628), - [anon_sym_return] = ACTIONS(628), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_SEMI] = ACTIONS(626), - [anon_sym_case] = ACTIONS(628), - [anon_sym_yield] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(626), - [sym_glimmer_opening_tag] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_GT] = ACTIONS(628), - [anon_sym_DOT] = ACTIONS(628), - [anon_sym_DQUOTE] = ACTIONS(626), - [anon_sym_SQUOTE] = ACTIONS(626), - [anon_sym_class] = ACTIONS(628), - [anon_sym_async] = ACTIONS(628), - [anon_sym_function] = ACTIONS(628), - [sym_optional_chain] = ACTIONS(626), - [anon_sym_new] = ACTIONS(628), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(628), - [anon_sym_GT_GT_GT] = ACTIONS(626), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(628), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_SLASH] = ACTIONS(628), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_STAR_STAR] = ACTIONS(626), - [anon_sym_LT_EQ] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(626), - [anon_sym_BANG_EQ] = ACTIONS(628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(626), - [anon_sym_GT_EQ] = ACTIONS(626), - [anon_sym_QMARK_QMARK] = ACTIONS(626), - [anon_sym_instanceof] = ACTIONS(628), - [anon_sym_BANG] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_typeof] = ACTIONS(628), - [anon_sym_void] = ACTIONS(628), - [anon_sym_delete] = ACTIONS(628), - [anon_sym_PLUS_PLUS] = ACTIONS(626), - [anon_sym_DASH_DASH] = ACTIONS(626), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(626), - [sym_number] = ACTIONS(626), - [sym_private_property_identifier] = ACTIONS(626), - [sym_this] = ACTIONS(628), - [sym_super] = ACTIONS(628), - [sym_true] = ACTIONS(628), - [sym_false] = ACTIONS(628), - [sym_null] = ACTIONS(628), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(626), - [anon_sym_static] = ACTIONS(628), - [anon_sym_get] = ACTIONS(628), - [anon_sym_set] = ACTIONS(628), - [sym__automatic_semicolon] = ACTIONS(626), - [sym__ternary_qmark] = ACTIONS(626), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1320), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [81] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(724), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1354), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1321), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1314), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_RBRACK] = ACTIONS(552), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -16513,614 +18215,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(674), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1320), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [82] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1364), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1321), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1368), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_COMMA] = ACTIONS(524), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(632), + [anon_sym_RBRACK] = ACTIONS(620), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(634), - [sym_identifier] = ACTIONS(636), - [anon_sym_export] = ACTIONS(636), - [anon_sym_STAR] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_import] = ACTIONS(636), - [anon_sym_with] = ACTIONS(636), - [anon_sym_var] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_else] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_await] = ACTIONS(636), - [anon_sym_in] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_debugger] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_throw] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_case] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(634), - [sym_glimmer_opening_tag] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(636), - [anon_sym_DOT] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_class] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [sym_optional_chain] = ACTIONS(634), - [anon_sym_new] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(634), - [anon_sym_PIPE_PIPE] = ACTIONS(634), - [anon_sym_GT_GT] = ACTIONS(636), - [anon_sym_GT_GT_GT] = ACTIONS(634), - [anon_sym_LT_LT] = ACTIONS(634), - [anon_sym_AMP] = ACTIONS(636), - [anon_sym_CARET] = ACTIONS(634), - [anon_sym_PIPE] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_PERCENT] = ACTIONS(634), - [anon_sym_STAR_STAR] = ACTIONS(634), - [anon_sym_LT_EQ] = ACTIONS(634), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(634), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ_EQ] = ACTIONS(634), - [anon_sym_GT_EQ] = ACTIONS(634), - [anon_sym_QMARK_QMARK] = ACTIONS(634), - [anon_sym_instanceof] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(636), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_typeof] = ACTIONS(636), - [anon_sym_void] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(634), - [sym_number] = ACTIONS(634), - [sym_private_property_identifier] = ACTIONS(634), - [sym_this] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_null] = ACTIONS(636), - [sym_undefined] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), - [sym__automatic_semicolon] = ACTIONS(634), - [sym__ternary_qmark] = ACTIONS(634), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(508), - [sym_identifier] = ACTIONS(510), - [anon_sym_export] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_default] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_import] = ACTIONS(510), - [anon_sym_with] = ACTIONS(510), - [anon_sym_var] = ACTIONS(510), - [anon_sym_let] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_else] = ACTIONS(510), - [anon_sym_if] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_await] = ACTIONS(510), - [anon_sym_in] = ACTIONS(510), - [anon_sym_while] = ACTIONS(510), - [anon_sym_do] = ACTIONS(510), - [anon_sym_try] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_debugger] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_throw] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_case] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(508), - [sym_glimmer_opening_tag] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(508), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_class] = ACTIONS(510), - [anon_sym_async] = ACTIONS(510), - [anon_sym_function] = ACTIONS(510), - [sym_optional_chain] = ACTIONS(508), - [anon_sym_new] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(508), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_GT_GT_GT] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(508), - [anon_sym_STAR_STAR] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_EQ_EQ_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ_EQ] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_QMARK_QMARK] = ACTIONS(508), - [anon_sym_instanceof] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_typeof] = ACTIONS(510), - [anon_sym_void] = ACTIONS(510), - [anon_sym_delete] = ACTIONS(510), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_DASH_DASH] = ACTIONS(508), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(508), - [sym_number] = ACTIONS(508), - [sym_private_property_identifier] = ACTIONS(508), - [sym_this] = ACTIONS(510), - [sym_super] = ACTIONS(510), - [sym_true] = ACTIONS(510), - [sym_false] = ACTIONS(510), - [sym_null] = ACTIONS(510), - [sym_undefined] = ACTIONS(510), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_static] = ACTIONS(510), - [anon_sym_get] = ACTIONS(510), - [anon_sym_set] = ACTIONS(510), - [sym__automatic_semicolon] = ACTIONS(638), - [sym__ternary_qmark] = ACTIONS(508), - [sym_html_comment] = ACTIONS(5), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(640), - [sym_identifier] = ACTIONS(642), - [anon_sym_export] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_default] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(640), - [anon_sym_import] = ACTIONS(642), - [anon_sym_with] = ACTIONS(642), - [anon_sym_var] = ACTIONS(642), - [anon_sym_let] = ACTIONS(642), - [anon_sym_const] = ACTIONS(642), - [anon_sym_else] = ACTIONS(642), - [anon_sym_if] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(642), - [anon_sym_for] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_await] = ACTIONS(642), - [anon_sym_in] = ACTIONS(642), - [anon_sym_while] = ACTIONS(642), - [anon_sym_do] = ACTIONS(642), - [anon_sym_try] = ACTIONS(642), - [anon_sym_break] = ACTIONS(642), - [anon_sym_continue] = ACTIONS(642), - [anon_sym_debugger] = ACTIONS(642), - [anon_sym_return] = ACTIONS(642), - [anon_sym_throw] = ACTIONS(642), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_case] = ACTIONS(642), - [anon_sym_yield] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(640), - [sym_glimmer_opening_tag] = ACTIONS(640), - [anon_sym_LT] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(642), - [anon_sym_DOT] = ACTIONS(642), - [anon_sym_DQUOTE] = ACTIONS(640), - [anon_sym_SQUOTE] = ACTIONS(640), - [anon_sym_class] = ACTIONS(642), - [anon_sym_async] = ACTIONS(642), - [anon_sym_function] = ACTIONS(642), - [sym_optional_chain] = ACTIONS(640), - [anon_sym_new] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_GT_GT] = ACTIONS(642), - [anon_sym_GT_GT_GT] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(642), - [anon_sym_CARET] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(640), - [anon_sym_STAR_STAR] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_EQ_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ_EQ] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_QMARK_QMARK] = ACTIONS(640), - [anon_sym_instanceof] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(642), - [anon_sym_TILDE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(642), - [anon_sym_void] = ACTIONS(642), - [anon_sym_delete] = ACTIONS(642), - [anon_sym_PLUS_PLUS] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(640), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(640), - [sym_number] = ACTIONS(640), - [sym_private_property_identifier] = ACTIONS(640), - [sym_this] = ACTIONS(642), - [sym_super] = ACTIONS(642), - [sym_true] = ACTIONS(642), - [sym_false] = ACTIONS(642), - [sym_null] = ACTIONS(642), - [sym_undefined] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(640), - [anon_sym_static] = ACTIONS(642), - [anon_sym_get] = ACTIONS(642), - [anon_sym_set] = ACTIONS(642), - [sym__automatic_semicolon] = ACTIONS(640), - [sym__ternary_qmark] = ACTIONS(640), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [anon_sym_export] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_import] = ACTIONS(612), - [anon_sym_with] = ACTIONS(612), - [anon_sym_var] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_else] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_await] = ACTIONS(612), - [anon_sym_in] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_debugger] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_throw] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_case] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(610), - [sym_glimmer_opening_tag] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_GT] = ACTIONS(612), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_class] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_function] = ACTIONS(612), - [sym_optional_chain] = ACTIONS(610), - [anon_sym_new] = ACTIONS(612), - [anon_sym_AMP_AMP] = ACTIONS(610), - [anon_sym_PIPE_PIPE] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(612), - [anon_sym_GT_GT_GT] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(612), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(612), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_STAR_STAR] = ACTIONS(610), - [anon_sym_LT_EQ] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(612), - [anon_sym_EQ_EQ_EQ] = ACTIONS(610), - [anon_sym_BANG_EQ] = ACTIONS(612), - [anon_sym_BANG_EQ_EQ] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(610), - [anon_sym_QMARK_QMARK] = ACTIONS(610), - [anon_sym_instanceof] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(612), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(610), + [83] = { + [ts_builtin_sym_end] = ACTIONS(622), + [sym_identifier] = ACTIONS(624), + [anon_sym_export] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_default] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(624), + [anon_sym_with] = ACTIONS(624), + [anon_sym_var] = ACTIONS(624), + [anon_sym_let] = ACTIONS(624), + [anon_sym_const] = ACTIONS(624), + [anon_sym_else] = ACTIONS(624), + [anon_sym_if] = ACTIONS(624), + [anon_sym_switch] = ACTIONS(624), + [anon_sym_for] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_await] = ACTIONS(624), + [anon_sym_in] = ACTIONS(626), + [anon_sym_while] = ACTIONS(624), + [anon_sym_do] = ACTIONS(624), + [anon_sym_try] = ACTIONS(624), + [anon_sym_break] = ACTIONS(624), + [anon_sym_continue] = ACTIONS(624), + [anon_sym_debugger] = ACTIONS(624), + [anon_sym_return] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(624), + [anon_sym_case] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(622), + [sym_glimmer_opening_tag] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(624), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(622), + [anon_sym_SQUOTE] = ACTIONS(622), + [anon_sym_class] = ACTIONS(624), + [anon_sym_async] = ACTIONS(624), + [anon_sym_function] = ACTIONS(624), + [sym_optional_chain] = ACTIONS(628), + [anon_sym_new] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(628), + [anon_sym_PIPE_PIPE] = ACTIONS(628), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_GT_GT_GT] = ACTIONS(628), + [anon_sym_LT_LT] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(628), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_SLASH] = ACTIONS(624), + [anon_sym_PERCENT] = ACTIONS(628), + [anon_sym_STAR_STAR] = ACTIONS(628), + [anon_sym_LT_EQ] = ACTIONS(628), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(628), + [anon_sym_BANG_EQ] = ACTIONS(626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(628), + [anon_sym_GT_EQ] = ACTIONS(628), + [anon_sym_QMARK_QMARK] = ACTIONS(628), + [anon_sym_instanceof] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_typeof] = ACTIONS(624), + [anon_sym_void] = ACTIONS(624), + [anon_sym_delete] = ACTIONS(624), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_DASH_DASH] = ACTIONS(622), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(610), - [sym_number] = ACTIONS(610), - [sym_private_property_identifier] = ACTIONS(610), - [sym_this] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_null] = ACTIONS(612), - [sym_undefined] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - [sym__automatic_semicolon] = ACTIONS(610), - [sym__ternary_qmark] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(622), + [sym_number] = ACTIONS(622), + [sym_private_property_identifier] = ACTIONS(622), + [sym_this] = ACTIONS(624), + [sym_super] = ACTIONS(624), + [sym_true] = ACTIONS(624), + [sym_false] = ACTIONS(624), + [sym_null] = ACTIONS(624), + [sym_undefined] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(622), + [anon_sym_static] = ACTIONS(624), + [anon_sym_get] = ACTIONS(624), + [anon_sym_set] = ACTIONS(624), + [sym__automatic_semicolon] = ACTIONS(630), + [sym__ternary_qmark] = ACTIONS(628), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_import] = STATE(1117), - [sym_expression_statement] = STATE(99), - [sym_variable_declaration] = STATE(99), - [sym_lexical_declaration] = STATE(99), - [sym_empty_statement] = STATE(99), - [sym_parenthesized_expression] = STATE(459), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1269), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1269), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1269), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_import] = ACTIONS(420), - [anon_sym_var] = ACTIONS(650), - [anon_sym_let] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(656), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(658), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [84] = { + [ts_builtin_sym_end] = ACTIONS(632), + [sym_identifier] = ACTIONS(634), + [anon_sym_export] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(636), + [anon_sym_default] = ACTIONS(634), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_COMMA] = ACTIONS(638), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_import] = ACTIONS(634), + [anon_sym_with] = ACTIONS(634), + [anon_sym_var] = ACTIONS(634), + [anon_sym_let] = ACTIONS(634), + [anon_sym_const] = ACTIONS(634), + [anon_sym_else] = ACTIONS(634), + [anon_sym_if] = ACTIONS(634), + [anon_sym_switch] = ACTIONS(634), + [anon_sym_for] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(632), + [anon_sym_await] = ACTIONS(634), + [anon_sym_in] = ACTIONS(636), + [anon_sym_while] = ACTIONS(634), + [anon_sym_do] = ACTIONS(634), + [anon_sym_try] = ACTIONS(634), + [anon_sym_break] = ACTIONS(634), + [anon_sym_continue] = ACTIONS(634), + [anon_sym_debugger] = ACTIONS(634), + [anon_sym_return] = ACTIONS(634), + [anon_sym_throw] = ACTIONS(634), + [anon_sym_case] = ACTIONS(634), + [anon_sym_yield] = ACTIONS(634), + [anon_sym_LBRACK] = ACTIONS(632), + [sym_glimmer_opening_tag] = ACTIONS(632), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_GT] = ACTIONS(636), + [anon_sym_DOT] = ACTIONS(636), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_class] = ACTIONS(634), + [anon_sym_async] = ACTIONS(634), + [anon_sym_function] = ACTIONS(634), + [sym_optional_chain] = ACTIONS(638), + [anon_sym_new] = ACTIONS(634), + [anon_sym_AMP_AMP] = ACTIONS(638), + [anon_sym_PIPE_PIPE] = ACTIONS(638), + [anon_sym_GT_GT] = ACTIONS(636), + [anon_sym_GT_GT_GT] = ACTIONS(638), + [anon_sym_LT_LT] = ACTIONS(638), + [anon_sym_AMP] = ACTIONS(636), + [anon_sym_CARET] = ACTIONS(638), + [anon_sym_PIPE] = ACTIONS(636), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_SLASH] = ACTIONS(634), + [anon_sym_PERCENT] = ACTIONS(638), + [anon_sym_STAR_STAR] = ACTIONS(638), + [anon_sym_LT_EQ] = ACTIONS(638), + [anon_sym_EQ_EQ] = ACTIONS(636), + [anon_sym_EQ_EQ_EQ] = ACTIONS(638), + [anon_sym_BANG_EQ] = ACTIONS(636), + [anon_sym_BANG_EQ_EQ] = ACTIONS(638), + [anon_sym_GT_EQ] = ACTIONS(638), + [anon_sym_QMARK_QMARK] = ACTIONS(638), + [anon_sym_instanceof] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(634), + [anon_sym_void] = ACTIONS(634), + [anon_sym_delete] = ACTIONS(634), + [anon_sym_PLUS_PLUS] = ACTIONS(632), + [anon_sym_DASH_DASH] = ACTIONS(632), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(646), - [anon_sym_get] = ACTIONS(646), - [anon_sym_set] = ACTIONS(646), + [anon_sym_BQUOTE] = ACTIONS(632), + [sym_number] = ACTIONS(632), + [sym_private_property_identifier] = ACTIONS(632), + [sym_this] = ACTIONS(634), + [sym_super] = ACTIONS(634), + [sym_true] = ACTIONS(634), + [sym_false] = ACTIONS(634), + [sym_null] = ACTIONS(634), + [sym_undefined] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(632), + [anon_sym_static] = ACTIONS(634), + [anon_sym_get] = ACTIONS(634), + [anon_sym_set] = ACTIONS(634), + [sym__automatic_semicolon] = ACTIONS(640), + [sym__ternary_qmark] = ACTIONS(638), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_declaration] = STATE(396), - [sym_import] = STATE(1117), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(758), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1190), + [85] = { + [sym_declaration] = STATE(418), + [sym_import] = STATE(1126), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1289), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(662), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(664), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(644), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17148,157 +18581,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_import] = STATE(1117), - [sym_expression_statement] = STATE(95), - [sym_variable_declaration] = STATE(95), - [sym_lexical_declaration] = STATE(95), - [sym_empty_statement] = STATE(95), - [sym_parenthesized_expression] = STATE(459), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1269), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1269), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(459), - [sym_subscript_expression] = STATE(459), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1269), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(644), - [anon_sym_export] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(648), - [anon_sym_import] = ACTIONS(420), - [anon_sym_var] = ACTIONS(650), - [anon_sym_let] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(656), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(658), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(646), - [anon_sym_get] = ACTIONS(646), - [anon_sym_set] = ACTIONS(646), - [sym_html_comment] = ACTIONS(5), - }, - [77] = { - [sym_declaration] = STATE(392), - [sym_import] = STATE(1117), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1190), + [86] = { + [sym_declaration] = STATE(391), + [sym_import] = STATE(1126), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1289), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(662), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_async] = ACTIONS(664), - [anon_sym_function] = ACTIONS(71), + [anon_sym_class] = ACTIONS(348), + [anon_sym_async] = ACTIONS(644), + [anon_sym_function] = ACTIONS(352), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17326,68 +18670,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_declaration] = STATE(396), - [sym_import] = STATE(1117), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(758), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1185), + [87] = { + [sym_declaration] = STATE(418), + [sym_import] = STATE(1126), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1268), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(662), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(666), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(646), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17415,68 +18759,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_declaration] = STATE(392), - [sym_import] = STATE(1117), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_class_declaration] = STATE(363), - [sym_function_expression] = STATE(685), - [sym_function_declaration] = STATE(363), - [sym_generator_function] = STATE(685), - [sym_generator_function_declaration] = STATE(363), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1185), + [88] = { + [sym_declaration] = STATE(391), + [sym_import] = STATE(1126), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_class_declaration] = STATE(394), + [sym_function_expression] = STATE(754), + [sym_function_declaration] = STATE(394), + [sym_generator_function] = STATE(754), + [sym_generator_function_declaration] = STATE(394), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1268), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(662), + [anon_sym_let] = ACTIONS(642), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(348), - [anon_sym_async] = ACTIONS(666), - [anon_sym_function] = ACTIONS(352), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(646), + [anon_sym_function] = ACTIONS(71), [anon_sym_new] = ACTIONS(73), [anon_sym_PLUS] = ACTIONS(75), [anon_sym_DASH] = ACTIONS(75), @@ -17504,68 +18848,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(469), - [sym_subscript_expression] = STATE(469), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [89] = { + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(113), + [sym_lexical_declaration] = STATE(113), + [sym_empty_statement] = STATE(113), + [sym_parenthesized_expression] = STATE(493), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1389), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1389), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(493), + [sym_subscript_expression] = STATE(493), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1389), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1673), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(668), - [anon_sym_export] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(674), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(670), + [anon_sym_var] = ACTIONS(654), + [anon_sym_let] = ACTIONS(656), + [anon_sym_const] = ACTIONS(658), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(660), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(680), + [anon_sym_async] = ACTIONS(662), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -17585,72 +18929,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(684), + [sym_undefined] = ACTIONS(664), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(670), - [anon_sym_get] = ACTIONS(670), - [anon_sym_set] = ACTIONS(670), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1516), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_spread_element] = STATE(1258), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [90] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(676), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [sym_html_comment] = ACTIONS(5), + }, + [91] = { + [sym_import] = STATE(1156), + [sym_variable_declaration] = STATE(112), + [sym_lexical_declaration] = STATE(112), + [sym_empty_statement] = STATE(112), + [sym_parenthesized_expression] = STATE(493), + [sym_expression] = STATE(682), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1389), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1389), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(493), + [sym_subscript_expression] = STATE(493), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1389), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1740), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(648), + [anon_sym_export] = ACTIONS(650), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(366), + [anon_sym_var] = ACTIONS(654), + [anon_sym_let] = ACTIONS(656), + [anon_sym_const] = ACTIONS(658), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(660), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(662), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(650), + [anon_sym_get] = ACTIONS(650), + [anon_sym_set] = ACTIONS(650), + [sym_html_comment] = ACTIONS(5), + }, + [92] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1343), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(497), + [sym_subscript_expression] = STATE(497), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [sym_pattern] = STATE(1242), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_pattern_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(684), + [anon_sym_export] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(688), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(676), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(692), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(686), + [anon_sym_get] = ACTIONS(686), + [anon_sym_set] = ACTIONS(686), + [sym_html_comment] = ACTIONS(5), + }, + [93] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1577), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1259), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1321), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(696), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_RBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(696), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), [anon_sym_DOT_DOT_DOT] = ACTIONS(113), @@ -17673,75 +19281,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1319), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_pattern_repeat1] = STATE(1322), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(674), + [94] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1363), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1276), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_pattern_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(672), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_RBRACK] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(699), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -17761,75 +19369,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1297), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1241), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_pattern_repeat1] = STATE(1278), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_COMMA] = ACTIONS(674), + [95] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1577), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1321), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(701), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_RBRACK] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_RBRACK] = ACTIONS(701), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -17849,60 +19456,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1324), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1652), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [96] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1347), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1727), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1209), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1275), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_await] = ACTIONS(370), @@ -17913,10 +19520,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -17936,60 +19543,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1324), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1643), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [97] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(741), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1347), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1647), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1209), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), + [sym_pattern] = STATE(1275), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_await] = ACTIONS(370), @@ -18000,10 +19607,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18023,74 +19630,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1516), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1259), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [98] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(689), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1328), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1329), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_COMMA] = ACTIONS(705), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [99] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1430), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1342), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(711), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), - [anon_sym_RBRACK] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(674), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -18110,73 +19802,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1422), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1315), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [100] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1347), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1275), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(674), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -18196,61 +19888,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1298), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [101] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(701), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1334), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1296), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_COMMA] = ACTIONS(705), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(713), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -18262,7 +19954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18289,66 +19981,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1324), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1209), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [102] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1430), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1342), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(674), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [sym_html_comment] = ACTIONS(5), + }, + [103] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1320), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_COMMA] = ACTIONS(717), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_RBRACK] = ACTIONS(717), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [104] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1377), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [aux_sym_array_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_COMMA] = ACTIONS(705), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [105] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1430), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1342), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(674), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(682), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [sym_html_comment] = ACTIONS(5), + }, + [106] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1178), + [sym_assignment_pattern] = STATE(1623), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1178), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1178), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [sym_pattern] = STATE(1387), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(666), + [anon_sym_export] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(703), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(674), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(678), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -18368,64 +20402,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(682), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1258), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [107] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1718), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1718), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(721), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(715), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(715), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), @@ -18434,7 +20467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18461,66 +20494,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(672), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1338), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [108] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1175), + [sym_assignment_pattern] = STATE(1623), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1175), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(485), + [sym_subscript_expression] = STATE(485), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1175), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1337), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(709), + [sym_pattern] = STATE(1387), + [sym_rest_pattern] = STATE(1192), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(522), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(717), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(528), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(680), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18540,61 +20572,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(530), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1275), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [109] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_spread_element] = STATE(1715), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1715), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [aux_sym_array_repeat1] = STATE(1277), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_RBRACE] = ACTIONS(723), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(719), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -18606,7 +20637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(709), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18633,226 +20664,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1422), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1315), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1304), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [110] = { + [sym_import] = STATE(1156), + [sym_empty_statement] = STATE(116), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1658), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(1117), - [sym_expression_statement] = STATE(102), - [sym_empty_statement] = STATE(102), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [111] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1437), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -18887,67 +20829,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(414), [anon_sym_get] = ACTIONS(414), [anon_sym_set] = ACTIONS(414), + [sym__automatic_semicolon] = ACTIONS(725), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1164), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1164), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1164), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [112] = { + [sym_import] = STATE(1156), + [sym_empty_statement] = STATE(119), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1659), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [sym_pattern] = STATE(1304), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(530), - [anon_sym_export] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(460), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(532), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(538), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -18967,60 +20909,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(540), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(532), - [anon_sym_get] = ACTIONS(532), - [anon_sym_set] = ACTIONS(532), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(724), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1685), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1685), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [113] = { + [sym_import] = STATE(1156), + [sym_empty_statement] = STATE(117), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(742), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1739), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(723), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19032,7 +20974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -19059,53 +21000,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(664), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1633), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1633), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [114] = { + [sym_import] = STATE(1156), + [sym_empty_statement] = STATE(120), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1668), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(35), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19117,7 +21058,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(713), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), @@ -19144,306 +21084,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(1117), - [sym_expression_statement] = STATE(104), - [sym_empty_statement] = STATE(104), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(604), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1535), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [100] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1172), - [sym_assignment_pattern] = STATE(1422), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1172), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(457), - [sym_subscript_expression] = STATE(457), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1172), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [sym_pattern] = STATE(1315), - [sym_rest_pattern] = STATE(1175), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(689), - [anon_sym_export] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [115] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1678), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(691), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(699), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(701), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(691), - [anon_sym_get] = ACTIONS(691), - [anon_sym_set] = ACTIONS(691), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(646), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1457), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [116] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(732), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1707), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym__automatic_semicolon] = ACTIONS(727), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(747), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [117] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1734), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(731), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19481,135 +21333,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(477), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1286), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1286), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(477), - [sym_subscript_expression] = STATE(477), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1286), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), + [118] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1667), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_var] = ACTIONS(737), - [anon_sym_let] = ACTIONS(739), - [anon_sym_const] = ACTIONS(741), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(745), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(747), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(733), - [anon_sym_get] = ACTIONS(733), - [anon_sym_set] = ACTIONS(733), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(725), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1663), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [119] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(763), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1661), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(735), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19647,133 +21499,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(549), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), + [120] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(765), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1686), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(683), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1693), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [121] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1742), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19811,51 +21665,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(723), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1686), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [122] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1684), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(370), [anon_sym_yield] = ACTIONS(374), [anon_sym_LBRACK] = ACTIONS(376), @@ -19893,65 +21748,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(753), - [anon_sym_export] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(460), + [123] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(503), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1323), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1323), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1323), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(743), + [anon_sym_export] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_import] = ACTIONS(366), + [anon_sym_var] = ACTIONS(747), + [anon_sym_let] = ACTIONS(749), + [anon_sym_const] = ACTIONS(751), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(660), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(753), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(745), + [anon_sym_get] = ACTIONS(745), + [anon_sym_set] = ACTIONS(745), + [sym_html_comment] = ACTIONS(5), + }, + [124] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(596), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(755), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(757), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(759), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), + [anon_sym_new] = ACTIONS(470), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(472), @@ -19970,221 +21908,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(755), - [anon_sym_get] = ACTIONS(755), - [anon_sym_set] = ACTIONS(755), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(537), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), + [125] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(594), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(595), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(491), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), + [126] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(596), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(597), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_sequence_expression] = STATE(1459), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [127] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(653), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_sequence_expression] = STATE(1481), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -20221,308 +22159,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(715), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [113] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(536), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), + [128] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(707), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1681), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), - [sym_html_comment] = ACTIONS(5), - }, - [114] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(753), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(599), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), + [129] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(761), + [anon_sym_export] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(763), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(765), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(767), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), + [anon_sym_new] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), @@ -20544,135 +22318,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(408), [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(763), + [anon_sym_get] = ACTIONS(763), + [anon_sym_set] = ACTIONS(763), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(670), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(621), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [130] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1714), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(524), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(523), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [131] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1694), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -20713,147 +22487,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(705), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(615), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), + [132] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(715), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(655), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), + [anon_sym_async] = ACTIONS(424), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(826), - [sym_primary_expression] = STATE(605), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(601), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(765), - [anon_sym_export] = ACTIONS(767), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(33), + [133] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(586), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(771), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(472), @@ -20862,162 +22636,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(767), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(767), - [sym_html_comment] = ACTIONS(5), - }, - [120] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(704), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(606), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(454), - [sym_expression] = STATE(826), - [sym_primary_expression] = STATE(605), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(601), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(454), - [sym_subscript_expression] = STATE(454), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(775), - [anon_sym_export] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(33), + [134] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(543), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(769), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(779), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(472), @@ -21026,470 +22718,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(773), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(777), - [anon_sym_get] = ACTIONS(777), - [anon_sym_set] = ACTIONS(777), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(656), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1632), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [135] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(660), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1666), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [136] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(676), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [137] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(594), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [125] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(753), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1659), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [138] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(771), + [anon_sym_export] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(773), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(765), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(775), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(773), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(773), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(654), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1658), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [139] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(683), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1657), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -21533,127 +23143,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(491), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [140] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(512), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(765), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1676), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [141] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(455), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(665), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(672), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(455), + [sym_subscript_expression] = STATE(455), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(777), + [anon_sym_export] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(783), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(785), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(779), + [anon_sym_get] = ACTIONS(779), + [anon_sym_set] = ACTIONS(779), + [sym_html_comment] = ACTIONS(5), + }, + [142] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1733), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -21697,45 +23389,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1655), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [143] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1645), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -21779,48 +23471,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(537), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(527), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [144] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1649), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -21861,127 +23553,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(718), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(653), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), + [145] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(703), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(670), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), + [anon_sym_async] = ACTIONS(424), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(752), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1673), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [146] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1636), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -22025,48 +23717,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(549), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(539), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [147] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(768), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(657), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [148] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -22100,223 +23874,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(781), - [anon_sym_export] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(785), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(783), - [anon_sym_get] = ACTIONS(783), - [anon_sym_set] = ACTIONS(783), - [sym_html_comment] = ACTIONS(5), - }, - [136] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(482), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(704), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [149] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(772), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -22353,127 +23963,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(705), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(635), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), + [150] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1643), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [151] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(697), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(629), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(749), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1671), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [152] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1697), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -22517,48 +24209,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(670), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [153] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(715), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(643), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), @@ -22599,216 +24291,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(824), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [154] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(768), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(614), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(524), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(751), + [155] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(772), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(645), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [156] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(773), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [157] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1642), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(715), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [158] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(773), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(662), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -22845,127 +24701,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(536), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(759), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [145] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1646), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [159] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1706), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -23009,294 +24783,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(549), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [147] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(537), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(762), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), + [160] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1655), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(524), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [161] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(697), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(644), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(536), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(496), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [162] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(586), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -23337,65 +25029,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(491), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(764), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), + [163] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(455), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(665), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(672), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(455), + [sym_subscript_expression] = STATE(455), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(787), + [anon_sym_export] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(791), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), [anon_sym_PLUS] = ACTIONS(472), [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(444), [anon_sym_BANG] = ACTIONS(474), [anon_sym_TILDE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(472), @@ -23404,63 +25096,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(476), [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(785), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(789), + [anon_sym_get] = ACTIONS(789), + [anon_sym_set] = ACTIONS(789), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(1107), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [164] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_sequence_expression] = STATE(1693), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(763), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -23501,48 +25193,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(732), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_sequence_expression] = STATE(1630), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [165] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(543), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(544), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -23583,210 +25275,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(1117), - [sym_statement_block] = STATE(718), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(610), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [154] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(638), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(479), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [166] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), @@ -23827,47 +25357,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(822), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [167] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(586), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(840), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -23908,128 +25439,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(630), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [158] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [168] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(543), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -24070,47 +25521,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [169] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(573), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -24151,47 +25603,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [170] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(828), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -24232,128 +25685,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(628), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [171] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(594), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -24394,47 +25767,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [172] = { + [sym_import] = STATE(1156), + [sym_statement_block] = STATE(596), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(757), [anon_sym_import] = ACTIONS(366), [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), @@ -24475,125 +25849,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [173] = { + [sym_import] = STATE(1126), + [sym_statement_block] = STATE(703), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(620), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [174] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -24637,206 +26012,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [175] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [176] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(600), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(626), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), + [177] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), + [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), + [sym_private_property_identifier] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [178] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -24880,545 +26336,1112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [179] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [180] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(706), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [181] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [182] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(508), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [183] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [184] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(615), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [185] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(616), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [186] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(618), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [187] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(622), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(623), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [189] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(624), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [190] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(625), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(790), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [191] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), + [192] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1215), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1215), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(488), + [sym_subscript_expression] = STATE(488), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1215), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(793), + [anon_sym_export] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(674), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(797), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), [anon_sym_PLUS] = ACTIONS(472), @@ -25440,375 +27463,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(799), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(795), + [anon_sym_get] = ACTIONS(795), + [anon_sym_set] = ACTIONS(795), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(574), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [193] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(651), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(820), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [194] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(652), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [195] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(603), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(561), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [196] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(671), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(559), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [197] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -25852,1436 +27875,1031 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(558), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [198] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(557), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [199] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(412), + [anon_sym_export] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(424), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(414), + [anon_sym_get] = ACTIONS(414), + [anon_sym_set] = ACTIONS(414), + [sym_html_comment] = ACTIONS(5), + }, + [200] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(555), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [201] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(554), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [202] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(795), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(553), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [203] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(548), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [204] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(546), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [205] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [188] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(545), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [206] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(543), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [207] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [190] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(534), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [208] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [191] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [192] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(622), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [209] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), - [sym_html_comment] = ACTIONS(5), - }, - [194] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [195] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(649), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [196] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [197] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(607), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1139), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1139), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(456), - [sym_subscript_expression] = STATE(456), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1139), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(787), - [anon_sym_export] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(693), + [210] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(789), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_await] = ACTIONS(462), [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(791), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), [anon_sym_new] = ACTIONS(470), [anon_sym_PLUS] = ACTIONS(472), @@ -27303,456 +28921,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(793), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(789), - [anon_sym_get] = ACTIONS(789), - [anon_sym_set] = ACTIONS(789), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), + [211] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(792), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(504), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [212] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(827), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), + [213] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(468), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), - [sym_html_comment] = ACTIONS(5), - }, - [202] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(512), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [214] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(810), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [215] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(812), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -27796,132 +29333,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [216] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [217] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -27958,125 +29495,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), + [218] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [219] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -28110,142 +29647,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(478), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [209] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(603), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [220] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(663), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -28282,132 +29738,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [221] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(508), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(462), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_typeof] = ACTIONS(472), + [anon_sym_void] = ACTIONS(472), + [anon_sym_delete] = ACTIONS(472), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(480), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(456), + [anon_sym_get] = ACTIONS(456), + [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(644), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [222] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(735), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -28444,51 +29900,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(643), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [223] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [224] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(617), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [225] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(678), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -28525,375 +30143,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [226] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1232), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1232), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(492), + [sym_subscript_expression] = STATE(492), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1232), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(801), + [anon_sym_export] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(803), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(805), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(807), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(803), + [anon_sym_get] = ACTIONS(803), + [anon_sym_set] = ACTIONS(803), + [sym_html_comment] = ACTIONS(5), + }, + [227] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(603), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [228] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(634), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [229] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [230] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [231] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [217] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [233] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(628), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [234] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(602), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -28930,44 +30872,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(648), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [235] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(630), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -29011,125 +30953,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [220] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), - [sym_html_comment] = ACTIONS(5), - }, - [221] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [236] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -29173,44 +31034,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(618), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [237] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(631), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -29254,530 +31115,854 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [238] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(632), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(766), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [239] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(633), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [240] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(634), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(525), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [241] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [242] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(636), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [243] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [244] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(638), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), + [sym_html_comment] = ACTIONS(5), + }, + [245] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(639), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), + [246] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), + [anon_sym_let] = ACTIONS(430), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), [anon_sym_LT] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), + [anon_sym_async] = ACTIONS(438), [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(83), [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), + [sym_private_property_identifier] = ACTIONS(450), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(816), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(482), - [anon_sym_export] = ACTIONS(484), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(488), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(492), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_SLASH] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(500), - [anon_sym_typeof] = ACTIONS(496), - [anon_sym_void] = ACTIONS(496), - [anon_sym_delete] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), + [247] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(641), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_import] = ACTIONS(420), + [anon_sym_let] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(422), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(426), + [anon_sym_new] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(446), + [anon_sym_typeof] = ACTIONS(442), + [anon_sym_void] = ACTIONS(442), + [anon_sym_delete] = ACTIONS(442), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_DASH_DASH] = ACTIONS(448), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(504), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(506), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(450), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(452), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(484), - [anon_sym_get] = ACTIONS(484), - [anon_sym_set] = ACTIONS(484), + [anon_sym_static] = ACTIONS(430), + [anon_sym_get] = ACTIONS(430), + [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(619), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [248] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(642), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -29821,44 +32006,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [249] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -29902,44 +32087,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(480), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [250] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(548), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -29983,44 +32168,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(481), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [251] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -30064,206 +32249,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [233] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [234] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(540), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [235] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(494), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [252] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(545), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -30307,44 +32330,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [236] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [253] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(554), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -30388,449 +32411,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [237] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [238] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(608), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(479), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), + [254] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(555), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(636), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(651), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [255] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(647), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -30874,44 +32573,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(785), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [256] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(556), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(557), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [258] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(558), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -30955,44 +32897,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(597), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [260] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -31036,125 +32978,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [261] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(639), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), + [262] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(559), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [263] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(602), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1730), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1730), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1730), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(428), [anon_sym_export] = ACTIONS(430), [anon_sym_LBRACE] = ACTIONS(418), @@ -31198,206 +33221,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(430), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(541), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), + [264] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(560), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [265] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(561), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [266] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(562), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(388), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(406), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(410), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [268] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(479), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [269] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), @@ -31441,44 +33707,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(595), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [270] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(564), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -31522,44 +33788,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [271] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [272] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [273] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(566), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -31603,206 +34031,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [274] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(844), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [275] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(476), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1696), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1696), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(476), - [sym_subscript_expression] = STATE(476), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1010), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1696), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1679), - [aux_sym_export_statement_repeat1] = STATE(1215), + [276] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(482), [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), @@ -31846,611 +34274,854 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1223), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1223), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(466), - [sym_subscript_expression] = STATE(466), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1223), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(795), - [anon_sym_export] = ACTIONS(797), + [277] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(797), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(799), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(801), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(797), - [anon_sym_get] = ACTIONS(797), - [anon_sym_set] = ACTIONS(797), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [278] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [279] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [280] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [281] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_import] = ACTIONS(366), + [anon_sym_let] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), + [sym_glimmer_opening_tag] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_SQUOTE] = ACTIONS(384), + [anon_sym_class] = ACTIONS(386), + [anon_sym_async] = ACTIONS(492), + [anon_sym_function] = ACTIONS(390), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(402), + [sym_number] = ACTIONS(404), + [sym_private_property_identifier] = ACTIONS(504), + [sym_this] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_true] = ACTIONS(408), + [sym_false] = ACTIONS(408), + [sym_null] = ACTIONS(408), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [283] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [258] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(584), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [284] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [285] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [286] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(856), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [287] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(567), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -32494,206 +35165,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), - [sym_glimmer_opening_tag] = ACTIONS(378), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_SQUOTE] = ACTIONS(384), - [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), - [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(402), - [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), - [sym_this] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_true] = ACTIONS(408), - [sym_false] = ACTIONS(408), - [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [264] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(612), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [265] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), + [288] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(572), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(356), [anon_sym_export] = ACTIONS(358), [anon_sym_LBRACE] = ACTIONS(362), @@ -32737,132 +35246,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(412), - [anon_sym_export] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(424), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_SLASH] = ACTIONS(77), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_void] = ACTIONS(75), - [anon_sym_delete] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(81), - [anon_sym_DASH_DASH] = ACTIONS(81), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(414), - [anon_sym_get] = ACTIONS(414), - [anon_sym_set] = ACTIONS(414), - [sym_html_comment] = ACTIONS(5), - }, - [267] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(463), - [sym_expression] = STATE(614), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1674), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1674), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(463), - [sym_subscript_expression] = STATE(463), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1674), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1672), - [aux_sym_export_statement_repeat1] = STATE(1227), + [289] = { + [sym_import] = STATE(1126), + [sym_parenthesized_expression] = STATE(482), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(739), + [sym_yield_expression] = STATE(749), + [sym_object] = STATE(754), + [sym_object_pattern] = STATE(1648), + [sym_array] = STATE(754), + [sym_array_pattern] = STATE(1648), + [sym_glimmer_template] = STATE(749), + [sym_jsx_element] = STATE(749), + [sym_jsx_opening_element] = STATE(1044), + [sym_jsx_self_closing_element] = STATE(749), + [sym_class] = STATE(754), + [sym_function_expression] = STATE(754), + [sym_generator_function] = STATE(754), + [sym_arrow_function] = STATE(754), + [sym_call_expression] = STATE(754), + [sym_new_expression] = STATE(749), + [sym_await_expression] = STATE(749), + [sym_member_expression] = STATE(482), + [sym_subscript_expression] = STATE(482), + [sym_assignment_expression] = STATE(749), + [sym__augmented_assignment_lhs] = STATE(1028), + [sym_augmented_assignment_expression] = STATE(749), + [sym__destructuring_pattern] = STATE(1648), + [sym_ternary_expression] = STATE(749), + [sym_binary_expression] = STATE(749), + [sym_unary_expression] = STATE(749), + [sym_update_expression] = STATE(749), + [sym_string] = STATE(754), + [sym_template_string] = STATE(754), + [sym_regex] = STATE(754), + [sym_meta_property] = STATE(754), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1737), + [aux_sym_export_statement_repeat1] = STATE(1252), [sym_identifier] = ACTIONS(412), [anon_sym_export] = ACTIONS(414), [anon_sym_LBRACE] = ACTIONS(418), [anon_sym_import] = ACTIONS(420), [anon_sym_let] = ACTIONS(414), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [sym_glimmer_opening_tag] = ACTIONS(59), @@ -32899,368 +35327,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(414), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1661), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1661), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(1007), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1661), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1689), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(356), - [anon_sym_export] = ACTIONS(358), - [anon_sym_LBRACE] = ACTIONS(362), + [290] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(358), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(370), - [anon_sym_yield] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(388), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(398), - [anon_sym_typeof] = ACTIONS(394), - [anon_sym_void] = ACTIONS(394), - [anon_sym_delete] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(406), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(410), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(358), - [anon_sym_get] = ACTIONS(358), - [anon_sym_set] = ACTIONS(358), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(761), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [291] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(508), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(540), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), + [sym_undefined] = ACTIONS(506), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), + [292] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1741), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1741), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1042), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1741), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1722), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(482), + [anon_sym_export] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(460), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(484), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), + [anon_sym_await] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(490), [anon_sym_LBRACK] = ACTIONS(466), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(492), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_new] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(500), + [anon_sym_typeof] = ACTIONS(496), + [anon_sym_void] = ACTIONS(496), + [anon_sym_delete] = ACTIONS(496), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(504), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(506), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(484), + [anon_sym_get] = ACTIONS(484), + [anon_sym_set] = ACTIONS(484), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [293] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -33304,125 +35651,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), - [sym_identifier] = ACTIONS(454), - [anon_sym_export] = ACTIONS(456), - [anon_sym_LBRACE] = ACTIONS(460), + [294] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(447), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1680), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1680), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(447), + [sym_subscript_expression] = STATE(447), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1023), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1680), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1689), + [aux_sym_export_statement_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(356), + [anon_sym_export] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_import] = ACTIONS(366), - [anon_sym_let] = ACTIONS(456), + [anon_sym_let] = ACTIONS(358), [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_await] = ACTIONS(462), - [anon_sym_yield] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_await] = ACTIONS(370), + [anon_sym_yield] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(376), [sym_glimmer_opening_tag] = ACTIONS(378), [anon_sym_LT] = ACTIONS(380), [anon_sym_DQUOTE] = ACTIONS(382), [anon_sym_SQUOTE] = ACTIONS(384), [anon_sym_class] = ACTIONS(386), - [anon_sym_async] = ACTIONS(468), + [anon_sym_async] = ACTIONS(388), [anon_sym_function] = ACTIONS(390), - [anon_sym_new] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(472), + [anon_sym_new] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_typeof] = ACTIONS(472), - [anon_sym_void] = ACTIONS(472), - [anon_sym_delete] = ACTIONS(472), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(398), + [anon_sym_TILDE] = ACTIONS(398), + [anon_sym_typeof] = ACTIONS(394), + [anon_sym_void] = ACTIONS(394), + [anon_sym_delete] = ACTIONS(394), + [anon_sym_PLUS_PLUS] = ACTIONS(400), + [anon_sym_DASH_DASH] = ACTIONS(400), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(402), [sym_number] = ACTIONS(404), - [sym_private_property_identifier] = ACTIONS(478), + [sym_private_property_identifier] = ACTIONS(406), [sym_this] = ACTIONS(408), [sym_super] = ACTIONS(408), [sym_true] = ACTIONS(408), [sym_false] = ACTIONS(408), [sym_null] = ACTIONS(408), - [sym_undefined] = ACTIONS(480), + [sym_undefined] = ACTIONS(410), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(456), - [anon_sym_get] = ACTIONS(456), - [anon_sym_set] = ACTIONS(456), + [anon_sym_static] = ACTIONS(358), + [anon_sym_get] = ACTIONS(358), + [anon_sym_set] = ACTIONS(358), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(771), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [295] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -33466,125 +35813,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1117), - [sym_parenthesized_expression] = STATE(460), - [sym_expression] = STATE(512), - [sym_primary_expression] = STATE(710), - [sym_yield_expression] = STATE(711), - [sym_object] = STATE(685), - [sym_object_pattern] = STATE(1621), - [sym_array] = STATE(685), - [sym_array_pattern] = STATE(1621), - [sym_glimmer_template] = STATE(711), - [sym_jsx_element] = STATE(711), - [sym_jsx_opening_element] = STATE(1014), - [sym_jsx_self_closing_element] = STATE(711), - [sym_class] = STATE(685), - [sym_function_expression] = STATE(685), - [sym_generator_function] = STATE(685), - [sym_arrow_function] = STATE(685), - [sym_call_expression] = STATE(685), - [sym_new_expression] = STATE(711), - [sym_await_expression] = STATE(711), - [sym_member_expression] = STATE(460), - [sym_subscript_expression] = STATE(460), - [sym_assignment_expression] = STATE(711), - [sym__augmented_assignment_lhs] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(711), - [sym__destructuring_pattern] = STATE(1621), - [sym_ternary_expression] = STATE(711), - [sym_binary_expression] = STATE(711), - [sym_unary_expression] = STATE(711), - [sym_update_expression] = STATE(711), - [sym_string] = STATE(685), - [sym_template_string] = STATE(685), - [sym_regex] = STATE(685), - [sym_meta_property] = STATE(685), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1604), - [aux_sym_export_statement_repeat1] = STATE(1227), - [sym_identifier] = ACTIONS(428), - [anon_sym_export] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(418), - [anon_sym_import] = ACTIONS(420), - [anon_sym_let] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(57), - [sym_glimmer_opening_tag] = ACTIONS(59), - [anon_sym_LT] = ACTIONS(61), - [anon_sym_DQUOTE] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_class] = ACTIONS(422), - [anon_sym_async] = ACTIONS(438), - [anon_sym_function] = ACTIONS(426), - [anon_sym_new] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_typeof] = ACTIONS(442), - [anon_sym_void] = ACTIONS(442), - [anon_sym_delete] = ACTIONS(442), - [anon_sym_PLUS_PLUS] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(83), - [sym_number] = ACTIONS(85), - [sym_private_property_identifier] = ACTIONS(450), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(430), - [anon_sym_get] = ACTIONS(430), - [anon_sym_set] = ACTIONS(430), - [sym_html_comment] = ACTIONS(5), - }, - [276] = { - [sym_import] = STATE(1107), - [sym_parenthesized_expression] = STATE(408), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(564), - [sym_yield_expression] = STATE(563), - [sym_object] = STATE(567), - [sym_object_pattern] = STATE(1688), - [sym_array] = STATE(567), - [sym_array_pattern] = STATE(1688), - [sym_glimmer_template] = STATE(563), - [sym_jsx_element] = STATE(563), - [sym_jsx_opening_element] = STATE(1011), - [sym_jsx_self_closing_element] = STATE(563), - [sym_class] = STATE(567), - [sym_function_expression] = STATE(567), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(563), - [sym_await_expression] = STATE(563), - [sym_member_expression] = STATE(408), - [sym_subscript_expression] = STATE(408), - [sym_assignment_expression] = STATE(563), - [sym__augmented_assignment_lhs] = STATE(992), - [sym_augmented_assignment_expression] = STATE(563), - [sym__destructuring_pattern] = STATE(1688), - [sym_ternary_expression] = STATE(563), - [sym_binary_expression] = STATE(563), - [sym_unary_expression] = STATE(563), - [sym_update_expression] = STATE(563), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(977), - [sym_formal_parameters] = STATE(1660), - [aux_sym_export_statement_repeat1] = STATE(1215), + [296] = { + [sym_import] = STATE(1156), + [sym_parenthesized_expression] = STATE(431), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(537), + [sym_yield_expression] = STATE(538), + [sym_object] = STATE(535), + [sym_object_pattern] = STATE(1662), + [sym_array] = STATE(535), + [sym_array_pattern] = STATE(1662), + [sym_glimmer_template] = STATE(538), + [sym_jsx_element] = STATE(538), + [sym_jsx_opening_element] = STATE(1045), + [sym_jsx_self_closing_element] = STATE(538), + [sym_class] = STATE(535), + [sym_function_expression] = STATE(535), + [sym_generator_function] = STATE(535), + [sym_arrow_function] = STATE(535), + [sym_call_expression] = STATE(535), + [sym_new_expression] = STATE(538), + [sym_await_expression] = STATE(538), + [sym_member_expression] = STATE(431), + [sym_subscript_expression] = STATE(431), + [sym_assignment_expression] = STATE(538), + [sym__augmented_assignment_lhs] = STATE(1026), + [sym_augmented_assignment_expression] = STATE(538), + [sym__destructuring_pattern] = STATE(1662), + [sym_ternary_expression] = STATE(538), + [sym_binary_expression] = STATE(538), + [sym_unary_expression] = STATE(538), + [sym_update_expression] = STATE(538), + [sym_string] = STATE(535), + [sym_template_string] = STATE(535), + [sym_regex] = STATE(535), + [sym_meta_property] = STATE(535), + [sym_decorator] = STATE(1002), + [sym_formal_parameters] = STATE(1682), + [aux_sym_export_statement_repeat1] = STATE(1278), [sym_identifier] = ACTIONS(454), [anon_sym_export] = ACTIONS(456), [anon_sym_LBRACE] = ACTIONS(460), @@ -33628,1218 +35894,1356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(456), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_namespace_export] = STATE(1451), - [sym_export_clause] = STATE(1217), - [sym_declaration] = STATE(365), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_class_declaration] = STATE(363), - [sym_function_declaration] = STATE(363), - [sym_generator_function_declaration] = STATE(363), - [sym_decorator] = STATE(977), - [aux_sym_export_statement_repeat1] = STATE(1213), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_default] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_var] = ACTIONS(813), - [anon_sym_let] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_class] = ACTIONS(827), - [anon_sym_async] = ACTIONS(829), - [anon_sym_function] = ACTIONS(831), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [278] = { - [sym_namespace_export] = STATE(1451), - [sym_export_clause] = STATE(1217), - [sym_declaration] = STATE(365), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_class_declaration] = STATE(363), - [sym_function_declaration] = STATE(363), - [sym_generator_function_declaration] = STATE(363), - [sym_decorator] = STATE(977), - [aux_sym_export_statement_repeat1] = STATE(1213), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_default] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_var] = ACTIONS(813), - [anon_sym_let] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_class] = ACTIONS(827), - [anon_sym_async] = ACTIONS(829), - [anon_sym_function] = ACTIONS(831), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [297] = { + [sym_namespace_export] = STATE(1624), + [sym_export_clause] = STATE(1288), + [sym_declaration] = STATE(393), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_class_declaration] = STATE(394), + [sym_function_declaration] = STATE(394), + [sym_generator_function_declaration] = STATE(394), + [sym_decorator] = STATE(1002), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_default] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_var] = ACTIONS(819), + [anon_sym_let] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_class] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(837), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_namespace_export] = STATE(1451), - [sym_export_clause] = STATE(1217), - [sym_declaration] = STATE(365), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_class_declaration] = STATE(363), - [sym_function_declaration] = STATE(363), - [sym_generator_function_declaration] = STATE(363), - [sym_decorator] = STATE(977), - [aux_sym_export_statement_repeat1] = STATE(1213), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_default] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_var] = ACTIONS(813), - [anon_sym_let] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_class] = ACTIONS(827), - [anon_sym_async] = ACTIONS(829), - [anon_sym_function] = ACTIONS(831), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [298] = { + [sym_namespace_export] = STATE(1624), + [sym_export_clause] = STATE(1288), + [sym_declaration] = STATE(393), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_class_declaration] = STATE(394), + [sym_function_declaration] = STATE(394), + [sym_generator_function_declaration] = STATE(394), + [sym_decorator] = STATE(1002), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_object_repeat1] = STATE(1370), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_default] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_var] = ACTIONS(819), + [anon_sym_let] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_class] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(837), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_namespace_export] = STATE(1451), - [sym_export_clause] = STATE(1217), - [sym_declaration] = STATE(365), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_class_declaration] = STATE(363), - [sym_function_declaration] = STATE(363), - [sym_generator_function_declaration] = STATE(363), - [sym_decorator] = STATE(977), - [aux_sym_export_statement_repeat1] = STATE(1213), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_default] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_var] = ACTIONS(813), - [anon_sym_let] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_class] = ACTIONS(827), - [anon_sym_async] = ACTIONS(829), - [anon_sym_function] = ACTIONS(831), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [299] = { + [sym_namespace_export] = STATE(1624), + [sym_export_clause] = STATE(1288), + [sym_declaration] = STATE(393), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_class_declaration] = STATE(394), + [sym_function_declaration] = STATE(394), + [sym_generator_function_declaration] = STATE(394), + [sym_decorator] = STATE(1002), + [aux_sym_export_statement_repeat1] = STATE(1219), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_default] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_var] = ACTIONS(819), + [anon_sym_let] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_class] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(837), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_namespace_export] = STATE(1451), - [sym_export_clause] = STATE(1217), - [sym_declaration] = STATE(365), - [sym_variable_declaration] = STATE(363), - [sym_lexical_declaration] = STATE(363), - [sym_class_declaration] = STATE(363), - [sym_function_declaration] = STATE(363), - [sym_generator_function_declaration] = STATE(363), - [sym_decorator] = STATE(977), - [aux_sym_export_statement_repeat1] = STATE(1213), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_default] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_var] = ACTIONS(813), - [anon_sym_let] = ACTIONS(815), - [anon_sym_const] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), + [300] = { + [sym_namespace_export] = STATE(1624), + [sym_export_clause] = STATE(1288), + [sym_declaration] = STATE(393), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_class_declaration] = STATE(394), + [sym_function_declaration] = STATE(394), + [sym_generator_function_declaration] = STATE(394), + [sym_decorator] = STATE(1002), + [aux_sym_export_statement_repeat1] = STATE(1219), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_default] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_var] = ACTIONS(819), + [anon_sym_let] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), [anon_sym_COLON] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_class] = ACTIONS(827), - [anon_sym_async] = ACTIONS(829), - [anon_sym_function] = ACTIONS(831), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(809), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_class] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(837), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), [anon_sym_AT] = ACTIONS(93), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_string] = STATE(1580), - [sym_formal_parameters] = STATE(1622), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(849), - [anon_sym_export] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_let] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(867), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [301] = { + [sym_string] = STATE(1601), + [sym_formal_parameters] = STATE(1665), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(851), + [anon_sym_export] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_let] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(853), + [anon_sym_function] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(851), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(853), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_string] = STATE(1580), - [sym_formal_parameters] = STATE(1622), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(849), - [anon_sym_export] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(867), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [302] = { + [sym_string] = STATE(1601), + [sym_formal_parameters] = STATE(1665), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1370), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(851), + [anon_sym_export] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_let] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(853), + [anon_sym_function] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(851), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(853), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_string] = STATE(1580), - [sym_formal_parameters] = STATE(1622), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(849), - [anon_sym_export] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_let] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(851), - [anon_sym_function] = ACTIONS(867), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [303] = { + [sym_string] = STATE(1601), + [sym_formal_parameters] = STATE(1665), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(851), + [anon_sym_export] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_let] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(853), + [anon_sym_function] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(851), - [anon_sym_get] = ACTIONS(871), - [anon_sym_set] = ACTIONS(871), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(853), + [anon_sym_get] = ACTIONS(873), + [anon_sym_set] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [304] = { + [sym_namespace_export] = STATE(1624), + [sym_export_clause] = STATE(1288), + [sym_declaration] = STATE(393), + [sym_variable_declaration] = STATE(394), + [sym_lexical_declaration] = STATE(394), + [sym_class_declaration] = STATE(394), + [sym_function_declaration] = STATE(394), + [sym_generator_function_declaration] = STATE(394), + [sym_decorator] = STATE(1002), + [aux_sym_export_statement_repeat1] = STATE(1219), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_default] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_var] = ACTIONS(819), + [anon_sym_let] = ACTIONS(821), + [anon_sym_const] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_class] = ACTIONS(833), + [anon_sym_async] = ACTIONS(835), + [anon_sym_function] = ACTIONS(837), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(815), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [305] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(879), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(877), - [anon_sym_set] = ACTIONS(877), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [306] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(879), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [307] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1370), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(883), + [anon_sym_set] = ACTIONS(883), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [308] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(881), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(877), - [anon_sym_set] = ACTIONS(877), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(883), + [anon_sym_set] = ACTIONS(883), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_string] = STATE(1580), - [sym__property_name] = STATE(1580), - [sym_computed_property_name] = STATE(1580), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_let] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(820), - [anon_sym_DQUOTE] = ACTIONS(863), - [anon_sym_SQUOTE] = ACTIONS(865), - [anon_sym_async] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [309] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1370), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_async] = ACTIONS(879), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym_number] = ACTIONS(869), - [sym_private_property_identifier] = ACTIONS(869), - [anon_sym_static] = ACTIONS(873), - [anon_sym_get] = ACTIONS(877), - [anon_sym_set] = ACTIONS(877), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(879), + [anon_sym_set] = ACTIONS(879), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_formal_parameters] = STATE(1695), + [310] = { + [sym_string] = STATE(1601), + [sym__property_name] = STATE(1601), + [sym_computed_property_name] = STATE(1601), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_in] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_let] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(862), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(867), [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(890), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(881), - [anon_sym_get] = ACTIONS(881), - [anon_sym_set] = ACTIONS(881), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym_number] = ACTIONS(871), + [sym_private_property_identifier] = ACTIONS(871), + [anon_sym_static] = ACTIONS(879), + [anon_sym_get] = ACTIONS(883), + [anon_sym_set] = ACTIONS(883), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_formal_parameters] = STATE(1695), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(809), - [anon_sym_in] = ACTIONS(820), - [anon_sym_COLON] = ACTIONS(809), + [311] = { + [sym_formal_parameters] = STATE(1717), + [sym_identifier] = ACTIONS(885), + [anon_sym_export] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(815), [anon_sym_EQ] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(890), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(887), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(896), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(881), - [anon_sym_get] = ACTIONS(881), - [anon_sym_set] = ACTIONS(881), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [293] = { + [312] = { + [sym_formal_parameters] = STATE(1717), + [sym_identifier] = ACTIONS(885), + [anon_sym_export] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_RPAREN] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(815), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(887), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(896), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [sym__ternary_qmark] = ACTIONS(815), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_catch_clause] = STATE(332), + [sym_finally_clause] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_await] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_debugger] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_throw] = ACTIONS(902), + [anon_sym_case] = ACTIONS(902), + [anon_sym_catch] = ACTIONS(904), + [anon_sym_finally] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(900), + [sym_glimmer_opening_tag] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(900), + [anon_sym_class] = ACTIONS(902), + [anon_sym_async] = ACTIONS(902), + [anon_sym_function] = ACTIONS(902), + [anon_sym_new] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_typeof] = ACTIONS(902), + [anon_sym_void] = ACTIONS(902), + [anon_sym_delete] = ACTIONS(902), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(900), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(900), + [sym_number] = ACTIONS(900), + [sym_private_property_identifier] = ACTIONS(900), + [sym_this] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_null] = ACTIONS(902), + [sym_undefined] = ACTIONS(902), + [anon_sym_AT] = ACTIONS(900), + [anon_sym_static] = ACTIONS(902), + [anon_sym_get] = ACTIONS(902), + [anon_sym_set] = ACTIONS(902), + [sym_html_comment] = ACTIONS(5), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_import] = ACTIONS(594), + [anon_sym_with] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_else] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_await] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_debugger] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_case] = ACTIONS(594), + [anon_sym_catch] = ACTIONS(594), + [anon_sym_finally] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [sym_glimmer_opening_tag] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_class] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_typeof] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_delete] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(592), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(592), + [sym_number] = ACTIONS(592), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_static] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), + [sym__automatic_semicolon] = ACTIONS(908), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { [ts_builtin_sym_end] = ACTIONS(508), [sym_identifier] = ACTIONS(510), [anon_sym_export] = ACTIONS(510), @@ -34857,6 +37261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(510), [anon_sym_for] = ACTIONS(510), [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), [anon_sym_await] = ACTIONS(510), [anon_sym_while] = ACTIONS(510), [anon_sym_do] = ACTIONS(510), @@ -34866,7 +37271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(510), [anon_sym_return] = ACTIONS(510), [anon_sym_throw] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(508), [anon_sym_case] = ACTIONS(510), [anon_sym_catch] = ACTIONS(510), [anon_sym_finally] = ACTIONS(510), @@ -34907,1159 +37311,1111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(518), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [anon_sym_export] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_import] = ACTIONS(612), - [anon_sym_with] = ACTIONS(612), - [anon_sym_var] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_else] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_await] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_debugger] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_throw] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_case] = ACTIONS(612), - [anon_sym_catch] = ACTIONS(612), - [anon_sym_finally] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(610), - [sym_glimmer_opening_tag] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_class] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_function] = ACTIONS(612), - [anon_sym_new] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(610), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(610), - [sym_number] = ACTIONS(610), - [sym_private_property_identifier] = ACTIONS(610), - [sym_this] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_null] = ACTIONS(612), - [sym_undefined] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), - [sym__automatic_semicolon] = ACTIONS(894), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_catch_clause] = STATE(311), - [sym_finally_clause] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(898), - [anon_sym_export] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_import] = ACTIONS(898), - [anon_sym_with] = ACTIONS(898), - [anon_sym_var] = ACTIONS(898), - [anon_sym_let] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_switch] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_await] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_do] = ACTIONS(898), - [anon_sym_try] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_debugger] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_throw] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_case] = ACTIONS(898), - [anon_sym_catch] = ACTIONS(900), - [anon_sym_finally] = ACTIONS(902), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(896), - [sym_glimmer_opening_tag] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_class] = ACTIONS(898), - [anon_sym_async] = ACTIONS(898), - [anon_sym_function] = ACTIONS(898), - [anon_sym_new] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(896), - [anon_sym_typeof] = ACTIONS(898), - [anon_sym_void] = ACTIONS(898), - [anon_sym_delete] = ACTIONS(898), - [anon_sym_PLUS_PLUS] = ACTIONS(896), - [anon_sym_DASH_DASH] = ACTIONS(896), + [316] = { + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(594), + [anon_sym_export] = ACTIONS(594), + [anon_sym_default] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_import] = ACTIONS(594), + [anon_sym_with] = ACTIONS(594), + [anon_sym_var] = ACTIONS(594), + [anon_sym_let] = ACTIONS(594), + [anon_sym_const] = ACTIONS(594), + [anon_sym_else] = ACTIONS(594), + [anon_sym_if] = ACTIONS(594), + [anon_sym_switch] = ACTIONS(594), + [anon_sym_for] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(592), + [anon_sym_await] = ACTIONS(594), + [anon_sym_while] = ACTIONS(594), + [anon_sym_do] = ACTIONS(594), + [anon_sym_try] = ACTIONS(594), + [anon_sym_break] = ACTIONS(594), + [anon_sym_continue] = ACTIONS(594), + [anon_sym_debugger] = ACTIONS(594), + [anon_sym_return] = ACTIONS(594), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_case] = ACTIONS(594), + [anon_sym_catch] = ACTIONS(594), + [anon_sym_finally] = ACTIONS(594), + [anon_sym_yield] = ACTIONS(594), + [anon_sym_LBRACK] = ACTIONS(592), + [sym_glimmer_opening_tag] = ACTIONS(592), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_class] = ACTIONS(594), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(594), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(594), + [anon_sym_DASH] = ACTIONS(594), + [anon_sym_SLASH] = ACTIONS(594), + [anon_sym_BANG] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_typeof] = ACTIONS(594), + [anon_sym_void] = ACTIONS(594), + [anon_sym_delete] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(592), + [anon_sym_DASH_DASH] = ACTIONS(592), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(896), - [sym_number] = ACTIONS(896), - [sym_private_property_identifier] = ACTIONS(896), - [sym_this] = ACTIONS(898), - [sym_super] = ACTIONS(898), - [sym_true] = ACTIONS(898), - [sym_false] = ACTIONS(898), - [sym_null] = ACTIONS(898), - [sym_undefined] = ACTIONS(898), - [anon_sym_AT] = ACTIONS(896), - [anon_sym_static] = ACTIONS(898), - [anon_sym_get] = ACTIONS(898), - [anon_sym_set] = ACTIONS(898), + [anon_sym_BQUOTE] = ACTIONS(592), + [sym_number] = ACTIONS(592), + [sym_private_property_identifier] = ACTIONS(592), + [sym_this] = ACTIONS(594), + [sym_super] = ACTIONS(594), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_undefined] = ACTIONS(594), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_static] = ACTIONS(594), + [anon_sym_get] = ACTIONS(594), + [anon_sym_set] = ACTIONS(594), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_formal_parameters] = STATE(1622), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_let] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(867), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [317] = { + [sym_variable_declarator] = STATE(1255), + [sym_object_pattern] = STATE(1184), + [sym_array_pattern] = STATE(1184), + [sym__destructuring_pattern] = STATE(1184), + [aux_sym_object_repeat1] = STATE(1370), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_formal_parameters] = STATE(1649), - [sym_identifier] = ACTIONS(908), - [anon_sym_export] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_let] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(912), - [anon_sym_in] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(910), - [anon_sym_function] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(917), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [318] = { + [sym_formal_parameters] = STATE(1692), + [sym_identifier] = ACTIONS(916), + [anon_sym_export] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_let] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_of] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(920), + [anon_sym_EQ_GT] = ACTIONS(922), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(910), - [anon_sym_get] = ACTIONS(910), - [anon_sym_set] = ACTIONS(910), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(918), + [anon_sym_get] = ACTIONS(918), + [anon_sym_set] = ACTIONS(918), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_formal_parameters] = STATE(1649), - [sym_identifier] = ACTIONS(908), - [anon_sym_export] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_let] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_in] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(910), - [anon_sym_function] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(917), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [319] = { + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [anon_sym_export] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_import] = ACTIONS(604), + [anon_sym_with] = ACTIONS(604), + [anon_sym_var] = ACTIONS(604), + [anon_sym_let] = ACTIONS(604), + [anon_sym_const] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_await] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_debugger] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_case] = ACTIONS(604), + [anon_sym_catch] = ACTIONS(604), + [anon_sym_finally] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(602), + [sym_glimmer_opening_tag] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(604), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(602), + [anon_sym_class] = ACTIONS(604), + [anon_sym_async] = ACTIONS(604), + [anon_sym_function] = ACTIONS(604), + [anon_sym_new] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_SLASH] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_typeof] = ACTIONS(604), + [anon_sym_void] = ACTIONS(604), + [anon_sym_delete] = ACTIONS(604), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(910), - [anon_sym_get] = ACTIONS(910), - [anon_sym_set] = ACTIONS(910), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(602), + [sym_number] = ACTIONS(602), + [sym_private_property_identifier] = ACTIONS(602), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_null] = ACTIONS(604), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(602), + [anon_sym_static] = ACTIONS(604), + [anon_sym_get] = ACTIONS(604), + [anon_sym_set] = ACTIONS(604), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_formal_parameters] = STATE(1622), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [320] = { + [sym_variable_declarator] = STATE(1255), + [sym_object_pattern] = STATE(1184), + [sym_array_pattern] = STATE(1184), + [sym__destructuring_pattern] = STATE(1184), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_formal_parameters] = STATE(1622), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_let] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [321] = { + [sym_formal_parameters] = STATE(1665), + [sym_identifier] = ACTIONS(924), + [anon_sym_export] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(926), + [anon_sym_function] = ACTIONS(920), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_formal_parameters] = STATE(1695), - [sym_identifier] = ACTIONS(879), - [anon_sym_export] = ACTIONS(881), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_let] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_in] = ACTIONS(820), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_RBRACK] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(881), - [anon_sym_function] = ACTIONS(888), - [anon_sym_EQ_GT] = ACTIONS(890), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [322] = { + [sym_formal_parameters] = STATE(1665), + [sym_identifier] = ACTIONS(924), + [anon_sym_export] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_let] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(926), + [anon_sym_function] = ACTIONS(928), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(881), - [anon_sym_get] = ACTIONS(881), - [anon_sym_set] = ACTIONS(881), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_variable_declarator] = STATE(1187), - [sym_object_pattern] = STATE(1149), - [sym_array_pattern] = STATE(1149), - [sym__destructuring_pattern] = STATE(1149), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [323] = { + [sym_formal_parameters] = STATE(1713), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(934), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_let] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_in] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_formal_parameters] = STATE(1614), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_let] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_of] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(941), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [324] = { + [sym_formal_parameters] = STATE(1692), + [sym_identifier] = ACTIONS(916), + [anon_sym_export] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_let] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_of] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(920), + [anon_sym_EQ_GT] = ACTIONS(922), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(918), + [anon_sym_get] = ACTIONS(918), + [anon_sym_set] = ACTIONS(918), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_formal_parameters] = STATE(1622), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_let] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), + [325] = { + [sym_formal_parameters] = STATE(1665), + [sym_identifier] = ACTIONS(924), + [anon_sym_export] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_let] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), [anon_sym_COLON] = ACTIONS(847), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(634), - [sym_identifier] = ACTIONS(636), - [anon_sym_export] = ACTIONS(636), - [anon_sym_default] = ACTIONS(636), - [anon_sym_LBRACE] = ACTIONS(634), - [anon_sym_COMMA] = ACTIONS(634), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_import] = ACTIONS(636), - [anon_sym_with] = ACTIONS(636), - [anon_sym_var] = ACTIONS(636), - [anon_sym_let] = ACTIONS(636), - [anon_sym_const] = ACTIONS(636), - [anon_sym_else] = ACTIONS(636), - [anon_sym_if] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(636), - [anon_sym_for] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(634), - [anon_sym_await] = ACTIONS(636), - [anon_sym_while] = ACTIONS(636), - [anon_sym_do] = ACTIONS(636), - [anon_sym_try] = ACTIONS(636), - [anon_sym_break] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(636), - [anon_sym_debugger] = ACTIONS(636), - [anon_sym_return] = ACTIONS(636), - [anon_sym_throw] = ACTIONS(636), - [anon_sym_SEMI] = ACTIONS(634), - [anon_sym_case] = ACTIONS(636), - [anon_sym_catch] = ACTIONS(636), - [anon_sym_finally] = ACTIONS(636), - [anon_sym_yield] = ACTIONS(636), - [anon_sym_LBRACK] = ACTIONS(634), - [sym_glimmer_opening_tag] = ACTIONS(634), - [anon_sym_LT] = ACTIONS(636), - [anon_sym_DQUOTE] = ACTIONS(634), - [anon_sym_SQUOTE] = ACTIONS(634), - [anon_sym_class] = ACTIONS(636), - [anon_sym_async] = ACTIONS(636), - [anon_sym_function] = ACTIONS(636), - [anon_sym_new] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(636), - [anon_sym_DASH] = ACTIONS(636), - [anon_sym_SLASH] = ACTIONS(636), - [anon_sym_BANG] = ACTIONS(634), - [anon_sym_TILDE] = ACTIONS(634), - [anon_sym_typeof] = ACTIONS(636), - [anon_sym_void] = ACTIONS(636), - [anon_sym_delete] = ACTIONS(636), - [anon_sym_PLUS_PLUS] = ACTIONS(634), - [anon_sym_DASH_DASH] = ACTIONS(634), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(634), - [sym_number] = ACTIONS(634), - [sym_private_property_identifier] = ACTIONS(634), - [sym_this] = ACTIONS(636), - [sym_super] = ACTIONS(636), - [sym_true] = ACTIONS(636), - [sym_false] = ACTIONS(636), - [sym_null] = ACTIONS(636), - [sym_undefined] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(634), - [anon_sym_static] = ACTIONS(636), - [anon_sym_get] = ACTIONS(636), - [anon_sym_set] = ACTIONS(636), - [sym_html_comment] = ACTIONS(5), - }, - [306] = { - [sym_formal_parameters] = STATE(1622), - [sym_identifier] = ACTIONS(904), - [anon_sym_export] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_let] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(945), - [anon_sym_of] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(926), + [anon_sym_function] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(906), - [anon_sym_get] = ACTIONS(906), - [anon_sym_set] = ACTIONS(906), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_variable_declarator] = STATE(1187), - [sym_object_pattern] = STATE(1149), - [sym_array_pattern] = STATE(1149), - [sym__destructuring_pattern] = STATE(1149), - [aux_sym_object_repeat1] = STATE(1340), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [326] = { + [sym_formal_parameters] = STATE(1713), + [sym_identifier] = ACTIONS(930), + [anon_sym_export] = ACTIONS(932), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_let] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_in] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(932), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(932), + [anon_sym_get] = ACTIONS(932), + [anon_sym_set] = ACTIONS(932), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(610), - [sym_identifier] = ACTIONS(612), - [anon_sym_export] = ACTIONS(612), - [anon_sym_default] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_import] = ACTIONS(612), - [anon_sym_with] = ACTIONS(612), - [anon_sym_var] = ACTIONS(612), - [anon_sym_let] = ACTIONS(612), - [anon_sym_const] = ACTIONS(612), - [anon_sym_else] = ACTIONS(612), - [anon_sym_if] = ACTIONS(612), - [anon_sym_switch] = ACTIONS(612), - [anon_sym_for] = ACTIONS(612), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_await] = ACTIONS(612), - [anon_sym_while] = ACTIONS(612), - [anon_sym_do] = ACTIONS(612), - [anon_sym_try] = ACTIONS(612), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(612), - [anon_sym_debugger] = ACTIONS(612), - [anon_sym_return] = ACTIONS(612), - [anon_sym_throw] = ACTIONS(612), - [anon_sym_SEMI] = ACTIONS(610), - [anon_sym_case] = ACTIONS(612), - [anon_sym_catch] = ACTIONS(612), - [anon_sym_finally] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(612), - [anon_sym_LBRACK] = ACTIONS(610), - [sym_glimmer_opening_tag] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(612), - [anon_sym_DQUOTE] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_class] = ACTIONS(612), - [anon_sym_async] = ACTIONS(612), - [anon_sym_function] = ACTIONS(612), - [anon_sym_new] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), - [anon_sym_SLASH] = ACTIONS(612), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(610), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(610), - [anon_sym_DASH_DASH] = ACTIONS(610), + [327] = { + [sym_formal_parameters] = STATE(1717), + [sym_identifier] = ACTIONS(885), + [anon_sym_export] = ACTIONS(887), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_let] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_in] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(887), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(896), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(610), - [sym_number] = ACTIONS(610), - [sym_private_property_identifier] = ACTIONS(610), - [sym_this] = ACTIONS(612), - [sym_super] = ACTIONS(612), - [sym_true] = ACTIONS(612), - [sym_false] = ACTIONS(612), - [sym_null] = ACTIONS(612), - [sym_undefined] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_static] = ACTIONS(612), - [anon_sym_get] = ACTIONS(612), - [anon_sym_set] = ACTIONS(612), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(887), + [anon_sym_get] = ACTIONS(887), + [anon_sym_set] = ACTIONS(887), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_formal_parameters] = STATE(1614), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_let] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_in] = ACTIONS(820), - [anon_sym_of] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(921), - [anon_sym_EQ_GT] = ACTIONS(941), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [328] = { + [sym_formal_parameters] = STATE(1665), + [sym_identifier] = ACTIONS(924), + [anon_sym_export] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(815), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_async] = ACTIONS(926), + [anon_sym_function] = ACTIONS(920), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [anon_sym_static] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [anon_sym_static] = ACTIONS(926), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_variable_declarator] = STATE(1187), - [sym_object_pattern] = STATE(1149), - [sym_array_pattern] = STATE(1149), - [sym__destructuring_pattern] = STATE(1149), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1300), - [sym_identifier] = ACTIONS(929), - [anon_sym_STAR] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(809), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_in] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_COLON] = ACTIONS(822), - [anon_sym_EQ] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(820), - [anon_sym_GT] = ACTIONS(820), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_EQ_GT] = ACTIONS(833), - [sym_optional_chain] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_STAR_STAR_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP_EQ] = ACTIONS(835), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(835), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(820), - [anon_sym_PIPE_PIPE] = ACTIONS(820), - [anon_sym_GT_GT] = ACTIONS(820), - [anon_sym_GT_GT_GT] = ACTIONS(820), - [anon_sym_LT_LT] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_PIPE] = ACTIONS(820), - [anon_sym_PLUS] = ACTIONS(820), - [anon_sym_DASH] = ACTIONS(820), - [anon_sym_SLASH] = ACTIONS(820), - [anon_sym_PERCENT] = ACTIONS(820), - [anon_sym_STAR_STAR] = ACTIONS(820), - [anon_sym_LT_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(820), - [anon_sym_BANG_EQ_EQ] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(809), - [anon_sym_QMARK_QMARK] = ACTIONS(820), - [anon_sym_instanceof] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(809), - [anon_sym_DASH_DASH] = ACTIONS(809), + [329] = { + [sym_variable_declarator] = STATE(1255), + [sym_object_pattern] = STATE(1184), + [sym_array_pattern] = STATE(1184), + [sym__destructuring_pattern] = STATE(1184), + [aux_sym_object_repeat1] = STATE(1351), + [aux_sym_object_pattern_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_COMMA] = ACTIONS(815), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_in] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(815), + [anon_sym_EQ_GT] = ACTIONS(839), + [sym_optional_chain] = ACTIONS(815), + [anon_sym_PLUS_EQ] = ACTIONS(841), + [anon_sym_DASH_EQ] = ACTIONS(841), + [anon_sym_STAR_EQ] = ACTIONS(841), + [anon_sym_SLASH_EQ] = ACTIONS(841), + [anon_sym_PERCENT_EQ] = ACTIONS(841), + [anon_sym_CARET_EQ] = ACTIONS(841), + [anon_sym_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_EQ] = ACTIONS(841), + [anon_sym_GT_GT_EQ] = ACTIONS(841), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(841), + [anon_sym_LT_LT_EQ] = ACTIONS(841), + [anon_sym_STAR_STAR_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP_EQ] = ACTIONS(841), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(841), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(841), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_GT_GT_GT] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + [anon_sym_CARET] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_SLASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_STAR_STAR] = ACTIONS(826), + [anon_sym_LT_EQ] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(826), + [anon_sym_EQ_EQ_EQ] = ACTIONS(815), + [anon_sym_BANG_EQ] = ACTIONS(826), + [anon_sym_BANG_EQ_EQ] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(815), + [anon_sym_QMARK_QMARK] = ACTIONS(826), + [anon_sym_instanceof] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(809), - [sym__automatic_semicolon] = ACTIONS(809), - [sym__ternary_qmark] = ACTIONS(809), + [anon_sym_BQUOTE] = ACTIONS(815), + [sym__automatic_semicolon] = ACTIONS(815), + [sym__ternary_qmark] = ACTIONS(815), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(902), 1, + [0] = 12, + ACTIONS(885), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_function, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, + anon_sym_EQ, + STATE(1717), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(951), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(887), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(815), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [89] = 13, + ACTIONS(885), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_function, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, + anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_in, + ACTIONS(957), 1, + anon_sym_of, + STATE(1717), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(887), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(815), 13, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [180] = 5, + ACTIONS(906), 1, anon_sym_finally, - STATE(399), 1, + STATE(415), 1, sym_finally_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(950), 17, + ACTIONS(959), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36077,7 +38433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(952), 43, + ACTIONS(961), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36121,89 +38477,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [75] = 12, - ACTIONS(879), 1, - sym_identifier, - ACTIONS(883), 1, - anon_sym_LPAREN, - ACTIONS(888), 1, - anon_sym_function, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(892), 1, - anon_sym_EQ, - STATE(1695), 1, - sym_formal_parameters, + [255] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(954), 3, - anon_sym_COMMA, + ACTIONS(592), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(881), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(809), 11, - sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, - anon_sym_STAR, - anon_sym_in, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(594), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [164] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [325] = 4, + ACTIONS(540), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(640), 18, - sym__automatic_semicolon, + ACTIONS(532), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36221,7 +38568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(642), 43, + ACTIONS(534), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36265,15 +38612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [234] = 5, - ACTIONS(961), 1, - anon_sym_else, - STATE(368), 1, - sym_else_clause, + [397] = 4, + ACTIONS(616), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(957), 17, + ACTIONS(608), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36291,7 +38636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(959), 42, + ACTIONS(610), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36299,6 +38644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -36334,16 +38680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [308] = 3, + [469] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(963), 17, + ACTIONS(967), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(963), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -36356,7 +38704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(965), 44, + ACTIONS(965), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36378,7 +38726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LT, anon_sym_class, @@ -36401,13 +38748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [378] = 4, - ACTIONS(562), 1, - sym__automatic_semicolon, + [541] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(554), 17, + ACTIONS(969), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36425,7 +38770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(556), 43, + ACTIONS(971), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36447,6 +38792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LT, anon_sym_class, @@ -36469,13 +38815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [450] = 4, - ACTIONS(606), 1, + [611] = 4, + ACTIONS(572), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(598), 17, + ACTIONS(564), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36493,7 +38839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(600), 43, + ACTIONS(566), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36537,11 +38883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [522] = 3, + [683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(626), 18, + ACTIONS(584), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -36560,7 +38906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(628), 43, + ACTIONS(586), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36604,165 +38950,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [592] = 13, - ACTIONS(879), 1, - sym_identifier, - ACTIONS(883), 1, - anon_sym_LPAREN, - ACTIONS(888), 1, - anon_sym_function, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(912), 1, - anon_sym_COMMA, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(926), 1, - anon_sym_EQ, - STATE(1695), 1, - sym_formal_parameters, + [753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(881), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(809), 11, - sym__ternary_qmark, + ACTIONS(588), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, - anon_sym_STAR, - anon_sym_in, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(590), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [682] = 11, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(867), 1, - anon_sym_function, - ACTIONS(883), 1, - anon_sym_LPAREN, - ACTIONS(904), 1, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - STATE(1622), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(906), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(809), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [768] = 4, - ACTIONS(572), 1, + [823] = 4, + ACTIONS(582), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(564), 17, + ACTIONS(574), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36780,7 +39041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(566), 43, + ACTIONS(576), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36824,11 +39085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [840] = 3, + [895] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(967), 17, + ACTIONS(973), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36846,7 +39108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(969), 44, + ACTIONS(975), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36868,7 +39130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_LT, anon_sym_class, @@ -36891,12 +39152,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [910] = 3, + [965] = 13, + ACTIONS(885), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(894), 1, + anon_sym_function, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(934), 1, + anon_sym_COMMA, + ACTIONS(945), 1, + anon_sym_RBRACK, + ACTIONS(948), 1, + anon_sym_EQ, + STATE(1717), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(634), 18, - sym__automatic_semicolon, + ACTIONS(887), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(815), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1055] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(977), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36914,7 +39251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(636), 43, + ACTIONS(979), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36936,6 +39273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LT, anon_sym_class, @@ -36958,12 +39296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [980] = 3, + [1125] = 4, + ACTIONS(640), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(610), 18, - sym__automatic_semicolon, + ACTIONS(632), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -36981,7 +39320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(612), 43, + ACTIONS(634), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37025,18 +39364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1050] = 4, - ACTIONS(971), 1, - sym__automatic_semicolon, + [1197] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 17, + ACTIONS(981), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -37049,7 +39387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(510), 43, + ACTIONS(983), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37093,13 +39431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1122] = 4, - ACTIONS(582), 1, + [1267] = 4, + ACTIONS(985), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(574), 17, + ACTIONS(508), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37117,7 +39455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(576), 43, + ACTIONS(510), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37161,16 +39499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1194] = 3, + [1339] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(973), 18, + ACTIONS(602), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, @@ -37184,7 +39522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(975), 43, + ACTIONS(604), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37228,168 +39566,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1264] = 4, - ACTIONS(528), 1, - sym__automatic_semicolon, + [1409] = 11, + ACTIONS(839), 1, + anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_EQ, + ACTIONS(869), 1, + anon_sym_function, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(924), 1, + sym_identifier, + STATE(1665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(520), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(522), 43, + ACTIONS(926), 6, anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_class, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1336] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(977), 18, + ACTIONS(815), 13, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym__ternary_qmark, anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(979), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1406] = 11, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(883), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1495] = 11, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(904), 1, - sym_identifier, - ACTIONS(943), 1, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(894), 1, anon_sym_function, - STATE(1622), 1, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(939), 1, + anon_sym_EQ_GT, + STATE(1713), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(906), 6, + ACTIONS(932), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(809), 13, - sym__automatic_semicolon, + ACTIONS(815), 13, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37400,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37416,7 +39694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, + ACTIONS(826), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37438,13 +39716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1492] = 4, - ACTIONS(552), 1, - sym__automatic_semicolon, + [1581] = 5, + ACTIONS(991), 1, + anon_sym_else, + STATE(410), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(544), 17, + ACTIONS(987), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37462,7 +39742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(546), 43, + ACTIONS(989), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37470,7 +39750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -37506,16 +39785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1564] = 3, + [1655] = 4, + ACTIONS(993), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(981), 18, + ACTIONS(592), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, @@ -37529,7 +39809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(983), 43, + ACTIONS(594), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37573,13 +39853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1634] = 4, - ACTIONS(624), 1, + [1727] = 4, + ACTIONS(562), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(616), 17, + ACTIONS(554), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37597,7 +39877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(618), 43, + ACTIONS(556), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37641,18 +39921,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1706] = 4, + [1799] = 11, + ACTIONS(839), 1, + anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_EQ, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(924), 1, + sym_identifier, + ACTIONS(928), 1, + anon_sym_function, + STATE(1665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(989), 2, + ACTIONS(926), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(815), 13, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_SEMI, - ACTIONS(985), 16, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1885] = 4, + ACTIONS(630), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(622), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -37665,7 +40020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(987), 43, + ACTIONS(624), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37709,13 +40064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1778] = 4, - ACTIONS(592), 1, + [1957] = 4, + ACTIONS(550), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(584), 17, + ACTIONS(542), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37733,7 +40088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(586), 43, + ACTIONS(544), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37777,33 +40132,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1850] = 11, - ACTIONS(883), 1, + [2029] = 11, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(894), 1, anon_sym_function, - ACTIONS(908), 1, + ACTIONS(995), 1, sym_identifier, - ACTIONS(917), 1, + ACTIONS(999), 1, + anon_sym_EQ, + ACTIONS(1001), 1, anon_sym_EQ_GT, - STATE(1649), 1, + STATE(1725), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(910), 6, + ACTIONS(997), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(809), 13, + ACTIONS(815), 11, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37814,7 +40167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37830,9 +40183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, + ACTIONS(826), 22, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -37852,13 +40206,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1936] = 4, - ACTIONS(991), 1, - sym__automatic_semicolon, + [2114] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1003), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1005), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [2183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(610), 17, + ACTIONS(1007), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37876,7 +40294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(612), 43, + ACTIONS(1009), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37920,11 +40338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2008] = 3, + [2252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(993), 17, + ACTIONS(1011), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37942,7 +40360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(995), 43, + ACTIONS(1013), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37986,11 +40404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2077] = 3, + [2321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(997), 17, + ACTIONS(1015), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38008,7 +40426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(999), 43, + ACTIONS(1017), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38052,11 +40470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2146] = 3, + [2390] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1001), 17, + ACTIONS(1019), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38074,7 +40492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1003), 43, + ACTIONS(1021), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38118,11 +40536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2215] = 3, + [2459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1005), 17, + ACTIONS(1023), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38140,7 +40558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1007), 43, + ACTIONS(1025), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38184,11 +40602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2284] = 3, + [2528] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1009), 17, + ACTIONS(1027), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38206,7 +40624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1011), 43, + ACTIONS(1029), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38250,11 +40668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2353] = 3, + [2597] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1013), 17, + ACTIONS(1031), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38272,7 +40690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1015), 43, + ACTIONS(1033), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38316,11 +40734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2422] = 3, + [2666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1017), 17, + ACTIONS(1035), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38338,7 +40756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1019), 43, + ACTIONS(1037), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38382,11 +40800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2491] = 3, + [2735] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1021), 17, + ACTIONS(1039), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38404,7 +40822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1023), 43, + ACTIONS(1041), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38448,11 +40866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2560] = 3, + [2804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1025), 17, + ACTIONS(1043), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38470,7 +40888,205 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1045), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [2873] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1047), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1049), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [2942] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1051), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1053), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [3011] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1055), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1057), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38514,11 +41130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2629] = 3, + [3080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1029), 17, + ACTIONS(1059), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38536,7 +41152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1031), 43, + ACTIONS(1061), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38580,11 +41196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2698] = 3, + [3149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1025), 17, + ACTIONS(1063), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38602,7 +41218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1065), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38646,87 +41262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2767] = 13, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_LBRACE, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(945), 1, - anon_sym_in, - ACTIONS(948), 1, - anon_sym_of, - ACTIONS(1033), 1, - sym_identifier, - STATE(1187), 1, - sym_variable_declarator, + [3218] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1074), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(809), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2856] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1025), 17, + ACTIONS(1067), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38744,7 +41284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1069), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38788,11 +41328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2925] = 3, + [3287] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1025), 17, + ACTIONS(1071), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38810,7 +41350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1073), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38854,11 +41394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2994] = 3, + [3356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1035), 17, + ACTIONS(1075), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38876,7 +41416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1037), 43, + ACTIONS(1077), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38920,11 +41460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3063] = 3, + [3425] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1039), 17, + ACTIONS(1079), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38942,7 +41482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1041), 43, + ACTIONS(1081), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38986,159 +41526,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3132] = 11, - ACTIONS(883), 1, - anon_sym_LPAREN, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(888), 1, - anon_sym_function, - ACTIONS(1043), 1, - sym_identifier, - ACTIONS(1047), 1, - anon_sym_EQ_GT, - STATE(1682), 1, - sym_formal_parameters, + [3494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1045), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(809), 11, - sym__ternary_qmark, + ACTIONS(1083), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1085), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3217] = 11, - ACTIONS(883), 1, - anon_sym_LPAREN, - ACTIONS(888), 1, - anon_sym_function, - ACTIONS(1043), 1, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - ACTIONS(1047), 1, - anon_sym_EQ_GT, - ACTIONS(1049), 1, - anon_sym_EQ, - STATE(1682), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1045), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(809), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3302] = 3, + [3563] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1051), 17, + ACTIONS(1087), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39156,7 +41614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1053), 43, + ACTIONS(1089), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39200,11 +41658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3371] = 3, + [3632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1055), 17, + ACTIONS(1091), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39222,7 +41680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1057), 43, + ACTIONS(1093), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39266,11 +41724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3440] = 3, + [3701] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(993), 17, + ACTIONS(1095), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39288,7 +41746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(995), 43, + ACTIONS(1097), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39332,11 +41790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3509] = 3, + [3770] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1059), 17, + ACTIONS(1099), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39354,7 +41812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1061), 43, + ACTIONS(1101), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39398,11 +41856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3578] = 3, + [3839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1055), 17, + ACTIONS(1103), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39420,7 +41878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1057), 43, + ACTIONS(1105), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39464,11 +41922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3647] = 3, + [3908] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1063), 17, + ACTIONS(1107), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39486,7 +41944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1065), 43, + ACTIONS(1109), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39530,11 +41988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3716] = 3, + [3977] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1067), 17, + ACTIONS(1111), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39552,7 +42010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1069), 43, + ACTIONS(1113), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39596,11 +42054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3785] = 3, + [4046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1071), 17, + ACTIONS(1115), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39618,7 +42076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1073), 43, + ACTIONS(1117), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39662,11 +42120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3854] = 3, + [4115] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1075), 17, + ACTIONS(1119), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39684,7 +42142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1077), 43, + ACTIONS(1121), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39728,11 +42186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3923] = 3, + [4184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1079), 17, + ACTIONS(1123), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39750,7 +42208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1081), 43, + ACTIONS(1125), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39794,11 +42252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3992] = 3, + [4253] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1083), 17, + ACTIONS(1127), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39816,7 +42274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1085), 43, + ACTIONS(1129), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39860,11 +42318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4061] = 3, + [4322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1087), 17, + ACTIONS(1131), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39882,7 +42340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1089), 43, + ACTIONS(1133), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39926,11 +42384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4130] = 3, + [4391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1091), 17, + ACTIONS(1135), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39948,7 +42406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1093), 43, + ACTIONS(1137), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39992,11 +42450,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4199] = 3, + [4460] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1025), 17, + ACTIONS(1139), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40014,7 +42472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1141), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40058,11 +42516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4268] = 3, + [4529] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1025), 17, + ACTIONS(1143), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40080,7 +42538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1027), 43, + ACTIONS(1145), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40124,11 +42582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4337] = 3, + [4598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1095), 17, + ACTIONS(1147), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40146,7 +42604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1097), 43, + ACTIONS(1149), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40190,11 +42648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4406] = 3, + [4667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1099), 17, + ACTIONS(1151), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40212,7 +42670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1101), 43, + ACTIONS(1153), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40256,11 +42714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4475] = 3, + [4736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1103), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40278,7 +42736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1105), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40322,11 +42780,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4544] = 3, + [4805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1107), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40344,7 +42802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1109), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40388,11 +42846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4613] = 3, + [4874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1111), 17, + ACTIONS(1159), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40410,7 +42868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1113), 43, + ACTIONS(1161), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40454,11 +42912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4682] = 3, + [4943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1115), 17, + ACTIONS(1163), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40476,7 +42934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1117), 43, + ACTIONS(1165), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40520,11 +42978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4751] = 3, + [5012] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1119), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40542,7 +43000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1121), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40586,11 +43044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4820] = 3, + [5081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1123), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40608,7 +43066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1125), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40652,86 +43110,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4889] = 12, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(931), 1, - anon_sym_LBRACE, - ACTIONS(933), 1, - anon_sym_LBRACK, - STATE(1187), 1, - sym_variable_declarator, + [5150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(809), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1155), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, - anon_sym_STAR, - anon_sym_in, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1157), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4976] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [5219] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1127), 17, + ACTIONS(1155), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40749,7 +43198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1129), 43, + ACTIONS(1157), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40793,11 +43242,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5045] = 3, + [5288] = 12, + ACTIONS(839), 1, + anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_EQ, + ACTIONS(877), 1, + anon_sym_COLON, + ACTIONS(910), 1, + sym_identifier, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + STATE(1255), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1131), 17, + STATE(1184), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(815), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [5375] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1167), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40815,7 +43339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1133), 43, + ACTIONS(1169), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40859,11 +43383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5114] = 3, + [5444] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1127), 17, + ACTIONS(1167), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40881,7 +43405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1129), 43, + ACTIONS(1169), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40925,11 +43449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5183] = 3, + [5513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1135), 17, + ACTIONS(1171), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40947,7 +43471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1137), 43, + ACTIONS(1173), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40991,11 +43515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5252] = 3, + [5582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1139), 17, + ACTIONS(1175), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41013,7 +43537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1141), 43, + ACTIONS(1177), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41057,86 +43581,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5321] = 12, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_COLON, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(929), 1, - sym_identifier, - ACTIONS(931), 1, + [5651] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1179), 17, + ts_builtin_sym_end, anon_sym_LBRACE, - ACTIONS(933), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(1187), 1, - sym_variable_declarator, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1181), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [5720] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(809), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1183), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, - anon_sym_STAR, - anon_sym_in, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1185), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [5408] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [5789] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1143), 17, + ACTIONS(1187), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41154,7 +43735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1145), 43, + ACTIONS(1189), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41198,11 +43779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5477] = 3, + [5858] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1147), 17, + ACTIONS(1191), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41220,7 +43801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1149), 43, + ACTIONS(1193), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41264,11 +43845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5546] = 3, + [5927] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1151), 17, + ACTIONS(1195), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41286,7 +43867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1153), 43, + ACTIONS(1197), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41330,11 +43911,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5615] = 3, + [5996] = 13, + ACTIONS(889), 1, + anon_sym_LPAREN, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(894), 1, + anon_sym_function, + ACTIONS(930), 1, + sym_identifier, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(954), 1, + anon_sym_in, + ACTIONS(957), 1, + anon_sym_of, + STATE(1713), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1155), 17, + ACTIONS(932), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(815), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [6085] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1199), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41352,7 +44009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1157), 43, + ACTIONS(1201), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41396,11 +44053,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5684] = 3, + [6154] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1159), 17, + ACTIONS(1203), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41418,7 +44075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1161), 43, + ACTIONS(1205), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41462,77 +44119,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5753] = 3, + [6223] = 12, + ACTIONS(839), 1, + anon_sym_EQ_GT, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(849), 1, + anon_sym_EQ, + ACTIONS(910), 1, + sym_identifier, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + STATE(1255), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1163), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1184), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(815), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1165), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [5822] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [6310] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1167), 17, + ACTIONS(1207), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41550,7 +44216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1169), 43, + ACTIONS(1209), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41594,11 +44260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5891] = 3, + [6379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1171), 17, + ACTIONS(1211), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41616,7 +44282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1173), 43, + ACTIONS(1213), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41660,11 +44326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5960] = 3, + [6448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1175), 17, + ACTIONS(1215), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41682,7 +44348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1177), 43, + ACTIONS(1217), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41726,11 +44392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6029] = 3, + [6517] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1179), 17, + ACTIONS(1215), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41748,7 +44414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1181), 43, + ACTIONS(1217), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41792,11 +44458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6098] = 3, + [6586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1183), 17, + ACTIONS(1219), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41814,7 +44480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1185), 43, + ACTIONS(1221), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41858,11 +44524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6167] = 3, + [6655] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1187), 17, + ACTIONS(1223), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41880,7 +44546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1189), 43, + ACTIONS(1225), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41924,34 +44590,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6236] = 13, - ACTIONS(883), 1, + [6724] = 11, + ACTIONS(889), 1, anon_sym_LPAREN, - ACTIONS(886), 1, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(888), 1, + ACTIONS(894), 1, anon_sym_function, - ACTIONS(908), 1, + ACTIONS(995), 1, sym_identifier, - ACTIONS(917), 1, + ACTIONS(1001), 1, anon_sym_EQ_GT, - ACTIONS(945), 1, - anon_sym_in, - ACTIONS(948), 1, - anon_sym_of, - STATE(1649), 1, + STATE(1725), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(910), 6, + ACTIONS(997), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(809), 11, + ACTIONS(815), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -41963,7 +44625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -41979,8 +44641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(826), 22, anon_sym_STAR, + anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42000,11 +44664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6325] = 3, + [6809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1191), 17, + ACTIONS(1227), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42022,7 +44686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1193), 43, + ACTIONS(1229), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42066,11 +44730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6394] = 3, + [6878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1195), 17, + ACTIONS(1019), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42088,7 +44752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1197), 43, + ACTIONS(1021), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42132,93 +44796,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6463] = 3, + [6947] = 13, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, + anon_sym_EQ, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + ACTIONS(954), 1, + anon_sym_in, + ACTIONS(957), 1, + anon_sym_of, + ACTIONS(1231), 1, + sym_identifier, + STATE(1255), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1199), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1101), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(815), 13, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1201), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(826), 20, + anon_sym_STAR, anon_sym_LT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [6532] = 11, - ACTIONS(833), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [7035] = 11, + ACTIONS(839), 1, anon_sym_EQ_GT, - ACTIONS(843), 1, + ACTIONS(849), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(910), 1, sym_identifier, - ACTIONS(931), 1, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(933), 1, + ACTIONS(914), 1, anon_sym_LBRACK, - STATE(1187), 1, + STATE(1255), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, + STATE(1184), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(809), 13, + ACTIONS(815), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -42232,7 +44905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42248,9 +44921,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 21, + ACTIONS(826), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [7118] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(975), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42269,26 +44969,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(973), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [6615] = 11, - ACTIONS(822), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7184] = 11, + ACTIONS(828), 1, anon_sym_COLON, - ACTIONS(837), 1, + ACTIONS(845), 1, anon_sym_RBRACE, - ACTIONS(1207), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1210), 1, + ACTIONS(1240), 1, anon_sym_EQ, - ACTIONS(1212), 1, + ACTIONS(1242), 1, anon_sym_EQ_GT, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 15, + ACTIONS(1235), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -42304,7 +45040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42320,7 +45056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42341,41 +45077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6697] = 11, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(822), 1, - anon_sym_COLON, - ACTIONS(1207), 1, - anon_sym_LPAREN, - ACTIONS(1210), 1, + [7266] = 5, + ACTIONS(1246), 1, anon_sym_EQ, - ACTIONS(1212), 1, - anon_sym_EQ_GT, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42391,7 +45099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42412,25 +45120,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6779] = 11, - ACTIONS(822), 1, + ACTIONS(1235), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - ACTIONS(839), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7336] = 11, + ACTIONS(817), 1, anon_sym_RBRACE, - ACTIONS(1207), 1, + ACTIONS(828), 1, + anon_sym_COLON, + ACTIONS(1237), 1, anon_sym_LPAREN, - ACTIONS(1210), 1, + ACTIONS(1240), 1, anon_sym_EQ, - ACTIONS(1212), 1, + ACTIONS(1242), 1, anon_sym_EQ_GT, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 15, + ACTIONS(1235), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -42446,7 +45176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42462,7 +45192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -42483,11 +45213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6861] = 3, + [7418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1216), 21, + ACTIONS(1248), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42509,12 +45239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1218), 35, + ACTIONS(1250), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -42545,41 +45276,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6926] = 12, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_EQ_GT, - ACTIONS(945), 1, + [7484] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1252), 21, + anon_sym_STAR, anon_sym_in, - ACTIONS(948), 1, - anon_sym_of, - ACTIONS(1220), 1, - sym_identifier, - ACTIONS(1222), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1254), 36, + sym__ternary_qmark, anon_sym_LBRACE, - ACTIONS(1224), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7550] = 11, + ACTIONS(828), 1, + anon_sym_COLON, + ACTIONS(843), 1, + anon_sym_RBRACE, + ACTIONS(1237), 1, + anon_sym_LPAREN, + ACTIONS(1240), 1, + anon_sym_EQ, + ACTIONS(1242), 1, + anon_sym_EQ_GT, + STATE(1370), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1388), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(809), 11, + ACTIONS(1235), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42595,8 +45389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42615,32 +45410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7009] = 5, - ACTIONS(1227), 1, - anon_sym_EQ, + [7632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1256), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42659,12 +45436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1205), 20, + ACTIONS(1258), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -42672,6 +45450,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -42680,11 +45473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7078] = 3, + [7698] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(979), 21, + ACTIONS(1260), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42706,12 +45499,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(977), 35, + ACTIONS(1262), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -42742,11 +45536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7143] = 3, + [7764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1229), 21, + ACTIONS(1264), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42768,12 +45562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1231), 35, + ACTIONS(1266), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -42804,11 +45599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7208] = 3, + [7830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1233), 21, + ACTIONS(1268), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -42830,12 +45625,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1235), 35, + ACTIONS(1270), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -42866,14 +45662,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7273] = 3, + [7896] = 6, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1237), 21, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(815), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42892,19 +45727,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1239), 35, - sym__ternary_qmark, + [7967] = 12, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(912), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(954), 1, + anon_sym_in, + ACTIONS(957), 1, anon_sym_of, - anon_sym_COLON, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1274), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1302), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(815), 11, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42920,22 +45777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7338] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1241), 21, + ACTIONS(826), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -42954,19 +45797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1243), 35, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_instanceof, + [8050] = 6, + ACTIONS(1277), 1, + anon_sym_EQ, + ACTIONS(1279), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42982,6 +45822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1235), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -42990,14 +45842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7403] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1245), 21, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -43016,19 +45863,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1247), 35, + [8121] = 6, + ACTIONS(1246), 1, + anon_sym_EQ, + ACTIONS(1279), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1244), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1235), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1233), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8192] = 6, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43044,6 +45952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(815), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43052,11 +45972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7468] = 3, + ACTIONS(826), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8263] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1251), 15, + ACTIONS(1283), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43072,7 +46013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1249), 40, + ACTIONS(1281), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43113,79 +46054,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7532] = 6, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1253), 1, - anon_sym_EQ_GT, + [8327] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1283), 15, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, - anon_sym_STAR, - anon_sym_in, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1281), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7602] = 6, - ACTIONS(1253), 1, - anon_sym_EQ_GT, - ACTIONS(1255), 1, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8391] = 5, + ACTIONS(1277), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43201,11 +46137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 18, + ACTIONS(1235), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -43220,7 +46157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43241,11 +46178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7672] = 3, + [8459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1259), 15, + ACTIONS(1283), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43261,7 +46198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1257), 40, + ACTIONS(1281), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43302,11 +46239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7736] = 3, + [8523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1263), 15, + ACTIONS(1287), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43322,7 +46259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1261), 40, + ACTIONS(1285), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43363,139 +46300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7800] = 6, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(820), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7870] = 6, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(892), 1, - anon_sym_EQ, + [8587] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(820), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7940] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1251), 15, + ACTIONS(1283), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43511,7 +46320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1249), 40, + ACTIONS(1281), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43552,11 +46361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8004] = 3, + [8651] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1267), 15, + ACTIONS(1291), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43572,7 +46381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1265), 40, + ACTIONS(1289), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43613,11 +46422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8068] = 3, + [8715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(977), 15, + ACTIONS(1295), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43633,7 +46442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(979), 40, + ACTIONS(1293), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43674,11 +46483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8132] = 3, + [8779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1251), 15, + ACTIONS(973), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43694,7 +46503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1249), 40, + ACTIONS(975), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43735,11 +46544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8196] = 3, + [8843] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1251), 15, + ACTIONS(1299), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -43755,7 +46564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1249), 40, + ACTIONS(1297), 40, anon_sym_export, anon_sym_import, anon_sym_with, @@ -43796,34 +46605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8260] = 7, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(926), 1, + [8907] = 5, + ACTIONS(1246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(923), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(809), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43839,43 +46627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8331] = 7, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1274), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1269), 4, + ACTIONS(1235), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1205), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -43887,23 +46646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43924,38 +46667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8402] = 7, - ACTIONS(847), 1, - anon_sym_COLON, - ACTIONS(1212), 1, - anon_sym_EQ_GT, - ACTIONS(1276), 1, + [8974] = 7, + ACTIONS(1246), 1, anon_sym_EQ, + ACTIONS(1303), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1301), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1235), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -43967,40 +46694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8473] = 8, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_in, - ACTIONS(1278), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44016,25 +46710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(820), 19, + ACTIONS(1233), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44053,11 +46731,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8546] = 3, + [9045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1229), 21, + ACTIONS(975), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44079,14 +46757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1231), 33, + ACTIONS(973), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44113,15 +46791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8609] = 6, - ACTIONS(1212), 1, + [9108] = 7, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(1242), 1, anon_sym_EQ_GT, - ACTIONS(1276), 1, + ACTIONS(1305), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44137,11 +46817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, + ACTIONS(1235), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -44155,7 +46834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44176,15 +46855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8678] = 6, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(1282), 1, + [9179] = 6, + ACTIONS(1242), 1, anon_sym_EQ_GT, + ACTIONS(1246), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44200,12 +46879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, + ACTIONS(1235), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44218,7 +46897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44239,15 +46918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8747] = 6, - ACTIONS(833), 1, + [9248] = 7, + ACTIONS(839), 1, anon_sym_EQ_GT, - ACTIONS(843), 1, + ACTIONS(847), 1, + anon_sym_COLON, + ACTIONS(849), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44263,11 +46944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 17, + ACTIONS(815), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -44281,7 +46961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44302,19 +46982,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8816] = 8, - ACTIONS(1212), 1, - anon_sym_EQ_GT, - ACTIONS(1276), 1, + [9319] = 7, + ACTIONS(936), 1, anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_in, - ACTIONS(1287), 1, - anon_sym_of, + ACTIONS(939), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(934), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(815), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44330,25 +47025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1203), 19, + ACTIONS(826), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44367,11 +47046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8889] = 3, + [9390] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1216), 21, + ACTIONS(1256), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44393,14 +47072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1218), 33, + ACTIONS(1258), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44427,17 +47106,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8952] = 7, - ACTIONS(833), 1, - anon_sym_EQ_GT, - ACTIONS(843), 1, - anon_sym_EQ, - ACTIONS(847), 1, - anon_sym_COLON, + [9453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(1248), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1250), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44453,15 +47158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -44470,9 +47166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, + [9516] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44491,34 +47192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9023] = 7, - ACTIONS(1253), 1, - anon_sym_EQ_GT, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1289), 4, + ACTIONS(1262), 33, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1205), 13, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1214), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44534,32 +47218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9094] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(979), 21, + ACTIONS(1252), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44581,14 +47252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(977), 33, + ACTIONS(1254), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44615,13 +47286,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9157] = 5, - ACTIONS(1255), 1, + [9642] = 7, + ACTIONS(1303), 1, + anon_sym_EQ_GT, + ACTIONS(1309), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1307), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1235), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44637,15 +47329,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 18, + ACTIONS(1233), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9713] = 6, + ACTIONS(839), 1, + anon_sym_EQ_GT, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(841), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(815), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -44656,7 +47392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44677,15 +47413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9224] = 6, - ACTIONS(1212), 1, + [9782] = 7, + ACTIONS(877), 1, + anon_sym_COLON, + ACTIONS(1242), 1, anon_sym_EQ_GT, - ACTIONS(1227), 1, + ACTIONS(1305), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44701,11 +47439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, + ACTIONS(1235), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -44719,7 +47456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44740,15 +47477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9293] = 6, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1282), 1, + [9853] = 7, + ACTIONS(839), 1, anon_sym_EQ_GT, + ACTIONS(849), 1, + anon_sym_EQ, + ACTIONS(877), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44764,12 +47503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, + ACTIONS(815), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -44782,7 +47520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44803,34 +47541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9362] = 7, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1274), 1, + [9924] = 6, + ACTIONS(922), 1, anon_sym_EQ_GT, + ACTIONS(941), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1205), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44846,7 +47565,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(815), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44867,17 +47604,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9433] = 7, - ACTIONS(841), 1, - anon_sym_COLON, - ACTIONS(1212), 1, - anon_sym_EQ_GT, - ACTIONS(1276), 1, - anon_sym_EQ, + [9993] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1268), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1270), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44893,12 +47656,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10056] = 7, + ACTIONS(1279), 1, + anon_sym_EQ_GT, + ACTIONS(1315), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1312), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1235), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44910,7 +47691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1244), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44931,17 +47728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9504] = 7, - ACTIONS(833), 1, + [10127] = 6, + ACTIONS(839), 1, anon_sym_EQ_GT, - ACTIONS(841), 1, - anon_sym_COLON, - ACTIONS(843), 1, + ACTIONS(849), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44957,10 +47752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 16, + ACTIONS(815), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -44974,7 +47770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44995,43 +47791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9575] = 3, + [10196] = 6, + ACTIONS(1242), 1, + anon_sym_EQ_GT, + ACTIONS(1305), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1245), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1247), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45047,6 +47815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1235), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45055,14 +47833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9638] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1241), 21, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45081,17 +47854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1243), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + [10265] = 6, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(922), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45107,6 +47878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(815), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45115,14 +47896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9701] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1237), 21, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45141,17 +47917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1239), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + [10334] = 6, + ACTIONS(1246), 1, + anon_sym_EQ, + ACTIONS(1318), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45167,6 +47941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1235), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45175,14 +47959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9764] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1233), 21, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45201,49 +47980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1235), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9827] = 6, - ACTIONS(833), 1, + [10403] = 6, + ACTIONS(1318), 1, anon_sym_EQ_GT, - ACTIONS(886), 1, + ACTIONS(1320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45259,13 +48004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 17, + ACTIONS(1235), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45277,7 +48022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45298,15 +48043,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9896] = 6, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(941), 1, - anon_sym_EQ_GT, + [10472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(1264), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1266), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45322,16 +48095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45340,41 +48103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9965] = 7, - ACTIONS(886), 1, + [10535] = 7, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(939), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(919), 4, + ACTIONS(943), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(809), 13, + ACTIONS(815), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45388,7 +48130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45404,7 +48146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45425,20 +48167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10036] = 7, - ACTIONS(914), 1, - anon_sym_EQ, - ACTIONS(917), 1, + [10606] = 7, + ACTIONS(896), 1, anon_sym_EQ_GT, + ACTIONS(948), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(912), 4, + ACTIONS(945), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(809), 13, + ACTIONS(815), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45452,7 +48194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45468,7 +48210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45489,13 +48231,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10107] = 5, - ACTIONS(1227), 1, + [10677] = 7, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(951), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(815), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45511,26 +48273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45551,15 +48294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10174] = 6, - ACTIONS(939), 1, + [10747] = 5, + ACTIONS(1305), 1, anon_sym_EQ, - ACTIONS(941), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45575,12 +48316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(809), 17, + ACTIONS(1235), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -45593,7 +48334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45614,20 +48355,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10243] = 6, - ACTIONS(1227), 1, + [10813] = 8, + ACTIONS(896), 1, + anon_sym_EQ_GT, + ACTIONS(898), 1, anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_in, + ACTIONS(1322), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1205), 13, + ACTIONS(815), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45639,7 +48383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45655,9 +48399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(826), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45676,18 +48419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10311] = 6, - ACTIONS(1271), 1, + [10885] = 7, + ACTIONS(1277), 1, anon_sym_EQ, + ACTIONS(1279), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 4, + ACTIONS(1324), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1205), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45701,7 +48445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45717,7 +48461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45738,18 +48482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10379] = 6, - ACTIONS(1292), 1, + [10955] = 6, + ACTIONS(1315), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1289), 4, + ACTIONS(1312), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1205), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45763,7 +48507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45779,7 +48523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45800,38 +48544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10447] = 7, - ACTIONS(1276), 1, + [11023] = 6, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_in, - ACTIONS(1287), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1307), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1235), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45843,33 +48569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10517] = 5, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45885,25 +48585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45924,21 +48606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10583] = 7, - ACTIONS(890), 1, - anon_sym_EQ_GT, - ACTIONS(892), 1, + [11091] = 8, + ACTIONS(1277), 1, anon_sym_EQ, + ACTIONS(1279), 1, + anon_sym_EQ_GT, + ACTIONS(1327), 1, + anon_sym_in, + ACTIONS(1330), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(954), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(809), 13, + ACTIONS(1235), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45950,7 +48634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45966,9 +48650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(1233), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45987,19 +48670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10653] = 7, - ACTIONS(1253), 1, - anon_sym_EQ_GT, - ACTIONS(1255), 1, + [11163] = 6, + ACTIONS(1246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1297), 3, + ACTIONS(1301), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1205), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46013,7 +48695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46029,7 +48711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46050,13 +48732,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10723] = 5, - ACTIONS(1276), 1, + [11231] = 5, + ACTIONS(1320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46072,13 +48754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1205), 17, + ACTIONS(1235), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46090,7 +48772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46111,19 +48793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10789] = 8, - ACTIONS(1253), 1, + [11297] = 8, + ACTIONS(1279), 1, anon_sym_EQ_GT, - ACTIONS(1269), 1, + ACTIONS(1307), 1, anon_sym_COMMA, - ACTIONS(1289), 1, + ACTIONS(1312), 1, anon_sym_RBRACK, - ACTIONS(1292), 1, + ACTIONS(1315), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46137,7 +48819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46153,7 +48835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46174,19 +48856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10860] = 8, - ACTIONS(890), 1, + [11368] = 8, + ACTIONS(896), 1, anon_sym_EQ_GT, - ACTIONS(912), 1, + ACTIONS(934), 1, anon_sym_COMMA, - ACTIONS(923), 1, + ACTIONS(945), 1, anon_sym_RBRACK, - ACTIONS(926), 1, + ACTIONS(948), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 13, + ACTIONS(815), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46200,7 +48882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46216,7 +48898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46237,17 +48919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10931] = 6, - ACTIONS(1255), 1, + [11439] = 6, + ACTIONS(1277), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1297), 3, + ACTIONS(1324), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(1205), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46261,7 +48943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46277,7 +48959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46298,15 +48980,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10998] = 6, - ACTIONS(1227), 1, + [11506] = 7, + ACTIONS(1277), 1, anon_sym_EQ, - ACTIONS(1274), 1, + ACTIONS(1327), 1, + anon_sym_in, + ACTIONS(1330), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1235), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1244), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1233), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11575] = 6, + ACTIONS(892), 1, + anon_sym_EQ, + ACTIONS(939), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 15, + ACTIONS(815), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -46322,7 +49066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46338,7 +49082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46359,15 +49103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11065] = 6, - ACTIONS(886), 1, + [11642] = 6, + ACTIONS(1246), 1, anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(1303), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 15, + ACTIONS(1235), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, @@ -46383,7 +49127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46399,7 +49143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46420,19 +49164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11132] = 7, - ACTIONS(1269), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(1292), 1, + [11709] = 6, + ACTIONS(1246), 1, anon_sym_EQ, + ACTIONS(1332), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 13, + ACTIONS(1235), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46444,7 +49187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46460,7 +49203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46481,18 +49224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11200] = 6, - ACTIONS(1047), 1, - anon_sym_EQ_GT, - ACTIONS(1049), 1, + [11775] = 7, + ACTIONS(1307), 1, + anon_sym_COMMA, + ACTIONS(1312), 1, + anon_sym_RBRACK, + ACTIONS(1315), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 14, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46504,7 +49248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46520,7 +49264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46541,19 +49285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11266] = 8, - ACTIONS(1227), 1, + [11843] = 8, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(1274), 1, + ACTIONS(939), 1, anon_sym_EQ_GT, - ACTIONS(1284), 1, + ACTIONS(954), 1, anon_sym_in, - ACTIONS(1287), 1, + ACTIONS(1322), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 13, + ACTIONS(815), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46567,7 +49311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46583,7 +49327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 19, + ACTIONS(826), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -46603,19 +49347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11336] = 8, - ACTIONS(886), 1, + [11913] = 8, + ACTIONS(1246), 1, anon_sym_EQ, - ACTIONS(917), 1, + ACTIONS(1303), 1, anon_sym_EQ_GT, - ACTIONS(945), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1278), 1, + ACTIONS(1330), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 13, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46629,7 +49373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46645,7 +49389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 19, + ACTIONS(1233), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -46665,15 +49409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11406] = 6, - ACTIONS(1300), 1, + [11983] = 6, + ACTIONS(999), 1, anon_sym_EQ, - ACTIONS(1302), 1, + ACTIONS(1001), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 14, + ACTIONS(815), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -46688,7 +49432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46704,7 +49448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46725,15 +49469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11472] = 6, - ACTIONS(886), 1, - anon_sym_EQ, - ACTIONS(1047), 1, + [12049] = 6, + ACTIONS(1332), 1, anon_sym_EQ_GT, + ACTIONS(1334), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(809), 14, + ACTIONS(1235), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -46748,7 +49492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(835), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46764,7 +49508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(820), 20, + ACTIONS(1233), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46785,15 +49529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11538] = 6, - ACTIONS(1227), 1, + [12115] = 6, + ACTIONS(892), 1, anon_sym_EQ, - ACTIONS(1302), 1, + ACTIONS(1001), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 14, + ACTIONS(815), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -46808,7 +49552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(841), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46824,7 +49568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(826), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46845,16 +49589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11604] = 5, - ACTIONS(1300), 1, + [12181] = 7, + ACTIONS(1246), 1, anon_sym_EQ, + ACTIONS(1327), 1, + anon_sym_in, + ACTIONS(1330), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 14, + ACTIONS(1235), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46866,7 +49613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46882,9 +49629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 20, + ACTIONS(1233), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46903,19 +49649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11667] = 7, - ACTIONS(1227), 1, + [12248] = 5, + ACTIONS(1334), 1, anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_in, - ACTIONS(1287), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1205), 13, + ACTIONS(1235), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46927,7 +49670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1214), 15, + ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46943,8 +49686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1203), 19, + ACTIONS(1233), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46963,10 +49707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11734] = 5, + [12311] = 5, ACTIONS(516), 1, anon_sym_EQ, - ACTIONS(1304), 1, + ACTIONS(1336), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, @@ -46984,12 +49728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(508), 28, + ACTIONS(508), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47013,27 +49758,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11789] = 10, + [12367] = 9, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1306), 12, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47046,11 +49788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1308), 21, + ACTIONS(1340), 24, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47068,24 +49811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [11854] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [12431] = 10, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(542), 2, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1320), 12, + ACTIONS(1350), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47098,11 +49846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 23, + ACTIONS(1352), 22, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47120,29 +49869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [11917] = 10, + [12497] = 10, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1324), 12, + ACTIONS(1356), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47155,11 +49902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 21, + ACTIONS(1358), 22, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47177,21 +49925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [11982] = 8, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1332), 1, - sym_optional_chain, - STATE(520), 1, - sym_arguments, + [12563] = 4, + ACTIONS(1360), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1328), 12, + ACTIONS(594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47204,15 +49944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 24, + ACTIONS(592), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47229,18 +49974,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12042] = 5, - ACTIONS(1341), 1, - anon_sym_EQ, + [12616] = 8, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1366), 1, + sym_optional_chain, + STATE(539), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1338), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1334), 12, + ACTIONS(1362), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47253,15 +50001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 24, + ACTIONS(1364), 25, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47278,8 +50027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12096] = 4, - ACTIONS(1304), 1, + [12677] = 4, + ACTIONS(1336), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, @@ -47297,12 +50046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(508), 28, + ACTIONS(508), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47326,18 +50076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12148] = 5, - ACTIONS(516), 1, - anon_sym_EQ, + [12730] = 5, + ACTIONS(1342), 1, + anon_sym_LPAREN, + STATE(539), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1343), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(512), 12, + ACTIONS(1362), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47350,13 +50097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 24, + ACTIONS(1364), 28, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -47375,13 +50126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12202] = 4, - ACTIONS(1227), 1, + [12785] = 4, + ACTIONS(1246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47394,12 +50145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 28, + ACTIONS(1235), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47423,13 +50175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12254] = 4, - ACTIONS(1346), 1, - sym__automatic_semicolon, + [12838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 12, + ACTIONS(1368), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47442,12 +50192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(610), 28, + ACTIONS(1370), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47471,15 +50222,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12306] = 5, - ACTIONS(1310), 1, - anon_sym_LPAREN, - STATE(520), 1, - sym_arguments, + [12888] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1372), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47492,11 +50239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 27, + ACTIONS(1374), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47520,18 +50269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12360] = 5, - ACTIONS(1355), 1, - anon_sym_EQ, + [12938] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1352), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1348), 12, + ACTIONS(1376), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47544,13 +50286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 24, + ACTIONS(1378), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -47569,11 +50316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12414] = 3, + [12988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 12, + ACTIONS(636), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47586,12 +50333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 28, + ACTIONS(638), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47615,11 +50363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12463] = 3, + [13038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1361), 12, + ACTIONS(1380), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47632,12 +50380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 28, + ACTIONS(1382), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47661,11 +50410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12512] = 3, + [13088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 12, + ACTIONS(1384), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47678,12 +50427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 28, + ACTIONS(1386), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47707,11 +50457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12561] = 3, + [13138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 12, + ACTIONS(1388), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47724,12 +50474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(610), 28, + ACTIONS(1390), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47753,80 +50504,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12610] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [13188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1392), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1394), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1314), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(536), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(538), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13288] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1396), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1371), 5, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1398), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [12705] = 3, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1405), 12, + ACTIONS(1400), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47839,12 +50662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 28, + ACTIONS(1402), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47868,80 +50692,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12754] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [13388] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1404), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1406), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1314), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(578), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(580), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13488] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(586), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1409), 5, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(584), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [12849] = 3, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13538] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1411), 12, + ACTIONS(1408), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47954,12 +50850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 28, + ACTIONS(1410), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -47983,11 +50880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12898] = 3, + [13588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(636), 12, + ACTIONS(594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48000,12 +50897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(634), 28, + ACTIONS(592), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48029,11 +50927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12947] = 3, + [13638] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 12, + ACTIONS(1412), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48046,12 +50944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1417), 28, + ACTIONS(1414), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48075,11 +50974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12996] = 3, + [13688] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(628), 12, + ACTIONS(1416), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48092,12 +50991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(626), 28, + ACTIONS(1418), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48121,11 +51021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13045] = 3, + [13738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1419), 12, + ACTIONS(604), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48138,12 +51038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 28, + ACTIONS(602), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48167,11 +51068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13094] = 3, + [13788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 12, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48184,12 +51085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1425), 28, + ACTIONS(614), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48213,11 +51115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13143] = 3, + [13838] = 5, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 12, + ACTIONS(1420), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48230,17 +51139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1429), 28, + ACTIONS(514), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48259,82 +51164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13192] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1431), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [13287] = 4, - ACTIONS(1433), 1, - sym__automatic_semicolon, + [13892] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48347,16 +51181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(508), 27, + ACTIONS(1235), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48375,11 +51211,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13338] = 3, + [13942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(642), 12, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48392,17 +51228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(640), 28, - sym__automatic_semicolon, + ACTIONS(1425), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48421,11 +51258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13387] = 3, + [13992] = 6, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1366), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48438,19 +51281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 28, + ACTIONS(1429), 26, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48467,11 +51308,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13436] = 3, + [14048] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(548), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48484,12 +51325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(550), 28, + ACTIONS(1429), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48513,11 +51355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13485] = 3, + [14098] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1439), 12, + ACTIONS(1431), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48530,12 +51372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 28, + ACTIONS(1433), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48559,11 +51402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13534] = 3, + [14148] = 4, + ACTIONS(1439), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(558), 12, + ACTIONS(1435), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48576,14 +51421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(560), 28, + anon_sym_instanceof, + ACTIONS(1437), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48601,15 +51447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13583] = 3, + [14200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(588), 12, + ACTIONS(1441), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48622,12 +51467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(590), 28, + ACTIONS(1443), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48651,64 +51497,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13632] = 10, - ACTIONS(83), 1, + [14250] = 26, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1306), 12, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1308), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13695] = 3, + ACTIONS(1447), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1453), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48721,12 +51584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1455), 28, + ACTIONS(1483), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48750,59 +51614,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13744] = 3, + [14396] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1457), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1483), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14492] = 16, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1455), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1459), 28, + ACTIONS(1485), 16, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13793] = 4, - ACTIONS(1461), 1, - sym__automatic_semicolon, + [14568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 12, + ACTIONS(1489), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48815,16 +51761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(610), 27, + ACTIONS(1491), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48843,11 +51791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13844] = 3, + [14618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1463), 12, + ACTIONS(568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48860,12 +51808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 28, + ACTIONS(570), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48889,11 +51838,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13893] = 3, + [14668] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1493), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1467), 12, + ACTIONS(626), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48906,12 +51925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 28, + ACTIONS(628), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48935,11 +51955,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13942] = 3, + [14814] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1471), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1495), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14910] = 5, + ACTIONS(1504), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48952,17 +52049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1473), 28, + ACTIONS(1499), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48981,11 +52074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13991] = 3, + [14964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1475), 12, + ACTIONS(546), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48998,12 +52091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1477), 28, + ACTIONS(548), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49027,11 +52121,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14040] = 3, + [15014] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1479), 12, + ACTIONS(1506), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49044,12 +52138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1481), 28, + ACTIONS(1508), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49073,11 +52168,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14089] = 3, + [15064] = 11, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49090,410 +52203,510 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(610), 28, - sym__automatic_semicolon, + ACTIONS(1485), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14138] = 26, + [15130] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1363), 5, + ACTIONS(1510), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14233] = 26, + [15226] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + anon_sym_QMARK_QMARK, + [15314] = 23, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1483), 5, + ACTIONS(1485), 9, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14328] = 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [15404] = 14, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1485), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 28, + ACTIONS(1485), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14377] = 26, + [15476] = 20, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + ACTIONS(1487), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1487), 5, + ACTIONS(1485), 11, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14472] = 4, - ACTIONS(1493), 1, - sym_regex_flags, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [15560] = 21, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1487), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1489), 13, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1491), 26, + ACTIONS(1485), 11, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14523] = 26, + [15646] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, + ACTIONS(1487), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1495), 5, + ACTIONS(1485), 10, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [14618] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [15734] = 13, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1497), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -49502,43 +52715,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 28, + ACTIONS(1485), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14667] = 3, + [15804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1501), 12, + ACTIONS(1512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49551,12 +52753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 28, + ACTIONS(1514), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49580,80 +52783,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14716] = 26, + [15854] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1505), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [14811] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1507), 12, + ACTIONS(1487), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49666,40 +52818,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 28, + ACTIONS(1485), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14860] = 3, + [15920] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1511), 12, + ACTIONS(1516), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49712,12 +52855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 28, + ACTIONS(1518), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49741,139 +52885,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14909] = 26, + [15970] = 18, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 5, + ACTIONS(1487), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 13, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [15004] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [16050] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1379), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1391), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 7, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 8, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [16142] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1520), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 15, + ACTIONS(1522), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15079] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1519), 12, + ACTIONS(1524), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49886,12 +53079,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 28, + ACTIONS(1526), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49915,11 +53109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15128] = 3, + [16242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1528), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49932,12 +53126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1409), 28, + ACTIONS(1530), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49961,11 +53156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15177] = 3, + [16292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1525), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49978,12 +53173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 28, + ACTIONS(560), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50007,11 +53203,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15226] = 3, + [16342] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1532), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [16438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1534), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50024,12 +53290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 28, + ACTIONS(1536), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50053,96 +53320,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15275] = 26, + [16488] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1531), 5, + ACTIONS(1536), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [15370] = 10, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, + [16584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1324), 12, + ACTIONS(1538), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50155,13 +53407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1326), 19, - sym__automatic_semicolon, + ACTIONS(1540), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50175,24 +53434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15433] = 9, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, + [16634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1320), 12, + ACTIONS(1542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50205,13 +53454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1322), 21, - sym__automatic_semicolon, + ACTIONS(1544), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50227,11 +53483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [15494] = 3, + anon_sym_BQUOTE, + [16684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1533), 12, + ACTIONS(1546), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50244,12 +53501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 28, + ACTIONS(1548), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50273,29 +53531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15543] = 11, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, + [16734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1550), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50308,30 +53548,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 18, + ACTIONS(1552), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15608] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 12, + ACTIONS(1554), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50344,12 +53595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1539), 28, + ACTIONS(1556), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50373,145 +53625,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15657] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, + [16834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1558), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1541), 5, + ACTIONS(1560), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - [15752] = 22, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16884] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1562), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 9, + ACTIONS(1564), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15839] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50524,12 +53736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 28, + ACTIONS(1564), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50553,77 +53766,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15888] = 23, + [16984] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1379), 1, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 8, - sym__ternary_qmark, + ACTIONS(1566), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [15977] = 3, + [17080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50636,12 +53853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1531), 28, + ACTIONS(1564), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50665,11 +53883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16026] = 3, + [17130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(628), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50682,17 +53900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(626), 28, - sym__automatic_semicolon, + ACTIONS(1564), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50711,11 +53930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16075] = 3, + [17180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1549), 12, + ACTIONS(1568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50728,12 +53947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1551), 28, + ACTIONS(1570), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50757,264 +53977,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16124] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, + [17230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(590), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1553), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [16219] = 14, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(588), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16290] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17280] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1379), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1391), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1517), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 10, - sym__ternary_qmark, + ACTIONS(1570), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [16373] = 21, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1517), 1, - anon_sym_PIPE, + [17376] = 5, + ACTIONS(1579), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1576), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1572), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 10, + ACTIONS(1574), 24, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [16458] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(642), 12, + ACTIONS(1581), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51027,12 +54160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(640), 28, + ACTIONS(1583), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51056,99 +54190,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16507] = 22, + [17480] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1379), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1391), 1, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1517), 1, - anon_sym_PIPE, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 9, - sym__ternary_qmark, + ACTIONS(1583), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [16594] = 13, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, + [17576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1585), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -51157,49 +54274,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(1587), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16663] = 11, - ACTIONS(402), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, + [17626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1589), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51212,30 +54324,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 18, + ACTIONS(1591), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16728] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17676] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1593), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51248,12 +54371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 28, + ACTIONS(1595), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51277,139 +54401,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16777] = 18, + [17726] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1379), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1391), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, + ACTIONS(1595), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [17822] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1597), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 12, + ACTIONS(1599), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [16856] = 24, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17872] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 7, - sym__ternary_qmark, + ACTIONS(1599), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [16947] = 3, + [17968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(1601), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51422,12 +54605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 28, + ACTIONS(1603), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51451,17 +54635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16996] = 6, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1332), 1, - sym_optional_chain, + [18018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(1605), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51474,16 +54652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 25, + ACTIONS(1607), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51500,103 +54682,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17051] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1563), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1565), 28, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [18068] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1344), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17100] = 3, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 28, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1609), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17149] = 3, + [18164] = 4, + ACTIONS(1611), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 12, + ACTIONS(510), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51609,17 +54771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 28, + ACTIONS(508), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51638,11 +54799,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17198] = 3, + [18215] = 10, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1567), 12, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1350), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51655,19 +54832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 28, + ACTIONS(1352), 19, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51681,14 +54852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [18278] = 9, + ACTIONS(83), 1, anon_sym_BQUOTE, - [17247] = 3, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1571), 12, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1338), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51701,19 +54882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1573), 28, + ACTIONS(1340), 21, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51729,12 +54904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17296] = 3, + [18339] = 4, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1575), 12, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51747,14 +54923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 28, + ACTIONS(514), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -51776,11 +54951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17345] = 3, + [18390] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(590), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51793,17 +54968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 28, + ACTIONS(588), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51822,11 +54997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17394] = 3, + [18439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(604), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51839,17 +55014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 28, + ACTIONS(602), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51868,11 +55043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17443] = 3, + [18488] = 4, + ACTIONS(1277), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1579), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51885,14 +55062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1581), 28, + ACTIONS(1235), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -51914,80 +55090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17492] = 26, - ACTIONS(402), 1, + [18539] = 10, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1583), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [17587] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1585), 12, + ACTIONS(1356), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52000,19 +55123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 28, + ACTIONS(1358), 19, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52026,14 +55143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17636] = 3, + [18602] = 4, + ACTIONS(1504), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(620), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52046,14 +55162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(622), 28, + ACTIONS(1499), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -52075,11 +55190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17685] = 3, + [18653] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 12, + ACTIONS(594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52092,17 +55207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 28, + ACTIONS(592), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52121,11 +55236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17734] = 3, + [18702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(636), 12, + ACTIONS(586), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52138,16 +55253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(634), 28, + ACTIONS(584), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, anon_sym_while, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -52167,11 +55282,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17783] = 3, + [18751] = 4, + ACTIONS(1579), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(602), 12, + ACTIONS(1572), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52184,14 +55301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(604), 28, + ACTIONS(1574), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -52213,11 +55329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17832] = 3, + [18802] = 4, + ACTIONS(1623), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(568), 12, + ACTIONS(594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52230,17 +55348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(570), 28, + ACTIONS(592), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52259,770 +55376,1110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17881] = 3, + [18853] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1629), 1, + anon_sym_AMP_AMP, + ACTIONS(1631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1633), 1, + anon_sym_GT_GT, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, + anon_sym_CARET, + ACTIONS(1641), 1, + anon_sym_PIPE, + ACTIONS(1645), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, + anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1657), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(578), 12, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1643), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1651), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1653), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1627), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1649), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1583), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [18947] = 14, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(580), 28, + ACTIONS(1485), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [19017] = 20, + ACTIONS(83), 1, anon_sym_BQUOTE, - [17930] = 3, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(524), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1487), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 28, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 9, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [19099] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1344), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(1679), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [19193] = 21, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17979] = 26, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [19277] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1553), 4, + ACTIONS(1566), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [18073] = 28, + anon_sym_of, + [19371] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, - ACTIONS(1627), 1, - anon_sym_COMMA, - ACTIONS(1630), 1, - anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18171] = 26, + ACTIONS(1570), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [19465] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1671), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1495), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [19559] = 22, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1553), 4, + ACTIONS(1485), 8, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [18265] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [19645] = 13, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [19713] = 11, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1605), 1, anon_sym_AMP, - ACTIONS(1607), 1, - anon_sym_CARET, - ACTIONS(1609), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [19777] = 18, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, - sym__ternary_qmark, + ACTIONS(1669), 1, + anon_sym_GT_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1621), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1483), 4, + ACTIONS(1487), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 11, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [18359] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [19855] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1487), 4, + ACTIONS(1493), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [18453] = 26, - ACTIONS(402), 1, + anon_sym_of, + [19949] = 24, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1666), 4, + ACTIONS(1485), 6, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [18547] = 26, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [20039] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1487), 4, + ACTIONS(1447), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [18641] = 26, + anon_sym_of, + [20133] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1409), 4, + ACTIONS(1483), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [18735] = 26, + anon_sym_of, + [20227] = 16, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, - anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_CARET, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1660), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1656), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1371), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [18829] = 4, - ACTIONS(1255), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 12, - anon_sym_STAR, + ACTIONS(1487), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 26, + ACTIONS(1485), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [20301] = 11, + ACTIONS(83), 1, anon_sym_BQUOTE, - [18879] = 6, - ACTIONS(516), 1, - anon_sym_EQ, - ACTIONS(518), 1, - sym__automatic_semicolon, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1647), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(508), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(512), 12, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53035,544 +56492,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 23, + ACTIONS(1485), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18933] = 26, + [20365] = 22, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1505), 4, + ACTIONS(1485), 8, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [19027] = 26, - ACTIONS(402), 1, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [20451] = 23, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1668), 4, + ACTIONS(1485), 7, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [19121] = 11, + anon_sym_SEMI, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [20539] = 14, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1615), 1, + ACTIONS(1645), 1, + anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(719), 2, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1643), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 12, - anon_sym_STAR, + ACTIONS(1487), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(1485), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19185] = 26, + [20609] = 20, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, - anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_CARET, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1487), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1431), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [19279] = 4, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1205), 26, + ACTIONS(1485), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19329] = 26, + [20691] = 21, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_CARET, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1483), 4, + ACTIONS(1485), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [19423] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1405), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [20775] = 22, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1487), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1407), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1613), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(1615), 1, anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1619), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1633), 1, + anon_sym_GT_GT, + ACTIONS(1637), 1, + anon_sym_AMP, + ACTIONS(1639), 1, anon_sym_CARET, + ACTIONS(1645), 1, anon_sym_PERCENT, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19471] = 5, - ACTIONS(1443), 1, - anon_sym_LPAREN, - STATE(737), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1328), 12, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1625), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1635), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 25, + ACTIONS(1653), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1627), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1649), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19523] = 16, + [20861] = 13, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 7, + ACTIONS(1487), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 14, + ACTIONS(1485), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -53580,670 +56939,600 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19597] = 22, + [20929] = 11, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1607), 1, - anon_sym_CARET, - ACTIONS(1609), 1, - anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1621), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1487), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 8, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [19683] = 28, + anon_sym_instanceof, + [20993] = 18, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1607), 1, - anon_sym_CARET, - ACTIONS(1609), 1, - anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, - sym__ternary_qmark, - ACTIONS(1670), 1, - anon_sym_COMMA, - STATE(1188), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1621), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19781] = 8, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1674), 1, - sym_optional_chain, - STATE(737), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1328), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1487), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1330), 22, + ACTIONS(1485), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19839] = 26, + [21071] = 24, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, - sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1363), 4, + ACTIONS(1485), 6, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [19933] = 26, + anon_sym_of, + anon_sym_QMARK_QMARK, + [21161] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1583), 4, + ACTIONS(1532), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [20027] = 26, + anon_sym_of, + [21255] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1371), 4, + ACTIONS(1536), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [20121] = 26, + anon_sym_of, + [21349] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1531), 4, + ACTIONS(1483), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [20215] = 26, + [21443] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 4, + ACTIONS(1595), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [20309] = 23, + anon_sym_of, + [21537] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1601), 1, + ACTIONS(1631), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1657), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 7, + ACTIONS(1599), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [20397] = 28, + anon_sym_of, + [21631] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, - ACTIONS(1676), 1, - anon_sym_COMMA, - ACTIONS(1679), 1, - anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20495] = 3, + ACTIONS(1609), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [21725] = 4, + ACTIONS(1579), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 12, + ACTIONS(1572), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54256,15 +57545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1367), 27, + ACTIONS(1574), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54284,917 +57572,1101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20543] = 28, + [21775] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, - ACTIONS(1630), 1, - anon_sym_RBRACE, - ACTIONS(1681), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1505), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20641] = 26, + ACTIONS(1609), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21869] = 16, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [21943] = 27, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1657), 1, sym__ternary_qmark, + ACTIONS(1697), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1627), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1495), 4, + ACTIONS(1695), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [20735] = 26, + anon_sym_of, + [22039] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1363), 4, + ACTIONS(1532), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20829] = 4, - ACTIONS(1355), 1, - anon_sym_EQ, + [22133] = 28, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(1700), 1, + anon_sym_COMMA, + STATE(1259), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 26, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1702), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20879] = 27, + [22231] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1693), 1, sym__ternary_qmark, - ACTIONS(1686), 1, - anon_sym_in, + ACTIONS(1700), 1, + anon_sym_COMMA, + STATE(1259), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1634), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + ACTIONS(1704), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1656), 3, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1684), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [20975] = 21, + [22329] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_GT_GT, - ACTIONS(1644), 1, - anon_sym_AMP, - ACTIONS(1652), 1, + ACTIONS(1663), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 9, + ACTIONS(1536), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + [22423] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - [21059] = 4, - ACTIONS(516), 1, - anon_sym_EQ, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(512), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21109] = 26, + ACTIONS(1706), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [22517] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1409), 4, + ACTIONS(1583), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21203] = 24, + [22611] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1638), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 6, + ACTIONS(1566), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22705] = 5, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1611), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(510), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(508), 25, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21293] = 28, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22757] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1629), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1631), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1633), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1637), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1639), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1641), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1645), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1647), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1655), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1657), 1, sym__ternary_qmark, - ACTIONS(1670), 1, - anon_sym_COMMA, - STATE(1188), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1625), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1635), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1643), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1651), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1653), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1627), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1649), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21391] = 26, + ACTIONS(1495), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [22851] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1583), 4, + ACTIONS(1595), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21485] = 24, + [22945] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 6, + ACTIONS(1599), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [21575] = 18, + [23039] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_GT_GT, - ACTIONS(1652), 1, + ACTIONS(1663), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(719), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, + ACTIONS(1493), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23133] = 4, + ACTIONS(1246), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1233), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 11, + ACTIONS(1235), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21653] = 18, - ACTIONS(83), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, + [23183] = 8, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1708), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, + STATE(688), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1362), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1595), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1517), 4, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 11, + ACTIONS(1364), 22, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21731] = 11, - ACTIONS(83), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, + [23241] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1416), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55207,120 +58679,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(1418), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21795] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23289] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, + ACTIONS(1700), 1, + anon_sym_COMMA, + STATE(1259), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + ACTIONS(1710), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1531), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21889] = 13, + [23387] = 11, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 10, + ACTIONS(1487), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -55329,96 +58809,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 16, + ACTIONS(1485), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21957] = 22, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_GT_GT, - ACTIONS(1644), 1, - anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_CARET, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1632), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1658), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1660), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1634), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1656), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [22043] = 4, - ACTIONS(1341), 1, + [23451] = 4, + ACTIONS(1504), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1334), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55431,14 +58849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 26, + ACTIONS(1499), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55458,91 +58876,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22093] = 20, + [23501] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1640), 1, - anon_sym_GT_GT, - ACTIONS(1652), 1, + ACTIONS(1663), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 9, + ACTIONS(1570), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [22175] = 11, + [23595] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1615), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(1712), 1, + anon_sym_COMMA, + ACTIONS(1715), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1566), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(719), 2, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [23693] = 5, + ACTIONS(1613), 1, + anon_sym_LPAREN, + STATE(688), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1362), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55555,409 +59035,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(1364), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22239] = 26, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, + [23745] = 6, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(518), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(508), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(512), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(514), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1445), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1597), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1607), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1609), 1, - anon_sym_PIPE, - ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1621), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1595), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1495), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22333] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23799] = 22, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1652), 1, + ACTIONS(1663), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(719), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 8, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 16, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [22403] = 13, + [23885] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1613), 1, + ACTIONS(1663), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1665), 1, anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(1715), 1, + anon_sym_RBRACE, + ACTIONS(1717), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1447), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1671), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22471] = 23, + [23983] = 28, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1636), 1, - anon_sym_AMP_AMP, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(1720), 1, + anon_sym_COMMA, + ACTIONS(1723), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1447), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [22559] = 22, + [24081] = 23, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_PERCENT, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 8, + ACTIONS(1485), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [22645] = 26, + [24169] = 26, ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1431), 4, + ACTIONS(1447), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22739] = 5, + [24263] = 4, ACTIONS(516), 1, anon_sym_EQ, - ACTIONS(1433), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 12, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55970,13 +59465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(508), 25, + ACTIONS(514), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55996,202 +59492,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22791] = 22, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1443), 1, + [24313] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1408), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1410), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1445), 1, + anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1447), 1, anon_sym_DOT, - ACTIONS(1449), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1607), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1613), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24361] = 4, + ACTIONS(1725), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1595), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 8, + ACTIONS(1437), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [22877] = 21, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, + [24410] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1601), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1613), 1, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1729), 1, + anon_sym_SEMI, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [22961] = 20, - ACTIONS(83), 1, + [24507] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1613), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [23043] = 4, - ACTIONS(1355), 1, - anon_sym_EQ, + [24604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1412), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56204,15 +59737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 26, + ACTIONS(1414), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -56231,155 +59764,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23093] = 28, - ACTIONS(83), 1, + [24651] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1670), 1, - anon_sym_COMMA, - STATE(1188), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1733), 1, + anon_sym_RBRACK, + STATE(1299), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23191] = 14, - ACTIONS(83), 1, + [24748] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1613), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1735), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1611), 2, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(719), 2, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 8, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24845] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1423), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 16, + ACTIONS(1425), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23261] = 11, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_STAR_STAR, + [24892] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1431), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56392,384 +59963,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 17, + ACTIONS(1433), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23325] = 16, - ACTIONS(83), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1443), 1, + [24939] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1640), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1652), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1737), 1, + anon_sym_RPAREN, + STATE(1369), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(719), 2, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 7, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1471), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23399] = 4, - ACTIONS(516), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(512), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(514), 26, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [25036] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1344), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1739), 1, + anon_sym_RBRACK, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23449] = 26, - ACTIONS(83), 1, + [25133] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1741), 1, + anon_sym_RBRACE, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1505), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [23543] = 4, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1334), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1336), 26, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [25230] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1344), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1743), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23593] = 26, - ACTIONS(83), 1, + [25327] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1636), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1638), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1640), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1644), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1648), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1654), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1662), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1664), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1745), 1, + anon_sym_RBRACK, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1632), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1642), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1650), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1658), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1660), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1634), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1656), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1513), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [23687] = 28, + [25424] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1695), 1, - anon_sym_RPAREN, - STATE(1105), 1, + ACTIONS(1747), 1, + anon_sym_RBRACE, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23784] = 3, + [25521] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(548), 12, + ACTIONS(1441), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56782,14 +60421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(550), 26, + ACTIONS(1443), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56809,80 +60448,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23831] = 28, + [25568] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1697), 1, - anon_sym_RBRACK, - STATE(1105), 1, + ACTIONS(1749), 1, + anon_sym_RPAREN, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23928] = 3, + [25665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1453), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56895,104 +60534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1455), 26, + ACTIONS(1483), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23975] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1563), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1565), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24022] = 5, - ACTIONS(582), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(574), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(578), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(580), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57012,149 +60561,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24073] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1699), 1, - anon_sym_RBRACK, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [24170] = 28, + [25712] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1701), 1, + ACTIONS(1751), 1, anon_sym_RPAREN, - STATE(1105), 1, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24267] = 3, + [25809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1439), 12, + ACTIONS(1601), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57167,14 +60647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 26, + ACTIONS(1603), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57194,11 +60674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24314] = 3, + [25856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1419), 12, + ACTIONS(1489), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57211,14 +60691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1421), 26, + ACTIONS(1491), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57238,80 +60718,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24361] = 28, + [25903] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1703), 1, - anon_sym_RBRACE, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1753), 1, + anon_sym_RPAREN, + STATE(1385), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24458] = 3, + [26000] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1357), 12, + ACTIONS(1388), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57324,14 +60804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1359), 26, + ACTIONS(1390), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57351,11 +60831,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24505] = 3, + [26047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57368,14 +60848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 26, + ACTIONS(1570), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57395,11 +60875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24552] = 3, + [26094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 12, + ACTIONS(1368), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57412,14 +60892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1425), 26, + ACTIONS(1370), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57439,102 +60919,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24599] = 3, + [26141] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1755), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1571), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26238] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, + ACTIONS(1681), 1, anon_sym_AMP, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1573), 26, + ACTIONS(1677), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1510), 3, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26331] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24646] = 6, - ACTIONS(516), 1, - anon_sym_EQ, - ACTIONS(1705), 1, - anon_sym_in, - ACTIONS(1708), 1, - anon_sym_of, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1757), 1, + anon_sym_RBRACK, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(512), 11, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [26428] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1759), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24699] = 3, + [26525] = 4, + ACTIONS(1305), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57547,13 +61212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1409), 26, + ACTIONS(1235), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -57574,11 +61238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24746] = 3, + [26574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 12, + ACTIONS(1520), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57591,14 +61255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1429), 26, + ACTIONS(1522), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57618,80 +61282,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24793] = 28, + [26621] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1710), 1, - anon_sym_RPAREN, - STATE(1334), 1, - aux_sym_array_repeat1, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1761), 1, + anon_sym_RBRACE, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24890] = 3, + [26718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1579), 12, + ACTIONS(1524), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57704,14 +61368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1581), 26, + ACTIONS(1526), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57731,80 +61395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24937] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1712), 1, - anon_sym_RBRACK, - STATE(1318), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25034] = 3, + [26765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1575), 12, + ACTIONS(1528), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57817,14 +61412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 26, + ACTIONS(1530), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57844,149 +61439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25081] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1714), 1, - anon_sym_RPAREN, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25178] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1716), 1, - anon_sym_RBRACK, - STATE(1260), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [25275] = 3, + [26812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1463), 12, + ACTIONS(558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57999,14 +61456,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 26, + ACTIONS(560), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58026,11 +61483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25322] = 3, + [26859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1549), 12, + ACTIONS(1534), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58043,14 +61500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1551), 26, + ACTIONS(1536), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58070,11 +61527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25369] = 3, + [26906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1585), 12, + ACTIONS(1506), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58087,14 +61544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 26, + ACTIONS(1508), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58114,11 +61571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25416] = 3, + [26953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(578), 12, + ACTIONS(1516), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58131,14 +61588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(580), 26, + ACTIONS(1518), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58158,18 +61615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25463] = 5, - ACTIONS(1227), 1, - anon_sym_EQ, + [27000] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 12, + ACTIONS(1538), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58182,9 +61632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 21, + ACTIONS(1540), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58204,80 +61659,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25514] = 28, + [27047] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1718), 1, - anon_sym_RPAREN, - STATE(1105), 1, + ACTIONS(1763), 1, + anon_sym_SEMI, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25611] = 3, + [27144] = 5, + ACTIONS(572), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 12, + ACTIONS(564), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58290,13 +61750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1545), 26, - sym__automatic_semicolon, + ACTIONS(570), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -58317,55 +61774,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25658] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1205), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27195] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1765), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25705] = 3, + [27292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 12, + ACTIONS(1392), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58378,14 +61860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 26, + ACTIONS(1394), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58405,237 +61887,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25752] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(620), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(622), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27339] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25799] = 5, - ACTIONS(624), 1, - sym__automatic_semicolon, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1767), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(616), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(620), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(622), 23, - sym__ternary_qmark, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27436] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(705), 1, anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1769), 1, + anon_sym_RBRACK, + STATE(1330), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25850] = 26, + [27533] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1771), 1, + anon_sym_RPAREN, + STATE(1380), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1720), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [25943] = 28, + [27630] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1722), 1, - anon_sym_RBRACK, - STATE(1260), 1, - aux_sym_array_repeat1, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1773), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26040] = 3, + [27727] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(524), 12, + ACTIONS(1542), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58648,14 +62180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 26, + ACTIONS(1544), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58675,11 +62207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26087] = 3, + [27774] = 5, + ACTIONS(1246), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(568), 12, + ACTIONS(1301), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58692,14 +62231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(570), 26, - sym__automatic_semicolon, + ACTIONS(1235), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58719,106 +62253,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26134] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(602), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(604), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27825] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26181] = 5, - ACTIONS(528), 1, - sym__automatic_semicolon, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1775), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(520), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(524), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(526), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26232] = 5, - ACTIONS(572), 1, + [27922] = 5, + ACTIONS(582), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(564), 2, + ACTIONS(574), 2, anon_sym_else, anon_sym_while, - ACTIONS(568), 12, + ACTIONS(578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58831,7 +62344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(570), 23, + ACTIONS(580), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -58855,18 +62368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26283] = 5, - ACTIONS(516), 1, - anon_sym_EQ, + [27973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(512), 12, + ACTIONS(1546), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58879,9 +62385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 21, + ACTIONS(1548), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58901,149 +62412,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26334] = 28, + [28020] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1724), 1, + ACTIONS(1777), 1, anon_sym_RPAREN, - STATE(1105), 1, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [26431] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1726), 1, - anon_sym_RPAREN, - STATE(1323), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26528] = 3, + [28117] = 5, + ACTIONS(616), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1519), 12, + ACTIONS(608), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59056,13 +62503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1521), 26, - sym__automatic_semicolon, + ACTIONS(614), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59083,13 +62527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26575] = 4, - ACTIONS(1276), 1, - anon_sym_EQ, + [28168] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 12, + ACTIONS(568), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59102,13 +62544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 25, + ACTIONS(570), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59128,60 +62571,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26624] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1475), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1477), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [28215] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1615), 1, anon_sym_LBRACK, + ACTIONS(1617), 1, anon_sym_DOT, + ACTIONS(1619), 1, sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, + anon_sym_GT_GT, + ACTIONS(1681), 1, + anon_sym_AMP, + ACTIONS(1683), 1, anon_sym_AMP_AMP, + ACTIONS(1685), 1, anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, + anon_sym_CARET, + ACTIONS(1689), 1, + anon_sym_PIPE, + ACTIONS(1691), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1693), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1621), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1659), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1671), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1675), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(717), 2, + sym_template_string, + sym_arguments, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26671] = 4, - ACTIONS(1728), 1, - sym_regex_flags, + ACTIONS(1695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [28308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1489), 14, + ACTIONS(612), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59192,13 +62655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1491), 23, + ACTIONS(614), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59214,19 +62678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26720] = 5, - ACTIONS(606), 1, + [28355] = 5, + ACTIONS(630), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(598), 2, + ACTIONS(622), 2, anon_sym_else, anon_sym_while, - ACTIONS(602), 12, + ACTIONS(626), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59239,7 +62704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(604), 23, + ACTIONS(628), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -59263,11 +62728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26771] = 3, + [28406] = 5, + ACTIONS(640), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1361), 12, + ACTIONS(632), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(636), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59280,13 +62750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 26, - sym__automatic_semicolon, + ACTIONS(638), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -59307,11 +62774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26818] = 3, + [28457] = 6, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1708), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1525), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59324,17 +62797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 26, + ACTIONS(1429), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59351,11 +62821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26865] = 3, + [28510] = 5, + ACTIONS(1315), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1312), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59368,14 +62845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 26, - sym__automatic_semicolon, + ACTIONS(1235), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59395,199 +62867,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26912] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(588), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(590), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [28561] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1779), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26959] = 28, + [28658] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1730), 1, - anon_sym_RBRACK, - STATE(1105), 1, + ACTIONS(1781), 1, + anon_sym_SEMI, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27056] = 28, + [28755] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1732), 1, - anon_sym_RPAREN, - STATE(1105), 1, + ACTIONS(1783), 1, + anon_sym_SEMI, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27153] = 6, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1674), 1, - sym_optional_chain, + [28852] = 5, + ACTIONS(540), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(532), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(536), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59600,14 +63096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 23, - sym__automatic_semicolon, + ACTIONS(538), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59624,11 +63120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27206] = 3, + [28903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1559), 12, + ACTIONS(626), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59641,14 +63137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1561), 26, + ACTIONS(628), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59668,18 +63164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27253] = 5, - ACTIONS(1292), 1, - anon_sym_EQ, + [28950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1289), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 12, + ACTIONS(636), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59692,9 +63181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 21, + ACTIONS(638), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59714,11 +63208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27304] = 3, + [28997] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1537), 12, + ACTIONS(536), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59731,14 +63225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1539), 26, + ACTIONS(538), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59758,80 +63252,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27351] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [29044] = 5, + ACTIONS(550), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(542), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(546), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(548), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1734), 1, - anon_sym_COLON, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [27448] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1547), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59844,14 +63315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1531), 26, + ACTIONS(1429), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59871,80 +63342,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27495] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(709), 1, + [29142] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(546), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(548), 26, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - ACTIONS(1310), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1736), 1, - anon_sym_RPAREN, - STATE(1273), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [27592] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29189] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(558), 12, + ACTIONS(1558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59957,14 +63403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(560), 26, + ACTIONS(1560), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59984,11 +63430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27639] = 3, + [29236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1511), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60001,14 +63447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1513), 26, + ACTIONS(1564), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60028,11 +63474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27686] = 3, + [29283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1533), 12, + ACTIONS(1589), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60045,14 +63491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 26, + ACTIONS(1591), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60072,11 +63518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27733] = 3, + [29330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1507), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60089,14 +63535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 26, + ACTIONS(1235), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60116,16 +63562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27780] = 5, - ACTIONS(552), 1, - sym__automatic_semicolon, + [29377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(544), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(548), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60138,11 +63579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(550), 23, + ACTIONS(1564), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60162,294 +63606,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27831] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1738), 1, - anon_sym_RPAREN, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, + [29424] = 5, + ACTIONS(562), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(554), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(558), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27928] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(560), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1740), 1, - anon_sym_RBRACK, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29475] = 4, + ACTIONS(1725), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1435), 14, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [28025] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1437), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1375), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1742), 1, - anon_sym_RBRACE, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [28122] = 28, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [29524] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1744), 1, - anon_sym_RPAREN, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1785), 1, + anon_sym_RBRACK, + STATE(1330), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28219] = 5, - ACTIONS(1271), 1, - anon_sym_EQ, + [29621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1203), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60462,55 +63783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28270] = 5, - ACTIONS(592), 1, + ACTIONS(1564), 26, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(584), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(588), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(590), 23, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60530,11 +63810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28321] = 3, + [29668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1471), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60547,14 +63827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1473), 26, + ACTIONS(1564), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60574,10 +63854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28368] = 3, + [29715] = 5, + ACTIONS(1504), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(1787), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, @@ -60591,14 +63878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 26, - sym__automatic_semicolon, + ACTIONS(1499), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60618,18 +63900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28415] = 6, - ACTIONS(1276), 1, + [29766] = 5, + ACTIONS(1579), 1, anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_in, - ACTIONS(1287), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 11, + ACTIONS(1789), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1572), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60640,12 +63924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 24, - sym__automatic_semicolon, + ACTIONS(1574), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60665,126 +63946,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28468] = 3, + [29817] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1791), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1501), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29914] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1793), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28515] = 28, + [30011] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1746), 1, - anon_sym_RBRACE, - STATE(1105), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28612] = 4, - ACTIONS(1728), 1, - sym_regex_flags, + [30108] = 5, + ACTIONS(516), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1489), 13, + ACTIONS(1797), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60797,14 +64177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1491), 24, - sym__automatic_semicolon, + ACTIONS(514), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60820,88 +64195,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28661] = 26, - ACTIONS(83), 1, + [30159] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1799), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1684), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [28754] = 5, - ACTIONS(1341), 1, - anon_sym_EQ, + [30256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1748), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1334), 12, + ACTIONS(1581), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60914,9 +64285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 21, + ACTIONS(1583), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60936,18 +64312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28805] = 6, - ACTIONS(1355), 1, + [30303] = 5, + ACTIONS(1309), 1, anon_sym_EQ, - ACTIONS(1750), 1, - anon_sym_in, - ACTIONS(1753), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1348), 11, + ACTIONS(1307), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1233), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60958,12 +64336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 24, - sym__automatic_semicolon, + ACTIONS(1235), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60983,11 +64358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28858] = 3, + [30354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1479), 12, + ACTIONS(1585), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61000,14 +64375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1481), 26, + ACTIONS(1587), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61027,18 +64402,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28905] = 5, - ACTIONS(1355), 1, + [30401] = 4, + ACTIONS(1320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1348), 12, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61051,9 +64421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 21, + ACTIONS(1235), 25, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61073,11 +64447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28956] = 3, + [30450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1593), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61090,14 +64464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 26, + ACTIONS(1595), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61117,18 +64491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29003] = 6, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_of, - ACTIONS(1755), 1, - anon_sym_in, + [30497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1334), 11, + ACTIONS(1597), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61139,12 +64508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 24, + ACTIONS(1599), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61164,56 +64535,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29056] = 4, - ACTIONS(1280), 1, - anon_sym_EQ, + [30544] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1801), 1, + anon_sym_SEMI, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30641] = 28, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1344), 1, anon_sym_LBRACK, + ACTIONS(1346), 1, anon_sym_DOT, + ACTIONS(1348), 1, sym_optional_chain, + ACTIONS(1451), 1, anon_sym_AMP_AMP, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1803), 1, + anon_sym_SEMI, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1457), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1465), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1449), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29105] = 3, + [30738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1467), 12, + ACTIONS(1605), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61226,14 +64690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1469), 26, + ACTIONS(1607), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61253,16 +64717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29152] = 5, - ACTIONS(562), 1, - sym__automatic_semicolon, + [30785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(554), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(558), 12, + ACTIONS(1550), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61275,11 +64734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(560), 23, + ACTIONS(1552), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61299,11 +64761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29203] = 3, + [30832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 12, + ACTIONS(1372), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61316,14 +64778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1417), 26, + ACTIONS(1374), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61343,78 +64805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29250] = 26, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, - anon_sym_GT_GT, - ACTIONS(1605), 1, - anon_sym_AMP, - ACTIONS(1607), 1, - anon_sym_CARET, - ACTIONS(1609), 1, - anon_sym_PIPE, - ACTIONS(1613), 1, - anon_sym_PERCENT, - ACTIONS(1615), 1, - anon_sym_STAR_STAR, - ACTIONS(1623), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1451), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1593), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1603), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1611), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1621), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1541), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1595), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1617), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29343] = 3, + [30879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1376), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61427,14 +64822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 26, + ACTIONS(1378), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61454,80 +64849,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29390] = 28, + [30926] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, + ACTIONS(1727), 1, anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_RPAREN, - STATE(1105), 1, + ACTIONS(1805), 1, + anon_sym_RBRACK, + STATE(1112), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29487] = 3, + [31023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1457), 12, + ACTIONS(1380), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61540,14 +64935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1459), 26, + ACTIONS(1382), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61567,80 +64962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29534] = 28, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, - anon_sym_GT_GT, - ACTIONS(1383), 1, - anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, - anon_sym_PERCENT, - ACTIONS(1393), 1, - anon_sym_STAR_STAR, - ACTIONS(1401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, - sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1760), 1, - anon_sym_RPAREN, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1369), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1381), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1389), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1397), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1399), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1373), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1395), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29631] = 3, + [31070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1411), 12, + ACTIONS(1554), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61653,14 +64979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 26, + ACTIONS(1556), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61680,11 +65006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29678] = 3, + [31117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1384), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61697,14 +65023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 26, + ACTIONS(1386), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61724,80 +65050,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29725] = 28, + [31164] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1377), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1693), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_RPAREN, - STATE(1105), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29822] = 3, + ACTIONS(1807), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [31257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1485), 12, + ACTIONS(1512), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61810,14 +65134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 26, + ACTIONS(1514), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61837,11 +65161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29869] = 3, + [31304] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1567), 12, + ACTIONS(1396), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61854,14 +65178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1569), 26, + ACTIONS(1398), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61881,11 +65205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29916] = 3, + [31351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1555), 12, + ACTIONS(1400), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61898,14 +65222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1557), 26, + ACTIONS(1402), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61925,15 +65249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29963] = 5, - ACTIONS(1764), 1, - anon_sym_LPAREN, - ACTIONS(1767), 1, - anon_sym_COLON, + [31398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 12, + ACTIONS(1404), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61946,11 +65266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 23, + ACTIONS(1406), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61970,846 +65293,837 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30013] = 26, + [31445] = 28, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1809), 1, + anon_sym_COLON, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1583), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30105] = 26, - ACTIONS(83), 1, + [31542] = 28, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1597), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1599), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1607), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1609), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1479), 1, sym__ternary_qmark, + ACTIONS(1727), 1, + anon_sym_COMMA, + ACTIONS(1811), 1, + anon_sym_RPAREN, + STATE(1112), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30197] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [31639] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(578), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(580), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, - anon_sym_GT_GT, - ACTIONS(1781), 1, - anon_sym_AMP, - ACTIONS(1783), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1409), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1795), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1771), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1793), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30289] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [31686] = 21, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, - anon_sym_GT_GT, - ACTIONS(1781), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1487), 1, anon_sym_PIPE, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, - anon_sym_STAR_STAR, - ACTIONS(1799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - sym__ternary_qmark, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, + anon_sym_PERCENT, + ACTIONS(1827), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1531), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30381] = 24, + ACTIONS(1485), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [31768] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + ACTIONS(1835), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 4, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - [30469] = 26, - ACTIONS(402), 1, + [31860] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, - anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1693), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1495), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + ACTIONS(1837), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1667), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1673), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30561] = 18, + [31952] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1789), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1849), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1566), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + ACTIONS(1831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 9, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [30637] = 26, + [32044] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1363), 2, + ACTIONS(1570), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30729] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [32136] = 6, + ACTIONS(1277), 1, + anon_sym_EQ, + ACTIONS(1327), 1, + anon_sym_in, + ACTIONS(1330), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1233), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1235), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [32188] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1553), 2, + ACTIONS(1493), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30821] = 26, + [32280] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1371), 2, + ACTIONS(1447), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30913] = 26, + [32372] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1483), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1805), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31005] = 11, + [32464] = 16, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1791), 1, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1825), 1, + anon_sym_PERCENT, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1813), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [31067] = 5, - ACTIONS(1807), 1, - anon_sym_LPAREN, - ACTIONS(1810), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1427), 12, - anon_sym_STAR, + ACTIONS(1823), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1429), 23, - sym__automatic_semicolon, + ACTIONS(1485), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31117] = 13, + [32536] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 10, + ACTIONS(1487), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -62818,9 +66132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 14, + ACTIONS(1485), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -62829,233 +66144,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31183] = 22, + [32598] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 6, + ACTIONS(1485), 6, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [31267] = 21, + [32682] = 23, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 7, + ACTIONS(1485), 5, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [31349] = 5, - ACTIONS(1255), 1, - anon_sym_EQ, + [32768] = 14, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1825), 1, + anon_sym_PERCENT, + ACTIONS(1827), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1297), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1203), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1813), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1823), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 21, + ACTIONS(1485), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [31399] = 20, + [32836] = 20, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1517), 2, + ACTIONS(1487), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 7, + ACTIONS(1485), 7, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -63063,1097 +66390,1370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [31479] = 14, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [32916] = 5, + ACTIONS(1277), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1324), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1233), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1235), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1789), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1791), 1, anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [32966] = 5, + ACTIONS(1851), 1, + anon_sym_LPAREN, + ACTIONS(1854), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1396), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1787), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 14, + ACTIONS(1398), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31547] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33016] = 13, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1777), 1, - anon_sym_GT_GT, - ACTIONS(1781), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1795), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1487), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 5, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [31633] = 22, + anon_sym_instanceof, + [33082] = 11, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1777), 1, - anon_sym_GT_GT, - ACTIONS(1781), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1795), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1487), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1515), 6, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [31717] = 11, + anon_sym_instanceof, + [33144] = 18, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1791), 1, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1825), 1, + anon_sym_PERCENT, + ACTIONS(1827), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(542), 2, + ACTIONS(1813), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1823), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 12, - anon_sym_STAR, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1487), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 15, + ACTIONS(1485), 9, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [31779] = 16, + [33220] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1789), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + ACTIONS(1831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 7, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 12, + ACTIONS(1829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 4, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [31851] = 26, + [33308] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1513), 2, + ACTIONS(1532), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31943] = 26, + [33400] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1536), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1679), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32035] = 26, + [33492] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1505), 2, + ACTIONS(1583), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32127] = 26, + [33584] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1595), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1630), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32219] = 27, - ACTIONS(83), 1, + [33676] = 26, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1445), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1449), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1597), 1, - anon_sym_AMP_AMP, - ACTIONS(1599), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1601), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1605), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1607), 1, - anon_sym_CARET, - ACTIONS(1609), 1, - anon_sym_PIPE, - ACTIONS(1613), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1615), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1623), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1625), 1, + ACTIONS(1849), 1, sym__ternary_qmark, - ACTIONS(1812), 1, - anon_sym_SEMI, - ACTIONS(1814), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1451), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1593), 2, + ACTIONS(1599), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1611), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1619), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1621), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1595), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32313] = 26, + [33768] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1431), 2, + ACTIONS(1495), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32405] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [33860] = 6, + ACTIONS(1504), 1, + anon_sym_EQ, + ACTIONS(1787), 1, + anon_sym_of, + ACTIONS(1856), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1497), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1499), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33912] = 6, + ACTIONS(1579), 1, + anon_sym_EQ, + ACTIONS(1789), 1, + anon_sym_of, + ACTIONS(1859), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1781), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1791), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [33964] = 26, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, + anon_sym_PERCENT, + ACTIONS(1827), 1, + anon_sym_STAR_STAR, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1483), 2, + ACTIONS(1609), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32497] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [34056] = 6, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1797), 1, + anon_sym_of, + ACTIONS(1862), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(512), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(514), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1312), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1773), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34108] = 27, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1615), 1, + anon_sym_LBRACK, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(1619), 1, + sym_optional_chain, + ACTIONS(1663), 1, + anon_sym_PERCENT, + ACTIONS(1665), 1, + anon_sym_STAR_STAR, + ACTIONS(1669), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1681), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1683), 1, + anon_sym_AMP_AMP, + ACTIONS(1685), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1687), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1689), 1, anon_sym_PIPE, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, - anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1691), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1693), 1, sym__ternary_qmark, + ACTIONS(1865), 1, + anon_sym_SEMI, + ACTIONS(1867), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1621), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1487), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1769), 2, + ACTIONS(1659), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1671), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1675), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1677), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1667), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1673), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34202] = 5, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1872), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1233), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1235), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32589] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34252] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, + ACTIONS(1451), 1, + anon_sym_AMP_AMP, + ACTIONS(1453), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1459), 1, + anon_sym_AMP, + ACTIONS(1461), 1, + anon_sym_CARET, + ACTIONS(1463), 1, + anon_sym_PIPE, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1816), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + ACTIONS(1715), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [32668] = 24, + [34344] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1455), 1, + anon_sym_GT_GT, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1463), 1, anon_sym_PIPE, + ACTIONS(1467), 1, + anon_sym_PERCENT, + ACTIONS(1469), 1, + anon_sym_STAR_STAR, + ACTIONS(1477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1479), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + ACTIONS(1723), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1515), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(1818), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32755] = 22, + [34436] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 5, + ACTIONS(1485), 6, sym__ternary_qmark, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [32838] = 26, + [34520] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1495), 1, + ACTIONS(1583), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32929] = 13, + [34611] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1849), 1, + sym__ternary_qmark, + ACTIONS(1908), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(542), 2, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1823), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1831), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 10, + ACTIONS(1815), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1829), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34702] = 6, + ACTIONS(1307), 1, + anon_sym_COMMA, + ACTIONS(1312), 1, + anon_sym_RBRACK, + ACTIONS(1315), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1233), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -64162,175 +67762,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 13, + ACTIONS(1235), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34753] = 27, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1695), 1, + anon_sym_of, + ACTIONS(1878), 1, + anon_sym_AMP_AMP, + ACTIONS(1880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_CARET, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1906), 1, + sym__ternary_qmark, + ACTIONS(1910), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1874), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1876), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1884), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1900), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1902), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1898), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [32994] = 26, + [34846] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1850), 1, - anon_sym_COLON, + ACTIONS(1913), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33085] = 26, + [34937] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1451), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1453), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1455), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1459), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1461), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1463), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1467), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1469), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1477), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1479), 1, sym__ternary_qmark, - ACTIONS(1852), 1, - anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1457), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1465), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1449), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33176] = 11, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, + [35028] = 6, + ACTIONS(1501), 1, + anon_sym_RBRACK, + ACTIONS(1504), 1, + anon_sym_EQ, + ACTIONS(1787), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, + ACTIONS(1497), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64343,583 +68006,621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 14, + ACTIONS(1499), 21, sym__ternary_qmark, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33237] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [35079] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1553), 1, - anon_sym_of, - ACTIONS(1820), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1839), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1849), 1, sym__ternary_qmark, + ACTIONS(1917), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33328] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, + [35170] = 6, + ACTIONS(1576), 1, + anon_sym_RBRACK, + ACTIONS(1579), 1, + anon_sym_EQ, + ACTIONS(1789), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1574), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1312), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, anon_sym_DOT, - ACTIONS(1316), 1, sym_optional_chain, - ACTIONS(1431), 1, - anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1846), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, - sym__ternary_qmark, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [35221] = 6, + ACTIONS(516), 1, + anon_sym_EQ, + ACTIONS(1420), 1, + anon_sym_RBRACK, + ACTIONS(1797), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(512), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1822), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1824), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(514), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1818), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1830), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33419] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [35272] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1684), 1, - anon_sym_of, - ACTIONS(1820), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1839), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1849), 1, sym__ternary_qmark, - ACTIONS(1854), 1, - anon_sym_in, + ACTIONS(1919), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1818), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1822), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1830), 3, + ACTIONS(1815), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33512] = 21, + [35363] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1820), 1, + ACTIONS(1566), 1, + anon_sym_of, + ACTIONS(1878), 1, + anon_sym_AMP_AMP, + ACTIONS(1880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_CARET, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1840), 1, - anon_sym_AMP, + ACTIONS(1904), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1906), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [33593] = 26, + [35454] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1483), 1, + ACTIONS(1570), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33684] = 26, + [35545] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1385), 1, - anon_sym_CARET, - ACTIONS(1387), 1, - anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1849), 1, sym__ternary_qmark, - ACTIONS(1857), 1, - anon_sym_RBRACK, + ACTIONS(1921), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33775] = 26, + [35636] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1487), 1, + ACTIONS(1447), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33866] = 26, + [35727] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1363), 1, + ACTIONS(1483), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33957] = 14, + [35818] = 16, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1824), 2, + ACTIONS(1884), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1517), 8, + ACTIONS(1487), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 13, + ACTIONS(1485), 11, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -64927,17 +68628,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34024] = 6, - ACTIONS(1338), 1, - anon_sym_RBRACK, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_COMMA, + [35889] = 11, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1334), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64950,1164 +68663,1248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 21, + ACTIONS(1485), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [35950] = 22, + ACTIONS(402), 1, anon_sym_BQUOTE, - [34075] = 6, - ACTIONS(1352), 1, - anon_sym_RBRACK, - ACTIONS(1355), 1, - anon_sym_EQ, - ACTIONS(1753), 1, - anon_sym_COMMA, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_CARET, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1348), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1874), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1884), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1350), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1876), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34126] = 18, + ACTIONS(1485), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [36033] = 23, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, + ACTIONS(1878), 1, + anon_sym_AMP_AMP, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_CARET, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, + ACTIONS(1900), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1902), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1517), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 8, + ACTIONS(1485), 4, sym__ternary_qmark, anon_sym_of, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [34201] = 6, - ACTIONS(516), 1, - anon_sym_EQ, - ACTIONS(1343), 1, - anon_sym_RBRACK, - ACTIONS(1708), 1, - anon_sym_COMMA, + [36118] = 14, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(512), 12, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1874), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(514), 21, + ACTIONS(1485), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34252] = 26, + [36185] = 20, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1531), 1, - anon_sym_of, - ACTIONS(1820), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1487), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1874), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1884), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1900), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1902), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1876), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 6, + sym__ternary_qmark, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(1838), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, anon_sym_CARET, - ACTIONS(1844), 1, - anon_sym_PIPE, - ACTIONS(1846), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, - sym__ternary_qmark, + [36264] = 21, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34343] = 26, + ACTIONS(1485), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [36345] = 22, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1487), 1, + anon_sym_PIPE, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - sym__ternary_qmark, - ACTIONS(1859), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1900), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1902), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1876), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1485), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [36428] = 13, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1874), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1487), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1485), 13, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [36493] = 11, + ACTIONS(402), 1, + anon_sym_BQUOTE, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(1344), 1, + anon_sym_LBRACK, + ACTIONS(1346), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + sym_optional_chain, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1487), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34434] = 22, + [36554] = 18, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1517), 1, - anon_sym_PIPE, - ACTIONS(1820), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, - anon_sym_CARET, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1834), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 5, + ACTIONS(1487), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1485), 8, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [34517] = 26, + [36629] = 24, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - sym__ternary_qmark, - ACTIONS(1861), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1485), 3, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34608] = 26, + [36716] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1371), 1, + ACTIONS(1532), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34699] = 23, + [36807] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1536), 1, + anon_sym_of, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1840), 1, + ACTIONS(1880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1906), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1515), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [34784] = 26, + [36898] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1409), 1, - anon_sym_of, - ACTIONS(1820), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1839), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1849), 1, sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34875] = 26, + [36989] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1583), 1, + ACTIONS(1595), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34966] = 26, + [37080] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1505), 1, + ACTIONS(1599), 1, anon_sym_of, - ACTIONS(1820), 1, - anon_sym_GT_GT, - ACTIONS(1826), 1, - anon_sym_PERCENT, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, + ACTIONS(1882), 1, + anon_sym_GT_GT, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1894), 1, + anon_sym_PERCENT, + ACTIONS(1896), 1, + anon_sym_STAR_STAR, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1906), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35057] = 26, + [37171] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, + ACTIONS(1609), 1, + anon_sym_of, + ACTIONS(1878), 1, anon_sym_AMP_AMP, - ACTIONS(1775), 1, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1783), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1785), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1906), 1, sym__ternary_qmark, - ACTIONS(1863), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35148] = 26, + [37262] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, - ACTIONS(1865), 1, + ACTIONS(1925), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35239] = 11, + [37353] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1828), 1, - anon_sym_STAR_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1515), 14, - sym__ternary_qmark, + ACTIONS(1495), 1, anon_sym_of, + ACTIONS(1878), 1, anon_sym_AMP_AMP, + ACTIONS(1880), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [35300] = 26, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1312), 1, - anon_sym_LBRACK, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(1316), 1, - sym_optional_chain, - ACTIONS(1375), 1, - anon_sym_AMP_AMP, - ACTIONS(1377), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1383), 1, + ACTIONS(1886), 1, anon_sym_AMP, - ACTIONS(1385), 1, + ACTIONS(1888), 1, anon_sym_CARET, - ACTIONS(1387), 1, + ACTIONS(1890), 1, anon_sym_PIPE, - ACTIONS(1391), 1, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1393), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, - ACTIONS(1401), 1, + ACTIONS(1904), 1, anon_sym_QMARK_QMARK, - ACTIONS(1403), 1, + ACTIONS(1906), 1, sym__ternary_qmark, - ACTIONS(1867), 1, - anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1369), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1381), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1389), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1397), 2, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1399), 2, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1373), 3, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1395), 3, + ACTIONS(1898), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35391] = 16, + [37444] = 26, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1820), 1, + ACTIONS(1493), 1, + anon_sym_of, + ACTIONS(1878), 1, + anon_sym_AMP_AMP, + ACTIONS(1880), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1882), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1886), 1, + anon_sym_AMP, + ACTIONS(1888), 1, + anon_sym_CARET, + ACTIONS(1890), 1, + anon_sym_PIPE, + ACTIONS(1894), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1896), 1, anon_sym_STAR_STAR, + ACTIONS(1904), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1906), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1874), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1884), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(542), 2, - sym_template_string, - sym_arguments, - ACTIONS(1517), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 11, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1902), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [35462] = 6, - ACTIONS(1269), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - anon_sym_RBRACK, - ACTIONS(1292), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 12, - anon_sym_STAR, + STATE(565), 2, + sym_template_string, + sym_arguments, + ACTIONS(1876), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1205), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1898), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35513] = 26, - ACTIONS(402), 1, + [37535] = 25, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1613), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1615), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1617), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1619), 1, sym_optional_chain, - ACTIONS(1513), 1, - anon_sym_of, - ACTIONS(1820), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1826), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1828), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1839), 1, anon_sym_AMP_AMP, - ACTIONS(1838), 1, + ACTIONS(1841), 1, anon_sym_PIPE_PIPE, - ACTIONS(1840), 1, - anon_sym_AMP, - ACTIONS(1842), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1844), 1, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(1846), 1, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1848), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1822), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1824), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1832), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1834), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(717), 2, sym_template_string, sym_arguments, - ACTIONS(1818), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1830), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35604] = 24, + [37623] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66118,173 +69915,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1931), 1, anon_sym_RBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1875), 1, + ACTIONS(1935), 1, anon_sym_async, - ACTIONS(1879), 1, + ACTIONS(1939), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1347), 1, - aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, + STATE(1357), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1881), 2, + ACTIONS(1941), 2, anon_sym_get, anon_sym_set, - ACTIONS(1869), 3, + ACTIONS(1927), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1343), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1345), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1615), 3, + STATE(1356), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35690] = 25, - ACTIONS(83), 1, - anon_sym_BQUOTE, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(1445), 1, - anon_sym_LBRACK, - ACTIONS(1447), 1, - anon_sym_DOT, - ACTIONS(1449), 1, - sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, - anon_sym_GT_GT, - ACTIONS(1781), 1, - anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, - anon_sym_PERCENT, - ACTIONS(1791), 1, - anon_sym_STAR_STAR, - ACTIONS(1799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - sym__ternary_qmark, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1318), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1795), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(719), 2, - sym_template_string, - sym_arguments, - ACTIONS(1771), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1793), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [35778] = 4, - ACTIONS(1300), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1203), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1205), 22, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35824] = 6, - ACTIONS(1227), 1, + [37709] = 6, + ACTIONS(1246), 1, anon_sym_EQ, - ACTIONS(1284), 1, + ACTIONS(1327), 1, anon_sym_in, - ACTIONS(1287), 1, + ACTIONS(1330), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1203), 11, + ACTIONS(1233), 11, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -66296,7 +69988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1205), 21, + ACTIONS(1235), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66318,7 +70010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [35874] = 24, + [37759] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66329,58 +70021,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1885), 1, + ACTIONS(1945), 1, anon_sym_RBRACE, - ACTIONS(1887), 1, + ACTIONS(1947), 1, anon_sym_async, - ACTIONS(1889), 1, + ACTIONS(1949), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1307), 1, - aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, + STATE(1357), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1891), 2, + ACTIONS(1951), 2, anon_sym_get, anon_sym_set, - ACTIONS(1883), 3, + ACTIONS(1943), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1306), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1343), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1615), 3, + STATE(1356), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [35960] = 24, + [37845] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66391,165 +70083,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1895), 1, + ACTIONS(1955), 1, anon_sym_RBRACE, - ACTIONS(1897), 1, + ACTIONS(1957), 1, anon_sym_async, - ACTIONS(1899), 1, + ACTIONS(1959), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1307), 1, - aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, + STATE(1357), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1901), 2, + ACTIONS(1961), 2, anon_sym_get, anon_sym_set, - ACTIONS(1893), 3, + ACTIONS(1953), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1306), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1343), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1615), 3, + STATE(1356), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36046] = 6, - ACTIONS(516), 1, - anon_sym_EQ, - ACTIONS(1705), 1, - anon_sym_in, - ACTIONS(1708), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(512), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(514), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [36096] = 25, + [37931] = 25, ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1310), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1312), 1, + ACTIONS(1344), 1, anon_sym_LBRACK, - ACTIONS(1314), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(1316), 1, + ACTIONS(1348), 1, sym_optional_chain, - ACTIONS(1773), 1, - anon_sym_AMP_AMP, - ACTIONS(1775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1777), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1781), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1783), 1, - anon_sym_CARET, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1789), 1, + ACTIONS(1825), 1, anon_sym_PERCENT, - ACTIONS(1791), 1, + ACTIONS(1827), 1, anon_sym_STAR_STAR, - ACTIONS(1799), 1, + ACTIONS(1839), 1, + anon_sym_AMP_AMP, + ACTIONS(1841), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1845), 1, + anon_sym_PIPE, + ACTIONS(1847), 1, anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, + ACTIONS(1849), 1, sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1354), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1769), 2, + ACTIONS(1813), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1779), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1787), 2, + ACTIONS(1823), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1795), 2, + ACTIONS(1831), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 2, + ACTIONS(1833), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(542), 2, + STATE(565), 2, sym_template_string, sym_arguments, - ACTIONS(1771), 3, + ACTIONS(1815), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1793), 3, + ACTIONS(1829), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36184] = 24, + [38019] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66560,102 +70208,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1905), 1, + ACTIONS(1965), 1, anon_sym_RBRACE, - ACTIONS(1907), 1, + ACTIONS(1967), 1, anon_sym_async, - ACTIONS(1909), 1, + ACTIONS(1969), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1307), 1, + STATE(1317), 1, aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1911), 2, + ACTIONS(1971), 2, anon_sym_get, anon_sym_set, - ACTIONS(1903), 3, + ACTIONS(1963), 3, anon_sym_export, anon_sym_let, - sym_identifier, - STATE(1306), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1343), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1346), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1615), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [36270] = 6, - ACTIONS(1355), 1, - anon_sym_EQ, - ACTIONS(1750), 1, - anon_sym_in, - ACTIONS(1753), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1348), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1350), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [36320] = 24, + sym_identifier, + STATE(1303), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1312), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1313), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1701), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [38105] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66666,69 +70270,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1915), 1, + ACTIONS(1975), 1, anon_sym_RBRACE, - ACTIONS(1917), 1, + ACTIONS(1977), 1, anon_sym_async, - ACTIONS(1919), 1, + ACTIONS(1979), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1307), 1, - aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, + STATE(1357), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1921), 2, + ACTIONS(1981), 2, anon_sym_get, anon_sym_set, - ACTIONS(1913), 3, + ACTIONS(1973), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1306), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1343), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1615), 3, + STATE(1356), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36406] = 6, - ACTIONS(1341), 1, - anon_sym_EQ, - ACTIONS(1748), 1, - anon_sym_of, - ACTIONS(1755), 1, - anon_sym_in, + [38191] = 4, + ACTIONS(1439), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1334), 11, + ACTIONS(1435), 14, anon_sym_STAR, + anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -66739,7 +70341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1336), 21, + anon_sym_instanceof, + ACTIONS(1437), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66757,11 +70360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36456] = 24, + [38237] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66772,129 +70374,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1985), 1, anon_sym_RBRACE, - ACTIONS(1927), 1, + ACTIONS(1987), 1, anon_sym_async, - ACTIONS(1929), 1, + ACTIONS(1989), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1307), 1, - aux_sym_object_repeat1, - STATE(1348), 1, + STATE(1318), 1, aux_sym_object_pattern_repeat1, + STATE(1357), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1931), 2, + ACTIONS(1991), 2, anon_sym_get, anon_sym_set, - ACTIONS(1923), 3, + ACTIONS(1983), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1306), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1343), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1615), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [36542] = 24, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(101), 1, - anon_sym_STAR, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(113), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(121), 1, - aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_LBRACK, - ACTIONS(1935), 1, - anon_sym_RBRACE, - ACTIONS(1937), 1, - anon_sym_async, - ACTIONS(1939), 1, - anon_sym_static, - STATE(885), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, - STATE(1347), 1, - aux_sym_object_repeat1, - STATE(1348), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1877), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1941), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1933), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1343), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1345), 3, + STATE(1356), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1346), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1615), 3, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36628] = 4, - ACTIONS(1493), 1, - sym_regex_flags, + [38323] = 4, + ACTIONS(1334), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1489), 14, + ACTIONS(1233), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -66905,10 +70444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1491), 20, + ACTIONS(1235), 22, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -66924,10 +70463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36674] = 21, + [38369] = 21, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -66936,756 +70476,673 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(1948), 1, + ACTIONS(1998), 1, anon_sym_async, - ACTIONS(1950), 1, + ACTIONS(2000), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, + ACTIONS(1937), 2, sym_number, sym_private_property_identifier, - ACTIONS(1945), 2, + ACTIONS(1995), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1952), 2, + ACTIONS(2002), 2, anon_sym_get, anon_sym_set, - ACTIONS(1943), 3, + ACTIONS(1993), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1346), 3, + STATE(1313), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1568), 3, + STATE(1609), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1579), 3, + STATE(1611), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1615), 3, + STATE(1701), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [36752] = 23, + [38447] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1958), 1, + ACTIONS(2008), 1, anon_sym_RBRACE, - ACTIONS(1960), 1, + ACTIONS(2010), 1, anon_sym_SEMI, - ACTIONS(1962), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - STATE(842), 1, + STATE(881), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [36829] = 23, + [38524] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(1980), 1, + ACTIONS(2030), 1, anon_sym_RBRACE, - ACTIONS(1982), 1, + ACTIONS(2032), 1, anon_sym_SEMI, - STATE(848), 1, + STATE(885), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [36906] = 23, + [38601] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(1982), 1, - anon_sym_SEMI, - ACTIONS(1984), 1, + ACTIONS(2034), 1, anon_sym_RBRACE, - STATE(848), 1, + ACTIONS(2036), 1, + anon_sym_SEMI, + STATE(877), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [36983] = 23, + [38678] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(1982), 1, - anon_sym_SEMI, - ACTIONS(1986), 1, + ACTIONS(2038), 1, anon_sym_RBRACE, - STATE(848), 1, + ACTIONS(2040), 1, + anon_sym_SEMI, + STATE(884), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37060] = 23, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(1956), 1, + [38755] = 23, + ACTIONS(2045), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2048), 1, + anon_sym_RBRACE, + ACTIONS(2050), 1, + anon_sym_SEMI, + ACTIONS(2053), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2056), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2059), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2062), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2065), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2071), 1, + anon_sym_AT, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2077), 1, aux_sym_method_definition_token1, - ACTIONS(1982), 1, - anon_sym_SEMI, - ACTIONS(1988), 1, - anon_sym_RBRACE, - STATE(848), 1, + STATE(881), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2068), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2080), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2042), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37137] = 23, + [38832] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(1990), 1, + ACTIONS(2083), 1, anon_sym_RBRACE, - ACTIONS(1992), 1, + ACTIONS(2085), 1, anon_sym_SEMI, - STATE(844), 1, + STATE(883), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37214] = 23, + [38909] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2010), 1, + anon_sym_SEMI, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(1994), 1, + ACTIONS(2087), 1, anon_sym_RBRACE, - ACTIONS(1996), 1, - anon_sym_SEMI, - STATE(843), 1, + STATE(881), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37291] = 23, - ACTIONS(2001), 1, - anon_sym_STAR, - ACTIONS(2004), 1, - anon_sym_RBRACE, + [38986] = 23, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(2006), 1, + anon_sym_STAR, + ACTIONS(2010), 1, anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, ACTIONS(2012), 1, + anon_sym_LBRACK, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(2015), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(2021), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(2027), 1, - anon_sym_AT, - ACTIONS(2030), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(2033), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - STATE(848), 1, + ACTIONS(2089), 1, + anon_sym_RBRACE, + STATE(881), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2024), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(2036), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1998), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37368] = 23, + [39063] = 23, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1956), 1, + ACTIONS(2006), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2010), 1, + anon_sym_SEMI, + ACTIONS(2012), 1, anon_sym_LBRACK, - ACTIONS(1964), 1, + ACTIONS(2014), 1, sym_glimmer_opening_tag, - ACTIONS(1966), 1, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, + ACTIONS(2020), 1, anon_sym_async, - ACTIONS(1974), 1, + ACTIONS(2024), 1, anon_sym_static, - ACTIONS(1976), 1, + ACTIONS(2026), 1, aux_sym_method_definition_token1, - ACTIONS(2039), 1, + ACTIONS(2091), 1, anon_sym_RBRACE, - ACTIONS(2041), 1, - anon_sym_SEMI, - STATE(845), 1, + STATE(881), 1, aux_sym_class_body_repeat1, - STATE(889), 1, + STATE(915), 1, aux_sym_export_statement_repeat1, - STATE(932), 1, - sym_glimmer_template, - STATE(934), 1, + STATE(968), 1, sym_class_static_block, - STATE(935), 1, + STATE(973), 1, sym_method_definition, - STATE(977), 1, + STATE(975), 1, + sym_glimmer_template, + STATE(1002), 1, sym_decorator, - STATE(1497), 1, + STATE(1475), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1972), 2, + ACTIONS(2022), 2, sym_number, sym_private_property_identifier, - ACTIONS(1978), 2, + ACTIONS(2028), 2, anon_sym_get, anon_sym_set, - ACTIONS(1954), 3, + ACTIONS(2004), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1126), 3, + STATE(1129), 3, sym_string, sym__property_name, sym_computed_property_name, - [37445] = 20, + [39140] = 20, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, anon_sym_STAR, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(713), 1, + ACTIONS(709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2045), 1, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(2047), 1, + ACTIONS(2097), 1, anon_sym_RBRACE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2051), 1, + ACTIONS(2101), 1, anon_sym_async, - ACTIONS(2055), 1, + ACTIONS(2105), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1352), 1, + STATE(1340), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2053), 2, + ACTIONS(2103), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2107), 2, anon_sym_get, anon_sym_set, - ACTIONS(2043), 3, + ACTIONS(2093), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1302), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1350), 3, + STATE(1332), 3, sym_spread_element, sym_method_definition, sym_pair, - [37515] = 14, - ACTIONS(682), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(2063), 1, - anon_sym_RBRACE, - STATE(1310), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2065), 2, - sym_number, - sym_private_property_identifier, - STATE(1305), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1615), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1628), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2059), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [37572] = 14, - ACTIONS(682), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(1873), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(2069), 1, - anon_sym_RBRACE, - STATE(1348), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2065), 2, - sym_number, - sym_private_property_identifier, - STATE(1343), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1615), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1628), 3, + STATE(1386), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2067), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [37629] = 18, + [39210] = 18, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, anon_sym_STAR, ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(713), 1, + ACTIONS(709), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2113), 1, anon_sym_async, - ACTIONS(2077), 1, + ACTIONS(2115), 1, anon_sym_static, - STATE(885), 1, + STATE(917), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2053), 2, + ACTIONS(2103), 2, sym_number, sym_private_property_identifier, - ACTIONS(2073), 2, + ACTIONS(2111), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2079), 2, + ACTIONS(2117), 2, anon_sym_get, anon_sym_set, - ACTIONS(2071), 3, + ACTIONS(2109), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1302), 3, + STATE(1386), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1579), 3, + STATE(1611), 3, sym_spread_element, sym_method_definition, sym_pair, - [37694] = 12, - ACTIONS(682), 1, + [39275] = 14, + ACTIONS(680), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(1222), 1, + ACTIONS(1929), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1933), 1, anon_sym_LBRACK, + ACTIONS(2121), 1, + anon_sym_COMMA, + ACTIONS(2123), 1, + anon_sym_RBRACE, + STATE(1318), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2065), 2, + ACTIONS(2125), 2, sym_number, sym_private_property_identifier, - ACTIONS(2083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1568), 3, + STATE(1303), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1615), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1628), 3, + STATE(1700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2081), 7, + STATE(1701), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2119), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -67693,618 +71150,618 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [37746] = 15, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [39332] = 14, + ACTIONS(680), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, - anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym_EQ, - STATE(1300), 1, + ACTIONS(2121), 1, + anon_sym_COMMA, + ACTIONS(2129), 1, + anon_sym_RBRACE, + STATE(1358), 1, aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(2125), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1580), 3, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + STATE(1701), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2127), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [37802] = 16, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + anon_sym_get, + anon_sym_set, + [39389] = 12, + ACTIONS(680), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, - anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, - anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2091), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(2125), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1580), 3, + ACTIONS(2133), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1609), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1700), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + STATE(1701), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2131), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [37860] = 16, + anon_sym_get, + anon_sym_set, + [39441] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [37918] = 15, + [39499] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2093), 1, + ACTIONS(2141), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [37974] = 16, + [39555] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(811), 1, + ACTIONS(843), 1, anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, - anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1370), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38032] = 15, + [39611] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, + ACTIONS(843), 1, anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(881), 1, + anon_sym_async, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1370), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38088] = 16, + [39669] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(839), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, - anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + ACTIONS(2143), 1, + anon_sym_RBRACE, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38146] = 16, + [39725] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + ACTIONS(2143), 1, + anon_sym_RBRACE, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38204] = 15, + [39783] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2095), 1, + ACTIONS(2145), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [38260] = 16, + [39839] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(845), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, - anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2097), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38318] = 15, + [39895] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(839), 1, + ACTIONS(817), 1, anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [38374] = 15, + [39951] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(881), 1, + anon_sym_async, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2097), 1, + ACTIONS(2141), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38430] = 15, + [40009] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(845), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(881), 1, + anon_sym_async, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2091), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [38486] = 16, + [40067] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2095), 1, + ACTIONS(2145), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38544] = 13, + [40125] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(837), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + ACTIONS(2145), 1, + anon_sym_RBRACE, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68312,37 +71769,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38595] = 13, + [40176] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(817), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2097), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68350,37 +71807,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38646] = 13, + [40227] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(843), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1370), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68388,37 +71845,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38697] = 13, + [40278] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(839), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + ACTIONS(2141), 1, + anon_sym_RBRACE, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68426,75 +71883,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38748] = 13, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(811), 1, - anon_sym_RBRACE, - ACTIONS(863), 1, + [40329] = 14, + ACTIONS(2012), 1, + anon_sym_LBRACK, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(865), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2089), 1, - anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, + ACTIONS(2147), 1, + anon_sym_STAR, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2151), 1, + anon_sym_async, + ACTIONS(2157), 1, + sym__automatic_semicolon, + STATE(966), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(2153), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2155), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2137), 3, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1580), 3, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1116), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(2004), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [38799] = 13, + [40382] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2091), 1, + ACTIONS(2143), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68502,37 +71960,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38850] = 13, + [40433] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(845), 1, + anon_sym_RBRACE, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1351), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68540,261 +71998,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38901] = 14, - ACTIONS(1962), 1, - anon_sym_LBRACK, - ACTIONS(1966), 1, + [40484] = 12, + ACTIONS(865), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(867), 1, anon_sym_SQUOTE, ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2101), 1, - anon_sym_LBRACE, - ACTIONS(2103), 1, - anon_sym_async, - ACTIONS(2109), 1, - sym__automatic_semicolon, - STATE(940), 1, - sym_statement_block, + ACTIONS(2139), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2105), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2107), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 3, + ACTIONS(2137), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1097), 3, + anon_sym_COLON, + ACTIONS(2160), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1954), 4, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38954] = 13, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40532] = 13, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2112), 2, + ACTIONS(2160), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39004] = 14, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40582] = 14, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2045), 1, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2163), 1, anon_sym_RBRACE, - STATE(1271), 1, + STATE(1360), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39056] = 12, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40634] = 18, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2165), 1, + anon_sym_export, + ACTIONS(2167), 1, anon_sym_STAR, - ACTIONS(2089), 1, - anon_sym_EQ, + ACTIONS(2169), 1, + anon_sym_class, + ACTIONS(2171), 1, + anon_sym_async, + ACTIONS(2175), 1, + anon_sym_static, + ACTIONS(2177), 1, + aux_sym_method_definition_token1, + ACTIONS(2179), 1, + anon_sym_get, + ACTIONS(2181), 1, + anon_sym_set, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(879), 2, + anon_sym_let, + sym_identifier, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1580), 3, + STATE(1444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39104] = 13, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40694] = 13, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2045), 1, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2115), 1, + ACTIONS(2163), 1, anon_sym_RBRACE, - STATE(1271), 1, + STATE(1360), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39154] = 18, + [40744] = 16, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(863), 1, + ACTIONS(2012), 1, + anon_sym_LBRACK, + ACTIONS(2016), 1, anon_sym_DQUOTE, - ACTIONS(865), 1, + ACTIONS(2018), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_export, - ACTIONS(2119), 1, + ACTIONS(2183), 1, anon_sym_STAR, - ACTIONS(2121), 1, - anon_sym_class, - ACTIONS(2123), 1, + ACTIONS(2185), 1, anon_sym_async, - ACTIONS(2127), 1, + ACTIONS(2189), 1, anon_sym_static, - ACTIONS(2129), 1, + ACTIONS(2191), 1, aux_sym_method_definition_token1, - ACTIONS(2131), 1, + ACTIONS(2193), 1, anon_sym_get, - ACTIONS(2133), 1, + ACTIONS(2195), 1, anon_sym_set, - STATE(936), 1, + STATE(965), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(873), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2125), 2, + ACTIONS(2187), 2, sym_number, sym_private_property_identifier, - STATE(1571), 3, + ACTIONS(2004), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1155), 3, sym_string, sym__property_name, sym_computed_property_name, - [39214] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40799] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2095), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2089), 1, - anon_sym_EQ, + ACTIONS(2163), 1, + anon_sym_RBRACE, + STATE(1360), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68802,361 +72261,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39257] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40844] = 16, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2045), 1, - anon_sym_COMMA, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1271), 1, - aux_sym_object_repeat1, + ACTIONS(2167), 1, + anon_sym_STAR, + ACTIONS(2171), 1, + anon_sym_async, + ACTIONS(2175), 1, + anon_sym_static, + ACTIONS(2177), 1, + aux_sym_method_definition_token1, + ACTIONS(2179), 1, + anon_sym_get, + ACTIONS(2181), 1, + anon_sym_set, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(2173), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 3, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39302] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + STATE(1444), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [40899] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2135), 2, + ACTIONS(2197), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39347] = 16, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [40944] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2199), 1, anon_sym_STAR, - ACTIONS(2123), 1, - anon_sym_async, - ACTIONS(2127), 1, - anon_sym_static, - ACTIONS(2129), 1, - aux_sym_method_definition_token1, - ACTIONS(2131), 1, + ACTIONS(2203), 1, anon_sym_get, - ACTIONS(2133), 1, + ACTIONS(2205), 1, anon_sym_set, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2125), 2, + ACTIONS(2201), 2, sym_number, sym_private_property_identifier, - ACTIONS(873), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1571), 3, + STATE(1522), 3, sym_string, sym__property_name, sym_computed_property_name, - [39402] = 12, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(2137), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(879), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40989] = 12, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(875), 1, + ACTIONS(881), 1, anon_sym_async, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2085), 1, + ACTIONS(2135), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - ACTIONS(877), 2, + ACTIONS(883), 2, anon_sym_get, anon_sym_set, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2135), 2, + ACTIONS(2197), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1580), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39449] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [41036] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, + ACTIONS(2139), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(871), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2160), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1601), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [41079] = 12, + ACTIONS(2012), 1, + anon_sym_LBRACK, + ACTIONS(2016), 1, + anon_sym_DQUOTE, + ACTIONS(2018), 1, + anon_sym_SQUOTE, + ACTIONS(2207), 1, anon_sym_STAR, - ACTIONS(2141), 1, + ACTIONS(2209), 1, + anon_sym_async, + ACTIONS(2213), 1, anon_sym_get, - ACTIONS(2143), 1, + ACTIONS(2215), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2139), 2, + ACTIONS(2211), 2, sym_number, sym_private_property_identifier, - STATE(1549), 3, + STATE(1125), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(873), 5, + ACTIONS(2004), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [39494] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(2137), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [41126] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2145), 1, + ACTIONS(2147), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2217), 2, sym_number, sym_private_property_identifier, - ACTIONS(2149), 2, + ACTIONS(2219), 2, anon_sym_get, anon_sym_set, - STATE(1529), 3, + STATE(1498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39537] = 16, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(1962), 1, - anon_sym_LBRACK, - ACTIONS(1966), 1, + [41169] = 11, + ACTIONS(865), 1, anon_sym_DQUOTE, - ACTIONS(1968), 1, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2151), 1, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2221), 1, anon_sym_STAR, - ACTIONS(2153), 1, - anon_sym_async, - ACTIONS(2157), 1, - anon_sym_static, - ACTIONS(2159), 1, - aux_sym_method_definition_token1, - ACTIONS(2161), 1, + ACTIONS(2225), 1, anon_sym_get, - ACTIONS(2163), 1, + ACTIONS(2227), 1, anon_sym_set, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2155), 2, + ACTIONS(2223), 2, sym_number, sym_private_property_identifier, - ACTIONS(1954), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1093), 3, + STATE(1537), 3, sym_string, sym__property_name, sym_computed_property_name, - [39592] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(2137), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(879), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41214] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2165), 1, + ACTIONS(2229), 1, anon_sym_STAR, - ACTIONS(2169), 1, - anon_sym_get, - ACTIONS(2171), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2167), 2, + ACTIONS(2231), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + ACTIONS(2233), 2, + anon_sym_get, + anon_sym_set, + STATE(1520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39637] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [41257] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, ACTIONS(2099), 1, - anon_sym_STAR, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2217), 2, sym_number, sym_private_property_identifier, - ACTIONS(2175), 2, - anon_sym_get, - anon_sym_set, - STATE(1499), 3, + STATE(1498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 5, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39680] = 12, - ACTIONS(1962), 1, - anon_sym_LBRACK, - ACTIONS(1966), 1, - anon_sym_DQUOTE, - ACTIONS(1968), 1, - anon_sym_SQUOTE, - ACTIONS(2177), 1, - anon_sym_STAR, - ACTIONS(2179), 1, - anon_sym_async, - ACTIONS(2183), 1, anon_sym_get, - ACTIONS(2185), 1, anon_sym_set, + [41295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2181), 2, + ACTIONS(2235), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2237), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1954), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + [41323] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_get, + anon_sym_set, + ACTIONS(2237), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, - [39727] = 3, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2239), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69164,7 +72663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2241), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69177,11 +72676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39755] = 3, + [41379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69189,7 +72688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69202,11 +72701,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39783] = 3, + [41407] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69214,7 +72713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, + ACTIONS(2245), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69227,11 +72726,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39811] = 3, + [41435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2247), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69239,7 +72738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, + ACTIONS(2249), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69252,13 +72751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39839] = 4, - ACTIONS(2195), 1, - sym__automatic_semicolon, + [41463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69266,8 +72763,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(610), 11, + ACTIONS(2245), 12, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69278,11 +72776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39869] = 3, + [41491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69290,7 +72788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69303,11 +72801,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39897] = 3, + [41519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2197), 7, + ACTIONS(2251), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69315,7 +72813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2199), 12, + ACTIONS(2253), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69328,11 +72826,29 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39925] = 3, + [41547] = 8, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2099), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2231), 2, + sym_number, + sym_private_property_identifier, + STATE(1520), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2137), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69340,24 +72856,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [41585] = 9, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [39953] = 3, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2197), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1601), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [41625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69365,7 +72899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69378,11 +72912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [39981] = 3, + [41653] = 4, + ACTIONS(2255), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2201), 7, + ACTIONS(510), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69390,9 +72926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2203), 12, + ACTIONS(508), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69403,29 +72938,29 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40009] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [41683] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2257), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1538), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69433,11 +72968,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40047] = 3, + [41721] = 8, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2099), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 7, + ACTIONS(2259), 2, + sym_number, + sym_private_property_identifier, + STATE(1539), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2137), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69445,24 +72998,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40075] = 3, + [41759] = 4, + ACTIONS(2261), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(594), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69470,9 +73012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(592), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69483,11 +73024,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40103] = 3, + [41789] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69495,7 +73036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69508,11 +73049,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40131] = 3, + [41817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69520,7 +73061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(2245), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69533,11 +73074,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40159] = 3, + [41845] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69545,7 +73086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2215), 12, + ACTIONS(2245), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69558,11 +73099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40187] = 3, + [41873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69570,7 +73111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69583,11 +73124,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40215] = 3, + [41901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69595,7 +73136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2219), 12, + ACTIONS(2245), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69608,11 +73149,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40243] = 3, + [41929] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2243), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69620,7 +73161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(2245), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69633,11 +73174,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40271] = 3, + [41957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2209), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69645,7 +73186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2211), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69658,42 +73199,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40299] = 9, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(869), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2135), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40339] = 3, + [41985] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69701,7 +73211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69714,11 +73224,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40367] = 3, + [42013] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69726,7 +73236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69739,38 +73249,39 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40395] = 3, + [42041] = 6, + ACTIONS(2271), 1, + anon_sym_LPAREN, + ACTIONS(2273), 1, + anon_sym_DOT, + STATE(1003), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2267), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2269), 8, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40423] = 4, - ACTIONS(2221), 1, - sym__automatic_semicolon, + [42075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(510), 7, + ACTIONS(2275), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69778,8 +73289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(508), 11, + ACTIONS(2277), 12, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -69790,11 +73302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40453] = 3, + [42103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69802,7 +73314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69815,29 +73327,29 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40481] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42131] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2223), 2, + ACTIONS(2279), 2, sym_number, sym_private_property_identifier, - STATE(1551), 3, + STATE(1525), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69845,11 +73357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40519] = 3, + [42169] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69857,7 +73369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69870,11 +73382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40547] = 3, + [42197] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69882,7 +73394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69895,69 +73407,36 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40575] = 6, - ACTIONS(2229), 1, - anon_sym_LPAREN, - ACTIONS(2231), 1, - anon_sym_DOT, - STATE(975), 1, - sym_arguments, + [42225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 8, + ACTIONS(2281), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 8, + ACTIONS(2283), 12, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40609] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2233), 2, - sym_number, - sym_private_property_identifier, - STATE(1550), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(873), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40647] = 3, + [42253] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69965,7 +73444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -69978,41 +73457,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40675] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2147), 2, - sym_number, - sym_private_property_identifier, - STATE(1529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(873), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40713] = 3, + [42281] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70020,7 +73469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70033,11 +73482,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40741] = 3, + [42309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2191), 7, + ACTIONS(2235), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70045,7 +73494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2193), 12, + ACTIONS(2237), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70058,11 +73507,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40769] = 3, + [42337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2187), 7, + ACTIONS(2263), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70070,7 +73519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2189), 12, + ACTIONS(2265), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70083,29 +73532,41 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40797] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42365] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2235), 2, + ACTIONS(2285), 2, sym_number, sym_private_property_identifier, - STATE(1533), 3, + STATE(1524), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2087), 4, + ACTIONS(2137), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(873), 7, + ACTIONS(879), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42403] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2287), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70113,29 +73574,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40835] = 8, - ACTIONS(863), 1, + ACTIONS(2289), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42430] = 6, + ACTIONS(2295), 1, + anon_sym_AT, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 2, + ACTIONS(2293), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1534), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(873), 7, + aux_sym_method_definition_token1, + ACTIONS(2291), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42463] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2298), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70143,11 +73625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40873] = 3, + ACTIONS(2300), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42490] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1549), 7, + ACTIONS(1400), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70155,7 +73649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1551), 11, + ACTIONS(1402), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70167,11 +73661,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40900] = 3, + [42517] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2239), 7, + ACTIONS(2302), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70179,7 +73673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2241), 11, + ACTIONS(2304), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70191,11 +73685,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40927] = 3, + [42544] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(636), 7, + ACTIONS(594), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70203,7 +73697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(634), 11, + ACTIONS(592), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70215,11 +73709,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40954] = 3, + [42571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2243), 7, + ACTIONS(1368), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70227,7 +73721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2245), 11, + ACTIONS(1370), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70239,13 +73733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40981] = 4, - ACTIONS(2247), 1, - anon_sym_SEMI, + [42598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2243), 7, + ACTIONS(2306), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70253,9 +73745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2245), 10, + ACTIONS(2308), 11, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -70264,38 +73757,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41010] = 6, - ACTIONS(2254), 1, - anon_sym_AT, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2252), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2250), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41043] = 3, + [42625] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2257), 7, + ACTIONS(604), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70303,7 +73769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2259), 11, + ACTIONS(602), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70315,11 +73781,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41070] = 3, + [42652] = 4, + ACTIONS(2310), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(612), 7, + ACTIONS(2302), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70327,10 +73795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(610), 11, + ACTIONS(2304), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, sym_glimmer_opening_tag, anon_sym_DQUOTE, @@ -70339,11 +73806,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41097] = 3, + [42681] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2261), 9, + ACTIONS(2313), 9, anon_sym_export, anon_sym_let, anon_sym_DOT, @@ -70353,7 +73820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2263), 9, + ACTIONS(2315), 9, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACK, @@ -70363,11 +73830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41124] = 3, + [42708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2265), 7, + ACTIONS(2317), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70375,7 +73842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2267), 11, + ACTIONS(2319), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -70387,412 +73854,416 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41151] = 3, + [42735] = 11, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2321), 1, + anon_sym_STAR, + ACTIONS(2325), 1, + anon_sym_get, + ACTIONS(2327), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2269), 7, + ACTIONS(2323), 2, + sym_number, + sym_private_property_identifier, + STATE(1541), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2271), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [42777] = 13, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(819), 1, + anon_sym_var, + ACTIONS(833), 1, + anon_sym_class, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(837), 1, + anon_sym_function, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2329), 1, + anon_sym_default, + STATE(395), 1, + sym_declaration, + STATE(1002), 1, + sym_decorator, + STATE(1219), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + anon_sym_let, + anon_sym_const, + STATE(394), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [42823] = 11, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41178] = 3, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2331), 1, + anon_sym_STAR, + ACTIONS(2335), 1, + anon_sym_get, + ACTIONS(2337), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1423), 7, + ACTIONS(2333), 2, + sym_number, + sym_private_property_identifier, + STATE(1583), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1425), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41205] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42865] = 12, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2145), 1, + ACTIONS(2339), 1, anon_sym_STAR, + ACTIONS(2341), 1, + anon_sym_async, + ACTIONS(2345), 1, + anon_sym_get, + ACTIONS(2347), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2343), 2, sym_number, sym_private_property_identifier, - ACTIONS(2149), 2, - anon_sym_get, - anon_sym_set, - STATE(1529), 3, + STATE(1492), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [41245] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42909] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2273), 1, + ACTIONS(2349), 1, anon_sym_STAR, - ACTIONS(2277), 1, + ACTIONS(2353), 1, anon_sym_get, - ACTIONS(2279), 1, + ACTIONS(2355), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2275), 2, + ACTIONS(2351), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41287] = 9, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42951] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2281), 1, - anon_sym_EQ_GT, + ACTIONS(2229), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2231), 2, sym_number, sym_private_property_identifier, - STATE(1460), 3, + ACTIONS(2233), 2, + anon_sym_get, + anon_sym_set, + STATE(1520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41325] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [42991] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2285), 1, + ACTIONS(2357), 1, anon_sym_STAR, - ACTIONS(2289), 1, - anon_sym_get, - ACTIONS(2291), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2287), 2, + ACTIONS(2359), 2, sym_number, sym_private_property_identifier, - STATE(1378), 3, + ACTIONS(2361), 2, + anon_sym_get, + anon_sym_set, + STATE(1610), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41367] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43031] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2293), 1, + ACTIONS(2363), 1, anon_sym_STAR, - ACTIONS(2297), 1, + ACTIONS(2367), 1, anon_sym_get, - ACTIONS(2299), 1, + ACTIONS(2369), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 2, + ACTIONS(2365), 2, sym_number, sym_private_property_identifier, - STATE(1365), 3, + STATE(1631), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41409] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43073] = 9, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_STAR, + ACTIONS(2371), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2359), 2, sym_number, sym_private_property_identifier, - ACTIONS(2303), 2, - anon_sym_get, - anon_sym_set, - STATE(1460), 3, + STATE(1610), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41449] = 13, + anon_sym_get, + anon_sym_set, + [43111] = 12, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(813), 1, + ACTIONS(819), 1, anon_sym_var, - ACTIONS(827), 1, + ACTIONS(833), 1, anon_sym_class, - ACTIONS(829), 1, + ACTIONS(835), 1, anon_sym_async, - ACTIONS(831), 1, + ACTIONS(837), 1, anon_sym_function, - ACTIONS(2087), 1, - anon_sym_LPAREN, - ACTIONS(2305), 1, + ACTIONS(2373), 1, anon_sym_default, - STATE(361), 1, + STATE(395), 1, sym_declaration, - STATE(977), 1, + STATE(1002), 1, sym_decorator, - STATE(1213), 1, + STATE(1219), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(815), 2, + ACTIONS(821), 2, anon_sym_let, anon_sym_const, - STATE(363), 5, + STATE(394), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [41495] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43154] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2307), 1, - anon_sym_STAR, - ACTIONS(2311), 1, - anon_sym_get, - ACTIONS(2313), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2309), 2, + ACTIONS(2375), 2, sym_number, sym_private_property_identifier, - STATE(1448), 3, + STATE(1574), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 5, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41537] = 12, - ACTIONS(863), 1, - anon_sym_DQUOTE, + anon_sym_get, + anon_sym_set, + [43189] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2315), 1, - anon_sym_STAR, - ACTIONS(2317), 1, - anon_sym_async, - ACTIONS(2321), 1, - anon_sym_get, - ACTIONS(2323), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2319), 2, + ACTIONS(2377), 2, sym_number, sym_private_property_identifier, - STATE(1447), 3, + STATE(1526), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [41581] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + anon_sym_get, + anon_sym_set, + [43224] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, ACTIONS(2099), 1, - anon_sym_STAR, - ACTIONS(2325), 1, - anon_sym_async, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2359), 2, sym_number, sym_private_property_identifier, - ACTIONS(2175), 2, - anon_sym_get, - anon_sym_set, - STATE(1499), 3, + STATE(1610), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [41620] = 12, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(813), 1, - anon_sym_var, - ACTIONS(827), 1, - anon_sym_class, - ACTIONS(829), 1, - anon_sym_async, - ACTIONS(831), 1, - anon_sym_function, - ACTIONS(2327), 1, - anon_sym_default, - STATE(361), 1, - sym_declaration, - STATE(977), 1, - sym_decorator, - STATE(1213), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(815), 2, - anon_sym_let, - anon_sym_const, - STATE(363), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41663] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + anon_sym_get, + anon_sym_set, + [43259] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2329), 2, + ACTIONS(2379), 2, sym_number, sym_private_property_identifier, - STATE(1419), 3, + STATE(1584), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70800,53 +74271,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41698] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43294] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + ACTIONS(2381), 1, + anon_sym_STAR, + ACTIONS(2383), 1, + anon_sym_async, + ACTIONS(2387), 1, + anon_sym_get, + ACTIONS(2389), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2331), 2, + ACTIONS(2385), 2, sym_number, sym_private_property_identifier, - STATE(1433), 3, + STATE(1393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41733] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43335] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, + ACTIONS(2391), 2, sym_number, sym_private_property_identifier, - STATE(1477), 3, + STATE(1440), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70854,26 +74328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41768] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43370] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 2, + ACTIONS(2393), 2, sym_number, sym_private_property_identifier, - STATE(1434), 3, + STATE(1442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70881,11 +74355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41803] = 3, + [43405] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1519), 8, + ACTIONS(1489), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -70894,7 +74368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1521), 8, + ACTIONS(1491), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -70903,11 +74377,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41828] = 3, + [43430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1453), 8, + ACTIONS(1376), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -70916,7 +74390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1455), 8, + ACTIONS(1378), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -70925,11 +74399,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41853] = 3, + [43455] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1567), 8, + ACTIONS(1392), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -70938,7 +74412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1569), 8, + ACTIONS(1394), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -70947,55 +74421,26 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41878] = 10, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43480] = 8, ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(875), 1, - anon_sym_async, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2085), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(869), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(877), 2, - anon_sym_get, - anon_sym_set, - STATE(1580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [41917] = 8, - ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(865), 1, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 2, + ACTIONS(2395), 2, sym_number, sym_private_property_identifier, - STATE(1444), 3, + STATE(1628), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71003,26 +74448,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41952] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43515] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 2, + ACTIONS(2397), 2, sym_number, sym_private_property_identifier, - STATE(1565), 3, + STATE(1396), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71030,26 +74475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41987] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43550] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 2, + ACTIONS(2399), 2, sym_number, sym_private_property_identifier, - STATE(1564), 3, + STATE(1414), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71057,26 +74502,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42022] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43585] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2401), 2, sym_number, sym_private_property_identifier, - STATE(1445), 3, + STATE(1419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71084,56 +74529,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42057] = 11, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43620] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(881), 1, + anon_sym_async, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2345), 1, + ACTIONS(2135), 1, anon_sym_STAR, - ACTIONS(2347), 1, - anon_sym_async, - ACTIONS(2351), 1, - anon_sym_get, - ACTIONS(2353), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2349), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - STATE(1446), 3, + ACTIONS(883), 2, + anon_sym_get, + anon_sym_set, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [42098] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43659] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2355), 2, + ACTIONS(2403), 2, sym_number, sym_private_property_identifier, - STATE(1562), 3, + STATE(1576), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71141,107 +74585,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42133] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + [43694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2357), 2, - sym_number, - sym_private_property_identifier, - STATE(1561), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(2405), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42168] = 8, - ACTIONS(863), 1, + ACTIONS(2407), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(865), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [43719] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2359), 2, - sym_number, - sym_private_property_identifier, - STATE(1363), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(2409), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42203] = 8, - ACTIONS(863), 1, + ACTIONS(2411), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [43744] = 12, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(819), 1, + anon_sym_var, + ACTIONS(833), 1, + anon_sym_class, + ACTIONS(835), 1, + anon_sym_async, + ACTIONS(837), 1, + anon_sym_function, + ACTIONS(2329), 1, + anon_sym_default, + STATE(395), 1, + sym_declaration, + STATE(1002), 1, + sym_decorator, + STATE(1219), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(821), 2, + anon_sym_let, + anon_sym_const, + STATE(394), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [43787] = 10, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + ACTIONS(2147), 1, + anon_sym_STAR, + ACTIONS(2413), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2217), 2, sym_number, sym_private_property_identifier, - STATE(1460), 3, + ACTIONS(2219), 2, + anon_sym_get, + anon_sym_set, + STATE(1498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42238] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43826] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2231), 2, sym_number, sym_private_property_identifier, - STATE(1555), 3, + STATE(1520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71249,53 +74716,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42273] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43861] = 11, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_STAR, + ACTIONS(2417), 1, + anon_sym_async, + ACTIONS(2421), 1, + anon_sym_get, + ACTIONS(2423), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2419), 2, sym_number, sym_private_property_identifier, - STATE(1554), 3, + STATE(1523), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42308] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43902] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2365), 2, + ACTIONS(2425), 2, sym_number, sym_private_property_identifier, - STATE(1385), 3, + STATE(1532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71303,26 +74773,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42343] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [43937] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2367), 2, + ACTIONS(2427), 2, sym_number, sym_private_property_identifier, - STATE(1364), 3, + STATE(1534), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71330,92 +74800,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42378] = 3, + [43972] = 8, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 8, + ACTIONS(2429), 2, + sym_number, + sym_private_property_identifier, + STATE(1535), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2371), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [44007] = 8, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42403] = 3, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 8, + ACTIONS(2431), 2, + sym_number, + sym_private_property_identifier, + STATE(1542), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [44042] = 8, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42428] = 3, + ACTIONS(2099), 1, + anon_sym_LBRACK, + ACTIONS(2137), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2373), 8, + ACTIONS(2433), 2, + sym_number, + sym_private_property_identifier, + STATE(1543), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2375), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42453] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44077] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2435), 2, sym_number, sym_private_property_identifier, - STATE(1529), 3, + STATE(1548), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71423,26 +74908,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42488] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44112] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 2, + ACTIONS(2437), 2, sym_number, sym_private_property_identifier, - STATE(1547), 3, + STATE(1549), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71450,26 +74935,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42523] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44147] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2439), 2, sym_number, sym_private_property_identifier, - STATE(1546), 3, + STATE(1551), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71477,26 +74962,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42558] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44182] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2381), 2, + ACTIONS(2441), 2, sym_number, sym_private_property_identifier, - STATE(1375), 3, + STATE(1552), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71504,26 +74989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42593] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44217] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2443), 2, sym_number, sym_private_property_identifier, - STATE(1382), 3, + STATE(1586), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71531,26 +75016,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42628] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44252] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2445), 2, sym_number, sym_private_property_identifier, - STATE(1381), 3, + STATE(1564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71558,26 +75043,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42663] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44287] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2447), 2, sym_number, sym_private_property_identifier, - STATE(1544), 3, + STATE(1573), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71585,112 +75070,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42698] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_LPAREN, + [44322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2389), 2, - sym_number, - sym_private_property_identifier, - STATE(1374), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(2267), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42733] = 11, - ACTIONS(863), 1, + ACTIONS(2269), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [44347] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, - ACTIONS(2393), 1, - anon_sym_async, - ACTIONS(2397), 1, - anon_sym_get, - ACTIONS(2399), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2449), 2, sym_number, sym_private_property_identifier, - STATE(1532), 3, + STATE(1626), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 4, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [42774] = 12, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(813), 1, - anon_sym_var, - ACTIONS(827), 1, - anon_sym_class, - ACTIONS(829), 1, - anon_sym_async, - ACTIONS(831), 1, - anon_sym_function, - ACTIONS(2305), 1, - anon_sym_default, - STATE(361), 1, - sym_declaration, - STATE(977), 1, - sym_decorator, - STATE(1213), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(815), 2, - anon_sym_let, - anon_sym_const, - STATE(363), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [42817] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + anon_sym_get, + anon_sym_set, + [44379] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2401), 2, + ACTIONS(2451), 2, sym_number, sym_private_property_identifier, - STATE(1368), 3, + STATE(1568), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71698,24 +75142,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42849] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44411] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [44433] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2365), 2, + ACTIONS(2455), 2, sym_number, sym_private_property_identifier, - STATE(1385), 3, + STATE(1620), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71723,24 +75187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42881] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44465] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 2, + ACTIONS(2457), 2, sym_number, sym_private_property_identifier, - STATE(1545), 3, + STATE(1411), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71748,24 +75212,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42913] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44497] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2459), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [44519] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(869), 2, + ACTIONS(2461), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1588), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71773,11 +75257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42945] = 2, + [44551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2405), 15, + ACTIONS(2463), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71793,24 +75277,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [42967] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44573] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2465), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [44595] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2217), 2, sym_number, sym_private_property_identifier, - STATE(1415), 3, + STATE(1498), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71818,24 +75322,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42999] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44627] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2231), 2, sym_number, sym_private_property_identifier, - STATE(1383), 3, + STATE(1520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71843,24 +75347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43031] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44659] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2411), 2, + ACTIONS(871), 2, sym_number, sym_private_property_identifier, - STATE(1563), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71868,24 +75372,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43063] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44691] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2467), 2, sym_number, sym_private_property_identifier, - STATE(1379), 3, + STATE(1521), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71893,24 +75397,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43095] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44723] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2425), 2, sym_number, sym_private_property_identifier, - STATE(1544), 3, + STATE(1532), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71918,24 +75422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43127] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44755] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2415), 2, + ACTIONS(2469), 2, sym_number, sym_private_property_identifier, - STATE(1530), 3, + STATE(1533), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71943,24 +75447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43159] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44787] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2471), 2, sym_number, sym_private_property_identifier, - STATE(1560), 3, + STATE(1536), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71968,24 +75472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43191] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44819] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2147), 2, + ACTIONS(2473), 2, sym_number, sym_private_property_identifier, - STATE(1529), 3, + STATE(1540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71993,24 +75497,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43223] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44851] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2475), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1547), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72018,64 +75522,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43255] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2419), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43277] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2421), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43299] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44883] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2477), 2, sym_number, sym_private_property_identifier, - STATE(1431), 3, + STATE(1550), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72083,24 +75547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43331] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44915] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2283), 2, + ACTIONS(2445), 2, sym_number, sym_private_property_identifier, - STATE(1460), 3, + STATE(1564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72108,24 +75572,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43363] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [44947] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2425), 2, + ACTIONS(2359), 2, sym_number, sym_private_property_identifier, - STATE(1449), 3, + STATE(1610), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72133,11 +75597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43395] = 2, + [44979] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2427), 15, + ACTIONS(2479), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72153,49 +75617,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43417] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [45001] = 7, ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2049), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2429), 2, - sym_number, - sym_private_property_identifier, - STATE(1548), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(873), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43449] = 7, - ACTIONS(863), 1, anon_sym_DQUOTE, - ACTIONS(865), 1, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2049), 1, + ACTIONS(2099), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2481), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1579), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(873), 7, + ACTIONS(879), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72203,1232 +75642,1430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43481] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2433), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43503] = 10, + [45033] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2439), 1, + ACTIONS(2487), 1, sym_html_character_reference, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2443), 1, + ACTIONS(2491), 1, anon_sym_LT_SLASH, - STATE(529), 1, + STATE(782), 1, sym_jsx_closing_element, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1013), 5, + STATE(1046), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43539] = 10, + [45069] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2445), 1, + ACTIONS(2493), 1, sym_html_character_reference, - ACTIONS(2447), 1, + ACTIONS(2495), 1, anon_sym_LT_SLASH, - STATE(1018), 1, - sym_jsx_opening_element, - STATE(1180), 1, + STATE(579), 1, sym_jsx_closing_element, - ACTIONS(2437), 2, + STATE(1048), 1, + sym_jsx_opening_element, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1015), 5, + STATE(1047), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43575] = 10, + [45105] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2443), 1, + ACTIONS(2491), 1, anon_sym_LT_SLASH, - ACTIONS(2449), 1, + ACTIONS(2497), 1, sym_html_character_reference, - STATE(569), 1, + STATE(713), 1, sym_jsx_closing_element, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1053), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43611] = 10, + [45141] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2451), 1, - sym_html_character_reference, - ACTIONS(2453), 1, + ACTIONS(2495), 1, anon_sym_LT_SLASH, - STATE(731), 1, + ACTIONS(2497), 1, + sym_html_character_reference, + STATE(570), 1, sym_jsx_closing_element, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1017), 5, + STATE(1053), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43647] = 10, + [45177] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2447), 1, - anon_sym_LT_SLASH, - ACTIONS(2449), 1, + ACTIONS(2499), 1, sym_html_character_reference, - STATE(1018), 1, + ACTIONS(2501), 1, + anon_sym_LT_SLASH, + STATE(1048), 1, sym_jsx_opening_element, - STATE(1176), 1, + STATE(1120), 1, sym_jsx_closing_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1051), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43683] = 10, + [45213] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2449), 1, + ACTIONS(2503), 1, sym_html_character_reference, - ACTIONS(2455), 1, + ACTIONS(2505), 1, anon_sym_LT_SLASH, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - STATE(1129), 1, + STATE(1205), 1, sym_jsx_closing_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1052), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43719] = 10, + [45249] = 11, + ACTIONS(2016), 1, + anon_sym_DQUOTE, + ACTIONS(2018), 1, + anon_sym_SQUOTE, + ACTIONS(2507), 1, + sym_identifier, + ACTIONS(2509), 1, + anon_sym_STAR, + ACTIONS(2511), 1, + anon_sym_LBRACE, + ACTIONS(2515), 1, + anon_sym_DOT, + STATE(1249), 1, + sym_string, + STATE(1468), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1651), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2513), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [45287] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2449), 1, + ACTIONS(2497), 1, sym_html_character_reference, - ACTIONS(2453), 1, + ACTIONS(2501), 1, anon_sym_LT_SLASH, - STATE(668), 1, - sym_jsx_closing_element, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - ACTIONS(2437), 2, + STATE(1149), 1, + sym_jsx_closing_element, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1053), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43755] = 10, + [45323] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2435), 1, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(2441), 1, + ACTIONS(2489), 1, anon_sym_LT, - ACTIONS(2455), 1, - anon_sym_LT_SLASH, - ACTIONS(2457), 1, + ACTIONS(2497), 1, sym_html_character_reference, - STATE(1018), 1, + ACTIONS(2505), 1, + anon_sym_LT_SLASH, + STATE(1048), 1, sym_jsx_opening_element, - STATE(1122), 1, + STATE(1168), 1, sym_jsx_closing_element, - ACTIONS(2437), 2, + ACTIONS(2485), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1016), 5, + STATE(1053), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43791] = 11, - ACTIONS(1966), 1, - anon_sym_DQUOTE, - ACTIONS(1968), 1, - anon_sym_SQUOTE, - ACTIONS(2459), 1, - sym_identifier, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2463), 1, - anon_sym_LBRACE, - ACTIONS(2467), 1, - anon_sym_DOT, - STATE(1193), 1, - sym_string, - STATE(1361), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1653), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(2465), 3, - anon_sym_LPAREN, - sym_optional_chain, - anon_sym_BQUOTE, - [43829] = 9, + [45359] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2469), 1, + ACTIONS(2517), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2523), 1, sym_html_character_reference, - ACTIONS(2478), 1, + ACTIONS(2526), 1, anon_sym_LT, - ACTIONS(2481), 1, + ACTIONS(2529), 1, anon_sym_LT_SLASH, - STATE(1018), 1, + STATE(1048), 1, sym_jsx_opening_element, - ACTIONS(2472), 2, + ACTIONS(2520), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(1020), 5, + STATE(1053), 5, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [43862] = 11, - ACTIONS(2483), 1, + [45392] = 11, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2543), 1, anon_sym_SLASH_GT, - STATE(1035), 1, + STATE(1069), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [43898] = 11, - ACTIONS(2483), 1, + [45428] = 11, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2545), 1, anon_sym_SLASH_GT, - STATE(1054), 1, + STATE(1079), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [43934] = 11, - ACTIONS(2483), 1, + [45464] = 11, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2499), 1, + ACTIONS(2547), 1, anon_sym_SLASH_GT, - STATE(1037), 1, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [43970] = 11, - ACTIONS(2483), 1, + [45500] = 11, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2501), 1, + ACTIONS(2549), 1, anon_sym_SLASH_GT, - STATE(1044), 1, + STATE(1073), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44006] = 10, - ACTIONS(2483), 1, + [45536] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(2501), 1, + ACTIONS(2547), 1, anon_sym_SLASH_GT, - STATE(1050), 1, + STATE(1081), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44039] = 10, - ACTIONS(2483), 1, + [45569] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2499), 1, + ACTIONS(2543), 1, anon_sym_SLASH_GT, - STATE(1039), 1, + STATE(1070), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44072] = 10, - ACTIONS(2483), 1, + [45602] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(2547), 1, anon_sym_SLASH_GT, - STATE(1051), 1, - aux_sym_jsx_opening_element_repeat1, STATE(1083), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44105] = 10, - ACTIONS(2483), 1, + [45635] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2543), 1, anon_sym_SLASH_GT, - STATE(1053), 1, + STATE(1068), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44138] = 10, - ACTIONS(2483), 1, + [45668] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2499), 1, + ACTIONS(2545), 1, anon_sym_SLASH_GT, - STATE(1046), 1, + STATE(1078), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44171] = 10, - ACTIONS(2483), 1, + [45701] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, + ACTIONS(2535), 1, anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2501), 1, + ACTIONS(2549), 1, anon_sym_SLASH_GT, - STATE(1034), 1, + STATE(1074), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44204] = 10, - ACTIONS(2483), 1, + [45734] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2493), 1, + ACTIONS(2541), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2549), 1, anon_sym_SLASH_GT, - STATE(1055), 1, + STATE(1075), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44237] = 10, - ACTIONS(2483), 1, + [45767] = 10, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(2545), 1, anon_sym_SLASH_GT, - STATE(1043), 1, + STATE(1066), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44270] = 9, - ACTIONS(2483), 1, + [45800] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, - anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2501), 1, + ACTIONS(2551), 1, + anon_sym_GT, + ACTIONS(2553), 1, anon_sym_SLASH_GT, - STATE(1049), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44300] = 9, - ACTIONS(2483), 1, + [45830] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2503), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2505), 1, + ACTIONS(2539), 1, + sym_jsx_identifier, + ACTIONS(2543), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1071), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44330] = 9, - ACTIONS(2483), 1, + [45860] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2507), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2509), 1, + ACTIONS(2557), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44360] = 9, - ACTIONS(2483), 1, + [45890] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, - anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2499), 1, + ACTIONS(2559), 1, + anon_sym_GT, + ACTIONS(2561), 1, anon_sym_SLASH_GT, - STATE(1040), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44390] = 9, - ACTIONS(2483), 1, + [45920] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2507), 1, + ACTIONS(2551), 1, anon_sym_GT, - ACTIONS(2511), 1, + ACTIONS(2563), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44420] = 8, - ACTIONS(2513), 1, + [45950] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2516), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2521), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - STATE(1038), 1, + ACTIONS(2565), 1, + anon_sym_GT, + ACTIONS(2567), 1, + anon_sym_SLASH_GT, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2519), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44448] = 9, - ACTIONS(2483), 1, + [45980] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2526), 1, + ACTIONS(2539), 1, + sym_jsx_identifier, + ACTIONS(2549), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1076), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44478] = 9, - ACTIONS(2483), 1, + [46010] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2528), 1, + ACTIONS(2559), 1, anon_sym_GT, - ACTIONS(2530), 1, + ACTIONS(2569), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44508] = 9, - ACTIONS(2483), 1, + [46040] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2528), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2532), 1, + ACTIONS(2571), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44538] = 7, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_LT, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - ACTIONS(2538), 1, - anon_sym_SQUOTE, - STATE(1012), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1151), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44564] = 9, - ACTIONS(2483), 1, + [46070] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2503), 1, + ACTIONS(2551), 1, anon_sym_GT, - ACTIONS(2540), 1, + ACTIONS(2573), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44594] = 9, - ACTIONS(2483), 1, + [46100] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2507), 1, + ACTIONS(2565), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(2575), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44624] = 9, - ACTIONS(2483), 1, + [46130] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2545), 1, anon_sym_SLASH_GT, - STATE(1052), 1, + STATE(1080), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44654] = 9, - ACTIONS(2483), 1, + [46160] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2503), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2544), 1, + ACTIONS(2577), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44684] = 7, - ACTIONS(2485), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_LT, - ACTIONS(2536), 1, - anon_sym_DQUOTE, - ACTIONS(2538), 1, - anon_sym_SQUOTE, - STATE(1012), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1154), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44710] = 9, - ACTIONS(2483), 1, + [46190] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2489), 1, - anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2559), 1, + anon_sym_GT, + ACTIONS(2579), 1, anon_sym_SLASH_GT, - STATE(1041), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44740] = 9, - ACTIONS(2483), 1, + [46220] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2528), 1, + ACTIONS(2565), 1, anon_sym_GT, - ACTIONS(2546), 1, + ACTIONS(2581), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44770] = 9, - ACTIONS(2483), 1, + [46250] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2548), 1, + ACTIONS(2583), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44800] = 9, - ACTIONS(2483), 1, + [46280] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2503), 1, + ACTIONS(2559), 1, anon_sym_GT, - ACTIONS(2550), 1, + ACTIONS(2585), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44830] = 9, - ACTIONS(2483), 1, + [46310] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2528), 1, + ACTIONS(2551), 1, anon_sym_GT, - ACTIONS(2552), 1, + ACTIONS(2587), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44860] = 9, - ACTIONS(2483), 1, + [46340] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2539), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2565), 1, anon_sym_GT, - ACTIONS(2554), 1, + ACTIONS(2589), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44890] = 9, - ACTIONS(2483), 1, + [46370] = 9, + ACTIONS(2531), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2533), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2507), 1, + ACTIONS(2537), 1, anon_sym_GT, - ACTIONS(2556), 1, + ACTIONS(2539), 1, + sym_jsx_identifier, + ACTIONS(2547), 1, anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1084), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44920] = 9, - ACTIONS(2483), 1, + [46400] = 7, + ACTIONS(2533), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LT, + ACTIONS(2593), 1, + anon_sym_DQUOTE, + ACTIONS(2595), 1, + anon_sym_SQUOTE, + STATE(1049), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1195), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [46426] = 7, + ACTIONS(2533), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_LT, + ACTIONS(2593), 1, + anon_sym_DQUOTE, + ACTIONS(2595), 1, + anon_sym_SQUOTE, + STATE(1049), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1201), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [46452] = 8, + ACTIONS(2597), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2600), 1, anon_sym_LBRACE, - ACTIONS(2491), 1, + ACTIONS(2605), 1, sym_jsx_identifier, - ACTIONS(2524), 1, - anon_sym_GT, - ACTIONS(2558), 1, - anon_sym_SLASH_GT, - STATE(1038), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1083), 1, + STATE(1124), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1170), 2, + ACTIONS(2603), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1196), 2, sym_jsx_expression, sym_jsx_attribute, - [44950] = 8, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [46480] = 8, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2560), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2562), 1, + ACTIONS(2610), 1, anon_sym_COMMA, - ACTIONS(2564), 1, + ACTIONS(2612), 1, anon_sym_RBRACE, - STATE(1279), 1, + STATE(1388), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, + STATE(1704), 2, + sym__module_export_name, + sym_string, + [46507] = 8, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2614), 1, + sym_identifier, + ACTIONS(2616), 1, + anon_sym_COMMA, + ACTIONS(2618), 1, + anon_sym_RBRACE, + STATE(1345), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1346), 2, sym__module_export_name, sym_string, - [44977] = 8, - ACTIONS(863), 1, + [46534] = 5, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2620), 1, + sym_identifier, + ACTIONS(2624), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2622), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46554] = 7, + ACTIONS(865), 1, anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2608), 1, + sym_identifier, + ACTIONS(2626), 1, + anon_sym_RBRACE, + STATE(1554), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1704), 2, + sym__module_export_name, + sym_string, + [46578] = 6, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + sym_identifier, + STATE(1255), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1184), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46600] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2139), 1, + anon_sym_EQ, + ACTIONS(2141), 1, + anon_sym_RBRACE, + STATE(1351), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46624] = 5, + ACTIONS(2634), 1, + anon_sym_EQ, + STATE(1207), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2632), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [46644] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2139), 1, + anon_sym_EQ, + ACTIONS(2145), 1, + anon_sym_RBRACE, + STATE(1351), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46668] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(817), 1, + anon_sym_RBRACE, + ACTIONS(2139), 1, + anon_sym_EQ, + STATE(1351), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46692] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(845), 1, + anon_sym_RBRACE, + ACTIONS(2139), 1, + anon_sym_EQ, + STATE(1351), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46716] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2636), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [46730] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2566), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2568), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(2638), 1, anon_sym_RBRACE, - STATE(1351), 1, - sym_export_specifier, + STATE(1554), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1344), 2, + STATE(1704), 2, sym__module_export_name, sym_string, - [45004] = 5, - ACTIONS(2576), 1, + [46754] = 6, + ACTIONS(2640), 1, anon_sym_EQ, - STATE(1183), 1, + ACTIONS(2642), 1, + sym__automatic_semicolon, + STATE(1349), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2574), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2572), 3, - sym__automatic_semicolon, + ACTIONS(2630), 2, anon_sym_COMMA, anon_sym_SEMI, - [45024] = 7, - ACTIONS(103), 1, + ACTIONS(2632), 2, + anon_sym_in, + anon_sym_of, + [46776] = 4, + ACTIONS(2645), 1, anon_sym_COMMA, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, - aux_sym_object_repeat1, + STATE(1102), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, + ACTIONS(1510), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [45048] = 6, - ACTIONS(931), 1, + anon_sym_RBRACK, + [46794] = 6, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(933), 1, + ACTIONS(914), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2648), 1, sym_identifier, - STATE(1192), 1, + STATE(1254), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, + STATE(1095), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45070] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [46816] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2650), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [46830] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2566), 1, + ACTIONS(2614), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2652), 1, anon_sym_RBRACE, - STATE(1403), 1, + STATE(1464), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1344), 2, + STATE(1346), 2, sym__module_export_name, sym_string, - [45094] = 6, - ACTIONS(931), 1, + [46854] = 6, + ACTIONS(912), 1, anon_sym_LBRACE, - ACTIONS(933), 1, + ACTIONS(914), 1, anon_sym_LBRACK, - ACTIONS(2578), 1, + ACTIONS(2628), 1, sym_identifier, - STATE(1187), 1, + STATE(1296), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, + STATE(1184), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45116] = 5, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2582), 1, + [46876] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2654), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [46890] = 6, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + ACTIONS(2656), 1, sym_identifier, - ACTIONS(2586), 1, + STATE(1255), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1101), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [46912] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2139), 1, anon_sym_EQ, + ACTIONS(2143), 1, + anon_sym_RBRACE, + STATE(1351), 1, + aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2584), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45136] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46936] = 7, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2566), 1, + ACTIONS(2614), 1, sym_identifier, - ACTIONS(2588), 1, + ACTIONS(2658), 1, anon_sym_RBRACE, - STATE(1403), 1, + STATE(1464), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1344), 2, + STATE(1346), 2, sym__module_export_name, sym_string, - [45160] = 7, + [46960] = 7, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(811), 1, + ACTIONS(843), 1, anon_sym_RBRACE, - ACTIONS(2089), 1, + ACTIONS(2139), 1, anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, + STATE(1370), 1, aux_sym_object_repeat1, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, + ACTIONS(2137), 2, anon_sym_LPAREN, anon_sym_COLON, - [45184] = 2, + [46984] = 4, + ACTIONS(1727), 1, + anon_sym_COMMA, + STATE(1102), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 7, - anon_sym_COMMA, + ACTIONS(2660), 5, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACK, - [45198] = 2, + [47002] = 6, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + sym_identifier, + STATE(1254), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1184), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2592), 7, + ACTIONS(2662), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73436,11 +77073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45212] = 2, + [47038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 7, + ACTIONS(2664), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -73448,7223 +77085,7105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45226] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(2089), 1, + [47052] = 6, + ACTIONS(2640), 1, anon_sym_EQ, - ACTIONS(2091), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, + ACTIONS(2666), 1, anon_sym_LPAREN, - anon_sym_COLON, - [45250] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2093), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, + STATE(1557), 1, + sym__initializer, + STATE(1594), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45274] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2560), 1, - sym_identifier, - ACTIONS(2596), 1, - anon_sym_RBRACE, - STATE(1376), 1, - sym_import_specifier, + ACTIONS(2668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, - sym__module_export_name, - sym_string, - [45298] = 7, - ACTIONS(103), 1, + ACTIONS(1410), 6, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2097), 1, anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, + anon_sym_from, anon_sym_LPAREN, anon_sym_COLON, - [45322] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(837), 1, + [47086] = 5, + ACTIONS(2670), 1, + anon_sym_default, + ACTIONS(2672), 1, anon_sym_RBRACE, - ACTIONS(2089), 1, - anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45346] = 5, - ACTIONS(2598), 1, - anon_sym_EQ, - STATE(1270), 1, - sym__initializer, + ACTIONS(2674), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2574), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2572), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [45366] = 7, - ACTIONS(863), 1, - anon_sym_DQUOTE, + STATE(1123), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [47105] = 6, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2560), 1, + ACTIONS(2608), 1, sym_identifier, - ACTIONS(2600), 1, - anon_sym_RBRACE, - STATE(1376), 1, + STATE(1554), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1626), 2, + STATE(1704), 2, sym__module_export_name, sym_string, - [45390] = 2, + [47126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1554), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47141] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 7, + ACTIONS(2664), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - anon_sym_RBRACK, - [45404] = 7, - ACTIONS(103), 1, - anon_sym_COMMA, - ACTIONS(839), 1, + [47154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2676), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47169] = 5, + ACTIONS(2678), 1, + anon_sym_default, + ACTIONS(2681), 1, anon_sym_RBRACE, - ACTIONS(2089), 1, - anon_sym_EQ, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - STATE(1340), 1, - aux_sym_object_repeat1, + ACTIONS(2683), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45428] = 6, - ACTIONS(931), 1, - anon_sym_LBRACE, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(2604), 1, + STATE(1123), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [47188] = 4, + ACTIONS(2686), 1, sym_identifier, - STATE(1187), 1, - sym_variable_declarator, + ACTIONS(2690), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1074), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45450] = 6, - ACTIONS(931), 1, + ACTIONS(2688), 4, anon_sym_LBRACE, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(2578), 1, - sym_identifier, - STATE(1309), 1, - sym_variable_declarator, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47205] = 6, + ACTIONS(2640), 1, + anon_sym_EQ, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1402), 1, + sym_formal_parameters, + STATE(1474), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1149), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45472] = 6, - ACTIONS(931), 1, - anon_sym_LBRACE, - ACTIONS(933), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - sym_identifier, - STATE(1192), 1, - sym_variable_declarator, + ACTIONS(2692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47226] = 6, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1613), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_DOT, + ACTIONS(2694), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1058), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45494] = 2, + STATE(717), 2, + sym_template_string, + sym_arguments, + [47247] = 5, + ACTIONS(2698), 1, + anon_sym_BQUOTE, + ACTIONS(2700), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2608), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45508] = 5, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(2610), 1, + ACTIONS(2696), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1131), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47266] = 6, + ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2614), 1, sym_identifier, - ACTIONS(2612), 1, - anon_sym_LBRACK, + STATE(1464), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1388), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45527] = 4, - ACTIONS(2614), 1, - sym_identifier, - ACTIONS(2618), 1, + STATE(1346), 2, + sym__module_export_name, + sym_string, + [47287] = 6, + ACTIONS(2640), 1, anon_sym_EQ, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1556), 1, + sym_formal_parameters, + STATE(1629), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2616), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45544] = 5, - ACTIONS(2622), 1, + ACTIONS(2702), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47308] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1418), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [47321] = 5, + ACTIONS(2707), 1, anon_sym_BQUOTE, - ACTIONS(2624), 1, + ACTIONS(2709), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2620), 2, + ACTIONS(2704), 2, sym__template_chars, sym_escape_sequence, - STATE(1132), 2, + STATE(1131), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [45563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [47340] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(1555), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45578] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1555), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45593] = 3, + ACTIONS(2650), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1555), 6, + ACTIONS(2712), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45608] = 3, + [47368] = 5, + ACTIONS(1929), 1, + anon_sym_LBRACE, + ACTIONS(2714), 1, + sym_identifier, + ACTIONS(2716), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1225), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47387] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1555), 6, + ACTIONS(2718), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45623] = 3, + [47402] = 5, + ACTIONS(912), 1, + anon_sym_LBRACE, + ACTIONS(914), 1, + anon_sym_LBRACK, + ACTIONS(2720), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1302), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47421] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2626), 6, + ACTIONS(2722), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45638] = 5, - ACTIONS(2628), 1, + [47436] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1789), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47449] = 5, + ACTIONS(2670), 1, anon_sym_default, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(2633), 1, + ACTIONS(2674), 1, anon_sym_case, + ACTIONS(2724), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1090), 3, + STATE(1118), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [45657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1439), 6, + [47468] = 5, + ACTIONS(1929), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45672] = 3, + ACTIONS(2716), 1, + anon_sym_LBRACK, + ACTIONS(2726), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1685), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47487] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2636), 6, + ACTIONS(1562), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45687] = 6, - ACTIONS(2598), 1, - anon_sym_EQ, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1402), 1, - sym__initializer, - STATE(1567), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2640), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45708] = 3, + [47502] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2642), 6, + ACTIONS(1562), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45723] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1367), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [45736] = 3, + [47517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2644), 6, + ACTIONS(1562), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45751] = 6, - ACTIONS(2598), 1, - anon_sym_EQ, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1401), 1, - sym__initializer, - STATE(1569), 1, - sym_formal_parameters, + [47532] = 3, + ACTIONS(2728), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2646), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2648), 6, + ACTIONS(2730), 5, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45787] = 3, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2648), 6, + ACTIONS(1562), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45802] = 3, + [47562] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2648), 6, + ACTIONS(1380), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [45817] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2602), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [45830] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1407), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [45843] = 3, - ACTIONS(2650), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2652), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - [45858] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2594), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [45871] = 4, - ACTIONS(1693), 1, - anon_sym_COMMA, - STATE(1115), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2732), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47592] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2654), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45888] = 3, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1524), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2648), 6, + ACTIONS(1528), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45903] = 6, - ACTIONS(402), 1, - anon_sym_BQUOTE, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(1314), 1, - anon_sym_DOT, - ACTIONS(2656), 1, - sym_optional_chain, + [47622] = 3, + ACTIONS(2734), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(542), 2, - sym_template_string, - sym_arguments, - [45924] = 3, + ACTIONS(2736), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [47637] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1419), 6, + ACTIONS(2738), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [45939] = 5, - ACTIONS(2624), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2658), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2620), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1132), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [45958] = 5, - ACTIONS(2624), 1, + [47652] = 5, + ACTIONS(2700), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2742), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2660), 2, + ACTIONS(2740), 2, sym__template_chars, sym_escape_sequence, - STATE(1109), 2, + STATE(1165), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [45977] = 6, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2566), 1, - sym_identifier, - STATE(1403), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1344), 2, - sym__module_export_name, - sym_string, - [45998] = 3, + [47671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2664), 6, + ACTIONS(2732), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46013] = 5, - ACTIONS(2666), 1, - anon_sym_default, - ACTIONS(2668), 1, - anon_sym_RBRACE, - ACTIONS(2670), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1124), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46032] = 3, - ACTIONS(2672), 1, - sym_identifier, + [47686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2674), 5, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46047] = 4, - ACTIONS(2676), 1, + ACTIONS(2654), 6, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(1115), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1541), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [46064] = 5, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(2612), 1, - anon_sym_LBRACK, - ACTIONS(2679), 1, - sym_identifier, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47699] = 6, + ACTIONS(2640), 1, + anon_sym_EQ, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1559), 1, + sym__initializer, + STATE(1595), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1638), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46083] = 6, - ACTIONS(83), 1, + ACTIONS(2744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47720] = 6, + ACTIONS(402), 1, anon_sym_BQUOTE, - ACTIONS(1443), 1, + ACTIONS(1342), 1, anon_sym_LPAREN, - ACTIONS(1447), 1, + ACTIONS(1346), 1, anon_sym_DOT, - ACTIONS(2681), 1, + ACTIONS(2746), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(719), 2, + STATE(565), 2, sym_template_string, sym_arguments, - [46104] = 6, - ACTIONS(2598), 1, - anon_sym_EQ, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym__initializer, - STATE(1524), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2683), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46125] = 2, + [47741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1748), 6, + ACTIONS(2662), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, - anon_sym_SEMI, anon_sym_EQ, - [46138] = 2, + [47754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 6, + ACTIONS(1797), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, - anon_sym_SEMI, anon_sym_EQ, - [46151] = 5, - ACTIONS(1222), 1, - anon_sym_LBRACE, - ACTIONS(2612), 1, - anon_sym_LBRACK, - ACTIONS(2685), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1194), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46170] = 3, + [47767] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1501), 6, + ACTIONS(1404), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46185] = 2, + [47782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 6, + ACTIONS(1787), 6, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [46198] = 5, - ACTIONS(2666), 1, - anon_sym_default, - ACTIONS(2670), 1, - anon_sym_case, - ACTIONS(2687), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1090), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46217] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2592), 6, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_in, anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [46230] = 6, - ACTIONS(2598), 1, anon_sym_EQ, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1417), 1, - sym__initializer, - STATE(1589), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46251] = 2, + [47795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2608), 6, + ACTIONS(2636), 6, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [46264] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1753), 6, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_in, anon_sym_of, - anon_sym_SEMI, anon_sym_EQ, - [46277] = 3, + [47808] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1571), 6, + ACTIONS(2732), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT, anon_sym_LT_SLASH, - [46292] = 6, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2560), 1, - sym_identifier, - STATE(1376), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, + [47823] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1626), 2, - sym__module_export_name, - sym_string, - [46313] = 5, - ACTIONS(2624), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2732), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT, + anon_sym_LT_SLASH, + [47838] = 5, + ACTIONS(2700), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2693), 1, + ACTIONS(2750), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2691), 2, + ACTIONS(2748), 2, sym__template_chars, sym_escape_sequence, - STATE(1084), 2, + STATE(1127), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46332] = 5, - ACTIONS(2698), 1, - anon_sym_BQUOTE, + [47857] = 5, ACTIONS(2700), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2752), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 2, + ACTIONS(2696), 2, sym__template_chars, sym_escape_sequence, - STATE(1132), 2, + STATE(1131), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1357), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT, - anon_sym_LT_SLASH, - [46366] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1557), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46380] = 6, - ACTIONS(2703), 1, + [47876] = 6, + ACTIONS(2754), 1, sym_identifier, - ACTIONS(2705), 1, + ACTIONS(2756), 1, anon_sym_GT, - ACTIONS(2707), 1, + ACTIONS(2758), 1, sym_jsx_identifier, - STATE(1359), 1, + STATE(1417), 1, sym_nested_identifier, - STATE(1647), 1, + STATE(1698), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46400] = 5, - ACTIONS(2045), 1, - anon_sym_COMMA, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1271), 1, - aux_sym_object_repeat1, + [47896] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2760), 1, + anon_sym_export, + ACTIONS(2762), 1, + anon_sym_class, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [46418] = 6, - ACTIONS(2709), 1, + [47916] = 3, + ACTIONS(1528), 1, sym_identifier, - ACTIONS(2711), 1, - anon_sym_GT, - ACTIONS(2713), 1, - sym_jsx_identifier, - STATE(1031), 1, - sym_nested_identifier, - STATE(1045), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46438] = 4, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46454] = 3, - ACTIONS(2715), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46468] = 6, - ACTIONS(2711), 1, + ACTIONS(1530), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2717), 1, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47930] = 6, + ACTIONS(2764), 1, sym_identifier, - ACTIONS(2719), 1, + ACTIONS(2766), 1, + anon_sym_GT, + ACTIONS(2768), 1, sym_jsx_identifier, - STATE(1026), 1, + STATE(1059), 1, sym_nested_identifier, - STATE(1036), 1, + STATE(1067), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46488] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2721), 1, - anon_sym_export, - ACTIONS(2723), 1, - anon_sym_class, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, + [47950] = 6, + ACTIONS(2770), 1, + sym_identifier, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2774), 1, + anon_sym_extends, + STATE(716), 1, + sym_class_body, + STATE(1560), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46508] = 3, - ACTIONS(2725), 1, + [47970] = 3, + ACTIONS(1562), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2727), 4, + ACTIONS(1564), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46522] = 6, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2729), 1, - anon_sym_export, - ACTIONS(2731), 1, - anon_sym_class, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46542] = 3, - ACTIONS(2733), 1, + [47984] = 3, + ACTIONS(1562), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2735), 4, + ACTIONS(1564), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46556] = 6, - ACTIONS(2737), 1, - sym_identifier, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2741), 1, - anon_sym_extends, - STATE(673), 1, - sym_class_body, - STATE(1476), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46576] = 6, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(2087), 1, - anon_sym_COLON, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2743), 1, - anon_sym_RBRACE, - STATE(1332), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46596] = 5, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - anon_sym_SQUOTE, - ACTIONS(2745), 1, + [47998] = 3, + ACTIONS(1562), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1635), 2, - sym__module_export_name, - sym_string, - [46614] = 6, - ACTIONS(2739), 1, + ACTIONS(1564), 4, anon_sym_LBRACE, - ACTIONS(2741), 1, - anon_sym_extends, - ACTIONS(2747), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [48012] = 6, + ACTIONS(1342), 1, + anon_sym_LPAREN, + ACTIONS(2776), 1, sym_identifier, - STATE(673), 1, - sym_class_body, - STATE(1476), 1, - sym_class_heritage, + ACTIONS(2778), 1, + anon_sym_LBRACK, + ACTIONS(2780), 1, + sym_private_property_identifier, + STATE(568), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46634] = 4, - ACTIONS(2598), 1, + [48032] = 3, + ACTIONS(2782), 1, anon_sym_EQ, - STATE(1270), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2572), 3, - sym__automatic_semicolon, + ACTIONS(1307), 4, anon_sym_COMMA, - anon_sym_SEMI, - [46650] = 3, - ACTIONS(2626), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48046] = 3, + ACTIONS(1562), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2749), 4, + ACTIONS(1564), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46664] = 3, - ACTIONS(2751), 1, + [48060] = 3, + ACTIONS(2785), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2753), 4, + ACTIONS(2787), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46678] = 6, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2741), 1, - anon_sym_extends, - ACTIONS(2755), 1, - sym_identifier, - STATE(673), 1, - sym_class_body, - STATE(1476), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46698] = 6, - ACTIONS(2757), 1, - sym_identifier, - ACTIONS(2759), 1, - anon_sym_GT, - ACTIONS(2761), 1, - sym_jsx_identifier, - STATE(1479), 1, - sym_nested_identifier, - STATE(1634), 1, - sym_jsx_namespace_name, + [48074] = 3, + ACTIONS(2789), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46718] = 3, - ACTIONS(2763), 1, + ACTIONS(1307), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48088] = 3, + ACTIONS(2718), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2765), 4, + ACTIONS(2792), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46732] = 6, - ACTIONS(1443), 1, - anon_sym_LPAREN, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACK, - ACTIONS(2771), 1, - sym_private_property_identifier, - STATE(658), 1, - sym_arguments, + [48102] = 6, + ACTIONS(2121), 1, + anon_sym_COMMA, + ACTIONS(2137), 1, + anon_sym_COLON, + ACTIONS(2139), 1, + anon_sym_EQ, + ACTIONS(2794), 1, + anon_sym_RBRACE, + STATE(1291), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46752] = 3, - ACTIONS(1439), 1, + [48122] = 3, + ACTIONS(1380), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1441), 4, + ACTIONS(1382), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46766] = 3, - ACTIONS(2642), 1, + [48136] = 6, + ACTIONS(2796), 1, sym_identifier, + ACTIONS(2798), 1, + anon_sym_GT, + ACTIONS(2800), 1, + sym_jsx_identifier, + STATE(1575), 1, + sym_nested_identifier, + STATE(1653), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2773), 4, - anon_sym_LBRACE, + [48156] = 6, + ACTIONS(2766), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46780] = 6, - ACTIONS(2711), 1, - anon_sym_GT, - ACTIONS(2775), 1, + ACTIONS(2802), 1, sym_identifier, - ACTIONS(2777), 1, + ACTIONS(2804), 1, sym_jsx_identifier, - STATE(1025), 1, + STATE(1060), 1, sym_nested_identifier, - STATE(1033), 1, + STATE(1085), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46800] = 2, + [48176] = 4, + ACTIONS(2640), 1, + anon_sym_EQ, + STATE(1349), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2630), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [48192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1407), 5, + ACTIONS(1410), 5, sym__automatic_semicolon, anon_sym_with, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [46812] = 6, - ACTIONS(2739), 1, + [48204] = 6, + ACTIONS(2772), 1, anon_sym_LBRACE, - ACTIONS(2741), 1, + ACTIONS(2774), 1, anon_sym_extends, - ACTIONS(2779), 1, + ACTIONS(2806), 1, sym_identifier, - STATE(684), 1, + STATE(718), 1, sym_class_body, - STATE(1557), 1, + STATE(1593), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46832] = 6, - ACTIONS(2739), 1, + [48224] = 3, + ACTIONS(1404), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1406), 4, anon_sym_LBRACE, - ACTIONS(2741), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [48238] = 6, + ACTIONS(2121), 1, + anon_sym_COMMA, + ACTIONS(2137), 1, + anon_sym_COLON, + ACTIONS(2139), 1, + anon_sym_EQ, + ACTIONS(2808), 1, + anon_sym_RBRACE, + STATE(1375), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48258] = 6, + ACTIONS(2774), 1, anon_sym_extends, - ACTIONS(2781), 1, + ACTIONS(2810), 1, sym_identifier, - STATE(684), 1, + ACTIONS(2812), 1, + anon_sym_LBRACE, + STATE(575), 1, sym_class_body, - STATE(1557), 1, + STATE(1585), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46852] = 3, - ACTIONS(1555), 1, + [48278] = 3, + ACTIONS(1524), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1557), 4, + ACTIONS(1526), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46866] = 6, - ACTIONS(2741), 1, - anon_sym_extends, - ACTIONS(2783), 1, + [48292] = 3, + ACTIONS(2722), 1, sym_identifier, - ACTIONS(2785), 1, - anon_sym_LBRACE, - STATE(547), 1, - sym_class_body, - STATE(1596), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46886] = 3, - ACTIONS(2787), 1, - anon_sym_EQ, + ACTIONS(2814), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [48306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 4, + ACTIONS(1307), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_EQ, anon_sym_RBRACK, - [46900] = 6, - ACTIONS(2739), 1, + [48318] = 6, + ACTIONS(2772), 1, anon_sym_LBRACE, - ACTIONS(2741), 1, + ACTIONS(2774), 1, anon_sym_extends, - ACTIONS(2790), 1, + ACTIONS(2816), 1, sym_identifier, - STATE(684), 1, + STATE(718), 1, sym_class_body, - STATE(1557), 1, + STATE(1593), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46920] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1557), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46934] = 5, - ACTIONS(863), 1, - anon_sym_DQUOTE, + [48338] = 5, ACTIONS(865), 1, + anon_sym_DQUOTE, + ACTIONS(867), 1, anon_sym_SQUOTE, - ACTIONS(2792), 1, + ACTIONS(2818), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1399), 2, + STATE(1479), 2, sym__module_export_name, sym_string, - [46952] = 6, - ACTIONS(2741), 1, - anon_sym_extends, - ACTIONS(2785), 1, - anon_sym_LBRACE, - ACTIONS(2794), 1, + [48356] = 3, + ACTIONS(2820), 1, sym_identifier, - STATE(573), 1, - sym_class_body, - STATE(1570), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46972] = 6, - ACTIONS(2711), 1, + ACTIONS(2822), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2796), 1, - sym_identifier, - ACTIONS(2798), 1, sym_jsx_identifier, - STATE(1028), 1, - sym_nested_identifier, - STATE(1048), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46992] = 3, - ACTIONS(2800), 1, + anon_sym_SLASH_GT, + [48370] = 3, + ACTIONS(2824), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2802), 4, + ACTIONS(2826), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47006] = 6, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(2087), 1, - anon_sym_COLON, - ACTIONS(2089), 1, - anon_sym_EQ, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1300), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47026] = 3, - ACTIONS(2806), 1, + [48384] = 4, + ACTIONS(2139), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 4, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2160), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47040] = 3, - ACTIONS(1555), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1557), 4, + [48400] = 6, + ACTIONS(2772), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47054] = 2, + ACTIONS(2774), 1, + anon_sym_extends, + ACTIONS(2828), 1, + sym_identifier, + STATE(716), 1, + sym_class_body, + STATE(1560), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1367), 5, - sym__automatic_semicolon, - anon_sym_with, + [48420] = 6, + ACTIONS(1613), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [47066] = 2, + ACTIONS(2830), 1, + sym_identifier, + ACTIONS(2832), 1, + anon_sym_LBRACK, + ACTIONS(2834), 1, + sym_private_property_identifier, + STATE(710), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1269), 5, + [48440] = 5, + ACTIONS(2095), 1, anon_sym_COMMA, + ACTIONS(2163), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [47078] = 3, - ACTIONS(1571), 1, - sym_identifier, + STATE(1360), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1573), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47092] = 3, - ACTIONS(1357), 1, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [48458] = 3, + ACTIONS(2836), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 4, + ACTIONS(2838), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47106] = 6, - ACTIONS(2809), 1, + [48472] = 6, + ACTIONS(2840), 1, sym_identifier, - ACTIONS(2811), 1, + ACTIONS(2842), 1, anon_sym_GT, - ACTIONS(2813), 1, + ACTIONS(2844), 1, sym_jsx_identifier, - STATE(1573), 1, + STATE(1570), 1, sym_nested_identifier, - STATE(1684), 1, + STATE(1638), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47126] = 3, - ACTIONS(1419), 1, + [48492] = 3, + ACTIONS(2846), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 4, + ACTIONS(2848), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47140] = 3, - ACTIONS(1501), 1, + [48506] = 6, + ACTIONS(2850), 1, + sym_identifier, + ACTIONS(2852), 1, + anon_sym_GT, + ACTIONS(2854), 1, + sym_jsx_identifier, + STATE(1447), 1, + sym_nested_identifier, + STATE(1702), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48526] = 3, + ACTIONS(1554), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1503), 4, + ACTIONS(1556), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47154] = 6, - ACTIONS(1310), 1, - anon_sym_LPAREN, - ACTIONS(2815), 1, - sym_identifier, - ACTIONS(2817), 1, - anon_sym_LBRACK, - ACTIONS(2819), 1, - sym_private_property_identifier, - STATE(565), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47174] = 6, - ACTIONS(2821), 1, + [48540] = 6, + ACTIONS(2774), 1, + anon_sym_extends, + ACTIONS(2812), 1, + anon_sym_LBRACE, + ACTIONS(2856), 1, sym_identifier, - ACTIONS(2823), 1, - anon_sym_GT, - ACTIONS(2825), 1, - sym_jsx_identifier, - STATE(1429), 1, - sym_nested_identifier, - STATE(1642), 1, - sym_jsx_namespace_name, + STATE(553), 1, + sym_class_body, + STATE(1614), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47194] = 4, - ACTIONS(2829), 1, + [48560] = 4, + ACTIONS(2860), 1, anon_sym_in, - ACTIONS(2831), 1, + ACTIONS(2862), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 3, + ACTIONS(2858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [47210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [48576] = 6, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2774), 1, + anon_sym_extends, + ACTIONS(2864), 1, + sym_identifier, + STATE(718), 1, + sym_class_body, + STATE(1593), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2833), 1, - sym_html_character_reference, - ACTIONS(2836), 1, + sym_comment, + [48596] = 5, + ACTIONS(865), 1, anon_sym_DQUOTE, - ACTIONS(2838), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1184), 1, - aux_sym__jsx_string_repeat1, - [47229] = 5, + ACTIONS(867), 1, + anon_sym_SQUOTE, + ACTIONS(2866), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1672), 2, + sym__module_export_name, + sym_string, + [48614] = 6, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2731), 1, + ACTIONS(2868), 1, + anon_sym_export, + ACTIONS(2870), 1, anon_sym_class, - STATE(936), 1, + STATE(965), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47246] = 3, - ACTIONS(2841), 1, - anon_sym_DOT, + [48634] = 6, + ACTIONS(2766), 1, + anon_sym_GT, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2874), 1, + sym_jsx_identifier, + STATE(1064), 1, + sym_nested_identifier, + STATE(1072), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2465), 3, - anon_sym_LPAREN, - sym_optional_chain, - anon_sym_BQUOTE, - [47259] = 4, - ACTIONS(2843), 1, - anon_sym_COMMA, - STATE(1251), 1, - aux_sym_variable_declaration_repeat1, + [48654] = 6, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2774), 1, + anon_sym_extends, + ACTIONS(2876), 1, + sym_identifier, + STATE(716), 1, + sym_class_body, + STATE(1560), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2845), 2, + ACTIONS(1418), 5, sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, anon_sym_SEMI, - [47274] = 4, - ACTIONS(1670), 1, + anon_sym_EQ, + [48686] = 6, + ACTIONS(2766), 1, + anon_sym_GT, + ACTIONS(2878), 1, + sym_identifier, + ACTIONS(2880), 1, + sym_jsx_identifier, + STATE(1065), 1, + sym_nested_identifier, + STATE(1077), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48706] = 3, + ACTIONS(2882), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1301), 4, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48720] = 5, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(2884), 1, + sym_identifier, + ACTIONS(2886), 1, + anon_sym_STAR, + STATE(1500), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2654), 2, - sym__automatic_semicolon, + [48737] = 5, + ACTIONS(2888), 1, + anon_sym_with, + ACTIONS(2890), 1, anon_sym_SEMI, - [47289] = 5, - ACTIONS(3), 1, + ACTIONS(2892), 1, + sym__automatic_semicolon, + STATE(1450), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [48754] = 5, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + anon_sym_extends, + STATE(714), 1, + sym_class_body, + STATE(1605), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2847), 1, - anon_sym_SQUOTE, - STATE(1249), 1, - aux_sym_string_repeat2, - ACTIONS(2849), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47306] = 5, + sym_comment, + [48771] = 5, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2723), 1, + ACTIONS(2896), 1, anon_sym_class, - STATE(936), 1, + STATE(965), 1, aux_sym_export_statement_repeat1, - STATE(977), 1, + STATE(1002), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47323] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2847), 1, - anon_sym_DQUOTE, - STATE(1252), 1, - aux_sym_string_repeat1, - ACTIONS(2851), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47340] = 4, - ACTIONS(2843), 1, - anon_sym_COMMA, - STATE(1250), 1, - aux_sym_variable_declaration_repeat1, + [48788] = 5, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + anon_sym_extends, + STATE(733), 1, + sym_class_body, + STATE(1395), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2853), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47355] = 4, - ACTIONS(2855), 1, - anon_sym_with, - STATE(1541), 1, - sym_import_attribute, + [48805] = 5, + ACTIONS(2772), 1, + anon_sym_LBRACE, + ACTIONS(2894), 1, + anon_sym_extends, + STATE(736), 1, + sym_class_body, + STATE(1423), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47370] = 4, - ACTIONS(2859), 1, - anon_sym_EQ, - STATE(1453), 1, - sym__initializer, + [48822] = 5, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(2898), 1, + sym_identifier, + ACTIONS(2900), 1, + anon_sym_STAR, + STATE(1491), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2574), 2, - anon_sym_in, - anon_sym_of, - [47385] = 5, - ACTIONS(2861), 1, + [48839] = 5, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, + ACTIONS(2894), 1, anon_sym_extends, - STATE(326), 1, + STATE(571), 1, sym_class_body, - STATE(1467), 1, + STATE(1398), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47402] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [48856] = 5, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(2904), 1, + anon_sym_STAR, + STATE(1489), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2865), 1, - anon_sym_SQUOTE, - STATE(1189), 1, - aux_sym_string_repeat2, - ACTIONS(2867), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47419] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [48873] = 4, + ACTIONS(2906), 1, + anon_sym_EQ, + STATE(1466), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2869), 1, - anon_sym_SQUOTE, - STATE(1249), 1, - aux_sym_string_repeat2, - ACTIONS(2849), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47436] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2865), 1, - anon_sym_DQUOTE, - STATE(1191), 1, - aux_sym_string_repeat1, - ACTIONS(2871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47453] = 6, + ACTIONS(2632), 2, + anon_sym_in, + anon_sym_of, + [48888] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2873), 1, + ACTIONS(2908), 1, sym_html_character_reference, - ACTIONS(2875), 1, + ACTIONS(2910), 1, anon_sym_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2912), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1220), 1, + STATE(1250), 1, aux_sym__jsx_string_repeat1, - [47472] = 6, + [48907] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2875), 1, + ACTIONS(2910), 1, anon_sym_SQUOTE, - ACTIONS(2879), 1, + ACTIONS(2914), 1, sym_html_character_reference, - ACTIONS(2881), 1, + ACTIONS(2916), 1, sym_unescaped_single_jsx_string_fragment, - STATE(1221), 1, + STATE(1253), 1, aux_sym__jsx_string_repeat2, - [47491] = 5, + [48926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1789), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [48937] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2883), 1, + ACTIONS(2918), 1, anon_sym_DQUOTE, - STATE(1206), 1, + STATE(1233), 1, aux_sym_string_repeat1, - ACTIONS(2885), 2, + ACTIONS(2920), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47508] = 5, + [48954] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2883), 1, + ACTIONS(2918), 1, anon_sym_SQUOTE, - STATE(1208), 1, + STATE(1234), 1, aux_sym_string_repeat2, - ACTIONS(2887), 2, + ACTIONS(2922), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47525] = 5, + [48971] = 4, + ACTIONS(2924), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1807), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48986] = 3, + ACTIONS(2927), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1301), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [48999] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2869), 1, + ACTIONS(2929), 1, anon_sym_DQUOTE, - STATE(1252), 1, + STATE(1247), 1, aux_sym_string_repeat1, - ACTIONS(2851), 2, + ACTIONS(2931), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47542] = 5, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(2889), 1, - sym_identifier, - ACTIONS(2891), 1, - anon_sym_STAR, - STATE(1471), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, + [49016] = 5, + ACTIONS(3), 1, sym_comment, - [47559] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2929), 1, + anon_sym_SQUOTE, + STATE(1248), 1, + aux_sym_string_repeat2, + ACTIONS(2933), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2893), 4, + ACTIONS(2935), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [47570] = 5, + [49044] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2895), 1, + ACTIONS(2937), 1, anon_sym_DQUOTE, - STATE(1252), 1, + STATE(1240), 1, aux_sym_string_repeat1, - ACTIONS(2851), 2, + ACTIONS(2939), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47587] = 5, - ACTIONS(674), 1, - anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_EQ, - ACTIONS(2899), 1, - anon_sym_RBRACK, - STATE(1317), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47604] = 5, + [49061] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2895), 1, + ACTIONS(2937), 1, anon_sym_SQUOTE, - STATE(1249), 1, + STATE(1241), 1, aux_sym_string_repeat2, - ACTIONS(2849), 2, + ACTIONS(2941), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47621] = 5, - ACTIONS(2897), 1, - anon_sym_EQ, - ACTIONS(2901), 1, + [49078] = 4, + ACTIONS(2943), 1, anon_sym_COMMA, - ACTIONS(2903), 1, - anon_sym_RPAREN, - STATE(1265), 1, - aux_sym_formal_parameters_repeat1, + STATE(1245), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47638] = 5, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, - sym_identifier, - ACTIONS(2907), 1, - anon_sym_STAR, - STATE(1492), 1, - sym_formal_parameters, + ACTIONS(2945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49093] = 4, + ACTIONS(2943), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47655] = 5, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2863), 1, - anon_sym_extends, - STATE(681), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(2947), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49108] = 5, + ACTIONS(3), 1, sym_comment, - [47672] = 3, - ACTIONS(2467), 1, - anon_sym_DOT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2949), 1, + anon_sym_DQUOTE, + STATE(1247), 1, + aux_sym_string_repeat1, + ACTIONS(2931), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49125] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 3, - anon_sym_LPAREN, - sym_optional_chain, - anon_sym_BQUOTE, - [47685] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2909), 1, - anon_sym_class, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2949), 1, + anon_sym_SQUOTE, + STATE(1248), 1, + aux_sym_string_repeat2, + ACTIONS(2933), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49142] = 5, + ACTIONS(672), 1, + anon_sym_COMMA, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(2953), 1, + anon_sym_RBRACK, + STATE(1331), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47702] = 5, - ACTIONS(2785), 1, + [49159] = 5, + ACTIONS(2812), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, + ACTIONS(2894), 1, anon_sym_extends, - STATE(511), 1, + STATE(533), 1, sym_class_body, - STATE(1400), 1, + STATE(1530), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47719] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2911), 1, - anon_sym_class, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, + [49176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47736] = 4, - ACTIONS(2913), 1, + ACTIONS(1854), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [49187] = 4, + ACTIONS(2955), 1, anon_sym_COMMA, - STATE(1216), 1, + STATE(1245), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2916), 2, + ACTIONS(2958), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47751] = 4, - ACTIONS(2918), 1, - anon_sym_from, - STATE(1583), 1, - sym__from_clause, - ACTIONS(5), 2, + [49202] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2960), 1, + anon_sym_DQUOTE, + STATE(1247), 1, + aux_sym_string_repeat1, + ACTIONS(2931), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49219] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47766] = 3, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2962), 1, + anon_sym_DQUOTE, + STATE(1247), 1, + aux_sym_string_repeat1, + ACTIONS(2964), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49236] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2087), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2135), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47779] = 5, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2863), 1, - anon_sym_extends, - STATE(659), 1, - sym_class_body, - STATE(1584), 1, - sym_class_heritage, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2967), 1, + anon_sym_SQUOTE, + STATE(1248), 1, + aux_sym_string_repeat2, + ACTIONS(2969), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49253] = 4, + ACTIONS(2888), 1, + anon_sym_with, + STATE(1471), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47796] = 6, + ACTIONS(2972), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49268] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2922), 1, + ACTIONS(2974), 1, sym_html_character_reference, - ACTIONS(2924), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE, - ACTIONS(2926), 1, + ACTIONS(2978), 1, sym_unescaped_double_jsx_string_fragment, - STATE(1184), 1, + STATE(1262), 1, aux_sym__jsx_string_repeat1, - [47815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - ACTIONS(2928), 1, - sym_html_character_reference, - ACTIONS(2930), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1232), 1, - aux_sym__jsx_string_repeat2, - [47834] = 5, - ACTIONS(2638), 1, + [49287] = 5, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(2932), 1, + ACTIONS(2980), 1, sym_identifier, - ACTIONS(2934), 1, + ACTIONS(2982), 1, anon_sym_STAR, - STATE(1601), 1, + STATE(1500), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47851] = 3, - ACTIONS(2936), 1, - anon_sym_EQ, + [49304] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2984), 1, + anon_sym_class, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1295), 3, + [49321] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2976), 1, + anon_sym_SQUOTE, + ACTIONS(2986), 1, + sym_html_character_reference, + ACTIONS(2988), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1263), 1, + aux_sym__jsx_string_repeat2, + [49340] = 4, + ACTIONS(2943), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47864] = 4, - ACTIONS(2087), 1, - anon_sym_COLON, - ACTIONS(2089), 1, - anon_sym_EQ, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2938), 2, + ACTIONS(2990), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49355] = 4, + ACTIONS(2943), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [47879] = 5, - ACTIONS(2861), 1, + STATE(1239), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2992), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49370] = 4, + ACTIONS(2509), 1, + anon_sym_STAR, + ACTIONS(2511), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, - anon_sym_extends, - STATE(335), 1, - sym_class_body, - STATE(1390), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47896] = 5, - ACTIONS(2638), 1, + STATE(1690), 2, + sym_namespace_import, + sym_named_imports, + [49385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2960), 1, + anon_sym_SQUOTE, + STATE(1248), 1, + aux_sym_string_repeat2, + ACTIONS(2933), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49402] = 5, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(2940), 1, + ACTIONS(2994), 1, sym_identifier, - ACTIONS(2942), 1, + ACTIONS(2996), 1, anon_sym_STAR, - STATE(1601), 1, + STATE(1491), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47913] = 5, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2944), 1, - anon_sym_class, - STATE(936), 1, - aux_sym_export_statement_repeat1, - STATE(977), 1, - sym_decorator, + [49419] = 4, + ACTIONS(1700), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47930] = 5, + ACTIONS(2660), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49434] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2946), 1, + ACTIONS(2998), 1, anon_sym_DQUOTE, - STATE(1248), 1, + STATE(1280), 1, aux_sym_string_repeat1, - ACTIONS(2948), 2, + ACTIONS(3000), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47947] = 5, + [49451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2946), 1, + ACTIONS(2998), 1, anon_sym_SQUOTE, - STATE(1256), 1, + STATE(1281), 1, aux_sym_string_repeat2, - ACTIONS(2950), 2, + ACTIONS(3002), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47964] = 5, + [49468] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2952), 1, - anon_sym_SQUOTE, - STATE(1197), 1, - aux_sym_string_repeat2, - ACTIONS(2954), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47981] = 5, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(2956), 1, - sym_identifier, - ACTIONS(2958), 1, - anon_sym_STAR, - STATE(1601), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47998] = 6, + ACTIONS(3004), 1, + sym_html_character_reference, + ACTIONS(3007), 1, + anon_sym_DQUOTE, + ACTIONS(3009), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1262), 1, + aux_sym__jsx_string_repeat1, + [49487] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2960), 1, + ACTIONS(3012), 1, sym_html_character_reference, - ACTIONS(2963), 1, + ACTIONS(3015), 1, anon_sym_SQUOTE, - ACTIONS(2965), 1, + ACTIONS(3017), 1, sym_unescaped_single_jsx_string_fragment, - STATE(1232), 1, + STATE(1263), 1, aux_sym__jsx_string_repeat2, - [48017] = 2, + [49506] = 3, + ACTIONS(3020), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48028] = 2, + ACTIONS(2513), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [49519] = 5, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3022), 1, + sym_identifier, + ACTIONS(3024), 1, + anon_sym_STAR, + STATE(1621), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1748), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48039] = 2, + [49536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3026), 1, + anon_sym_DQUOTE, + STATE(1246), 1, + aux_sym_string_repeat1, + ACTIONS(3028), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3026), 1, + anon_sym_SQUOTE, + STATE(1257), 1, + aux_sym_string_repeat2, + ACTIONS(3030), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49570] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2870), 1, + anon_sym_class, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48050] = 5, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2863), 1, + [49587] = 5, + ACTIONS(2894), 1, anon_sym_extends, - STATE(727), 1, + ACTIONS(3032), 1, + anon_sym_LBRACE, + STATE(68), 1, sym_class_body, - STATE(1528), 1, + STATE(1482), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48067] = 2, + [49604] = 4, + ACTIONS(3034), 1, + anon_sym_COMMA, + STATE(1270), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1810), 4, + ACTIONS(1510), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2952), 1, - anon_sym_DQUOTE, - STATE(1203), 1, - aux_sym_string_repeat1, - ACTIONS(2968), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48095] = 5, - ACTIONS(2863), 1, + [49619] = 5, + ACTIONS(2894), 1, anon_sym_extends, - ACTIONS(2970), 1, + ACTIONS(3037), 1, anon_sym_LBRACE, - STATE(59), 1, + STATE(353), 1, sym_class_body, - STATE(1405), 1, + STATE(1597), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48112] = 5, - ACTIONS(2638), 1, + [49636] = 5, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3039), 1, + sym_identifier, + ACTIONS(3041), 1, + anon_sym_STAR, + STATE(1500), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49653] = 5, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(2972), 1, + ACTIONS(3043), 1, sym_identifier, - ACTIONS(2974), 1, + ACTIONS(3045), 1, anon_sym_STAR, - STATE(1492), 1, + STATE(1491), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48129] = 5, - ACTIONS(674), 1, - anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_EQ, - ACTIONS(2976), 1, - anon_sym_RBRACK, - STATE(1261), 1, - aux_sym_array_pattern_repeat1, + [49670] = 3, + ACTIONS(2515), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48146] = 4, - ACTIONS(2978), 1, + ACTIONS(2513), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [49683] = 5, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3047), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(3049), 1, + anon_sym_RPAREN, + STATE(1295), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48161] = 4, - ACTIONS(2461), 1, - anon_sym_STAR, - ACTIONS(2463), 1, - anon_sym_LBRACE, + [49700] = 5, + ACTIONS(672), 1, + anon_sym_COMMA, + ACTIONS(2951), 1, + anon_sym_EQ, + ACTIONS(3051), 1, + anon_sym_RBRACK, + STATE(1304), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1640), 2, - sym_namespace_import, - sym_named_imports, - [48176] = 5, - ACTIONS(2739), 1, - anon_sym_LBRACE, - ACTIONS(2863), 1, + [49717] = 5, + ACTIONS(2894), 1, anon_sym_extends, - STATE(707), 1, + ACTIONS(3032), 1, + anon_sym_LBRACE, + STATE(79), 1, sym_class_body, - STATE(1512), 1, + STATE(1452), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48193] = 5, - ACTIONS(2855), 1, - anon_sym_with, - ACTIONS(2981), 1, - anon_sym_SEMI, - ACTIONS(2983), 1, - sym__automatic_semicolon, - STATE(1437), 1, - sym_import_attribute, + [49734] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3053), 1, + anon_sym_class, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48210] = 5, - ACTIONS(2863), 1, + [49751] = 5, + ACTIONS(2894), 1, anon_sym_extends, - ACTIONS(2970), 1, + ACTIONS(3037), 1, anon_sym_LBRACE, - STATE(58), 1, + STATE(335), 1, sym_class_body, - STATE(1496), 1, + STATE(1504), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48227] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2087), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48238] = 5, + [49768] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2985), 1, + ACTIONS(3055), 1, anon_sym_DQUOTE, - STATE(1252), 1, + STATE(1247), 1, aux_sym_string_repeat1, - ACTIONS(2851), 2, + ACTIONS(2931), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48255] = 5, + [49785] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(3055), 1, anon_sym_SQUOTE, - STATE(1249), 1, + STATE(1248), 1, aux_sym_string_repeat2, - ACTIONS(2989), 2, + ACTIONS(2933), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48272] = 4, - ACTIONS(2843), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2992), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48287] = 4, - ACTIONS(2843), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_variable_declaration_repeat1, + [49802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2994), 2, + ACTIONS(2137), 4, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [48302] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2996), 1, - anon_sym_DQUOTE, - STATE(1252), 1, - aux_sym_string_repeat1, - ACTIONS(2998), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48319] = 5, - ACTIONS(2785), 1, + anon_sym_EQ, + [49813] = 5, + ACTIONS(2772), 1, anon_sym_LBRACE, - ACTIONS(2863), 1, + ACTIONS(2894), 1, anon_sym_extends, - STATE(581), 1, + STATE(756), 1, sym_class_body, - STATE(1432), 1, + STATE(1484), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48336] = 5, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3003), 1, - anon_sym_STAR, - STATE(1582), 1, - sym_formal_parameters, + [49830] = 4, + ACTIONS(2137), 1, + anon_sym_COLON, + ACTIONS(2139), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48353] = 5, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3005), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_STAR, - STATE(1492), 1, - sym_formal_parameters, + ACTIONS(3057), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49845] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48370] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2985), 1, - anon_sym_SQUOTE, - STATE(1249), 1, - aux_sym_string_repeat2, - ACTIONS(2849), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48387] = 4, - ACTIONS(3009), 1, + ACTIONS(2137), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2197), 2, anon_sym_COMMA, - STATE(1257), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [49858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1720), 2, + ACTIONS(1797), 4, anon_sym_RPAREN, - anon_sym_RBRACK, - [48402] = 2, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [49869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1720), 3, - anon_sym_COMMA, + ACTIONS(1787), 4, anon_sym_RPAREN, - anon_sym_RBRACK, - [48412] = 3, - ACTIONS(2897), 1, + anon_sym_in, + anon_sym_of, anon_sym_EQ, + [49880] = 4, + ACTIONS(3059), 1, + anon_sym_from, + STATE(1591), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [48424] = 4, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(3014), 1, - anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_array_repeat1, + ACTIONS(3061), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49895] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2762), 1, + anon_sym_class, + STATE(965), 1, + aux_sym_export_statement_repeat1, + STATE(1002), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49912] = 4, + ACTIONS(3063), 1, + anon_sym_LPAREN, + ACTIONS(3065), 1, + anon_sym_await, + STATE(49), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48438] = 4, - ACTIONS(674), 1, + [49926] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3016), 1, - anon_sym_RBRACK, - STATE(1263), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3067), 1, + anon_sym_RBRACE, + STATE(1300), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48452] = 4, - ACTIONS(3018), 1, - anon_sym_LBRACE, - ACTIONS(3020), 1, + [49940] = 3, + ACTIONS(3069), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3071), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49952] = 4, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(322), 1, - sym_statement_block, + ACTIONS(3073), 1, + sym_identifier, + STATE(1511), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48466] = 4, - ACTIONS(3012), 1, - anon_sym_RBRACK, - ACTIONS(3022), 1, + [49966] = 4, + ACTIONS(3075), 1, anon_sym_COMMA, - STATE(1263), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3078), 1, + anon_sym_RPAREN, + STATE(1294), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3025), 1, - sym__glimmer_template_content, - ACTIONS(3028), 1, - sym_glimmer_closing_tag, - STATE(1264), 1, - aux_sym_glimmer_template_repeat1, - [48496] = 4, - ACTIONS(707), 1, + [49980] = 4, + ACTIONS(715), 1, anon_sym_RPAREN, - ACTIONS(3030), 1, + ACTIONS(3080), 1, anon_sym_COMMA, - STATE(1316), 1, + STATE(1294), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48510] = 4, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3032), 1, - sym_identifier, - STATE(1490), 1, - sym_formal_parameters, + [49994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48524] = 4, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3034), 1, - sym_identifier, - STATE(1581), 1, - sym_formal_parameters, + ACTIONS(2958), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [50004] = 4, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3082), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48538] = 4, - ACTIONS(957), 1, - anon_sym_while, - ACTIONS(3036), 1, - anon_sym_else, - STATE(368), 1, - sym_else_clause, + [50018] = 4, + ACTIONS(3084), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48552] = 3, - ACTIONS(3038), 1, - anon_sym_EQ, + [50032] = 4, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(3089), 1, + anon_sym_RBRACK, + STATE(1231), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50046] = 4, + ACTIONS(3091), 1, + anon_sym_COMMA, + ACTIONS(3094), 1, + anon_sym_RBRACE, + STATE(1300), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50060] = 4, + ACTIONS(3096), 1, + sym_identifier, + STATE(952), 1, + sym_decorator_member_expression, + STATE(1020), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50074] = 3, + ACTIONS(3098), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1287), 2, + ACTIONS(2632), 2, anon_sym_in, anon_sym_of, - [48564] = 2, + [50086] = 4, + ACTIONS(2121), 1, + anon_sym_COMMA, + ACTIONS(3100), 1, + anon_sym_RBRACE, + STATE(1333), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 3, - sym__automatic_semicolon, + [50100] = 4, + ACTIONS(672), 1, anon_sym_COMMA, - anon_sym_SEMI, - [48574] = 4, - ACTIONS(2045), 1, + ACTIONS(3102), 1, + anon_sym_RBRACK, + STATE(1366), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50114] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + ACTIONS(3104), 1, anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + STATE(1300), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48588] = 4, - ACTIONS(2638), 1, + [50128] = 4, + ACTIONS(3106), 1, anon_sym_LPAREN, - ACTIONS(3042), 1, - sym_identifier, - STATE(1414), 1, - sym_formal_parameters, + ACTIONS(3108), 1, + anon_sym_await, + STATE(33), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48602] = 4, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(3044), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_array_repeat1, + [50142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48616] = 5, + ACTIONS(3110), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [50152] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3046), 1, + ACTIONS(3112), 1, sym__glimmer_template_content, - ACTIONS(3048), 1, + ACTIONS(3114), 1, sym_glimmer_closing_tag, - STATE(1264), 1, + STATE(1384), 1, aux_sym_glimmer_template_repeat1, - [48632] = 4, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RPAREN, - STATE(1323), 1, - aux_sym_array_repeat1, + [50168] = 3, + ACTIONS(3116), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48646] = 4, - ACTIONS(2638), 1, + ACTIONS(3118), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50180] = 4, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3122), 1, anon_sym_LPAREN, - ACTIONS(3050), 1, - sym_identifier, - STATE(1414), 1, - sym_formal_parameters, + STATE(337), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48660] = 4, - ACTIONS(709), 1, + [50194] = 4, + ACTIONS(3124), 1, anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RPAREN, - STATE(1257), 1, - aux_sym_array_repeat1, + ACTIONS(3127), 1, + anon_sym_RBRACE, + STATE(1311), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48674] = 4, - ACTIONS(674), 1, + [50208] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(2976), 1, - anon_sym_RBRACK, - STATE(1263), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3129), 1, + anon_sym_RBRACE, + STATE(1383), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48688] = 4, - ACTIONS(3052), 1, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACE, - STATE(1308), 1, - aux_sym_named_imports_repeat1, + [50222] = 4, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3131), 1, + anon_sym_COLON, + STATE(1558), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48702] = 4, - ACTIONS(709), 1, + [50236] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(1716), 1, + ACTIONS(1785), 1, anon_sym_RBRACK, - STATE(1257), 1, + STATE(1231), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48716] = 4, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3056), 1, - anon_sym_GT, + [50250] = 4, + ACTIONS(2830), 1, + sym_identifier, + ACTIONS(2832), 1, + anon_sym_LBRACK, + ACTIONS(2834), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48730] = 5, + [50264] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3058), 1, + ACTIONS(3133), 1, sym__glimmer_template_content, - ACTIONS(3060), 1, + ACTIONS(3135), 1, sym_glimmer_closing_tag, - STATE(1325), 1, + STATE(1308), 1, aux_sym_glimmer_template_repeat1, - [48746] = 3, - ACTIONS(3062), 1, - anon_sym_as, + [50280] = 4, + ACTIONS(2095), 1, + anon_sym_COMMA, + ACTIONS(3129), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3064), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48758] = 4, - ACTIONS(3066), 1, + [50294] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3069), 1, + ACTIONS(3100), 1, anon_sym_RBRACE, - STATE(1284), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48772] = 4, - ACTIONS(3071), 1, + [50308] = 4, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3137), 1, sym_identifier, - STATE(922), 1, - sym_decorator_member_expression, - STATE(976), 1, - sym_decorator_call_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48786] = 3, - ACTIONS(2715), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1287), 2, - anon_sym_in, - anon_sym_of, - [48798] = 4, - ACTIONS(3073), 1, - anon_sym_COMMA, - ACTIONS(3076), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + STATE(1394), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48812] = 4, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_GT, + [50322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48826] = 4, - ACTIONS(709), 1, + ACTIONS(1807), 3, anon_sym_COMMA, - ACTIONS(1716), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(1260), 1, - aux_sym_array_repeat1, + [50332] = 3, + ACTIONS(2951), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48840] = 4, - ACTIONS(2045), 1, + ACTIONS(3139), 2, anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + [50344] = 4, + ACTIONS(987), 1, + anon_sym_while, + ACTIONS(3141), 1, + anon_sym_else, + STATE(410), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48854] = 4, - ACTIONS(2918), 1, - anon_sym_from, - ACTIONS(3082), 1, - anon_sym_as, - STATE(1595), 1, - sym__from_clause, + [50358] = 3, + ACTIONS(2882), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48868] = 2, + ACTIONS(1330), 2, + anon_sym_in, + anon_sym_of, + [50370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3084), 3, + ACTIONS(3143), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_from, anon_sym_SEMI, - [48878] = 2, + [50380] = 4, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3145), 1, + sym_identifier, + STATE(1502), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3086), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [48888] = 5, + [50394] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3088), 1, + ACTIONS(3147), 1, sym__glimmer_template_content, - ACTIONS(3090), 1, + ACTIONS(3149), 1, sym_glimmer_closing_tag, - STATE(1274), 1, + STATE(1341), 1, aux_sym_glimmer_template_repeat1, - [48904] = 4, - ACTIONS(2588), 1, - anon_sym_RBRACE, - ACTIONS(3092), 1, + [50410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3151), 1, + sym__glimmer_template_content, + ACTIONS(3153), 1, + sym_glimmer_closing_tag, + STATE(1374), 1, + aux_sym_glimmer_template_repeat1, + [50426] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - STATE(1328), 1, - aux_sym_export_clause_repeat1, + ACTIONS(1737), 1, + anon_sym_RPAREN, + STATE(1369), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48918] = 4, - ACTIONS(709), 1, + [50440] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(1736), 1, + ACTIONS(1737), 1, anon_sym_RPAREN, - STATE(1257), 1, + STATE(1231), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48932] = 4, - ACTIONS(674), 1, + [50454] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(2976), 1, + ACTIONS(3155), 1, anon_sym_RBRACK, - STATE(1261), 1, - aux_sym_array_pattern_repeat1, + STATE(1231), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48946] = 4, - ACTIONS(709), 1, + [50468] = 4, + ACTIONS(672), 1, anon_sym_COMMA, - ACTIONS(1736), 1, - anon_sym_RPAREN, - STATE(1273), 1, - aux_sym_array_repeat1, + ACTIONS(3157), 1, + anon_sym_RBRACK, + STATE(1366), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48960] = 4, - ACTIONS(2061), 1, + [50482] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3094), 1, + ACTIONS(3159), 1, anon_sym_RBRACE, - STATE(1284), 1, - aux_sym_object_pattern_repeat1, + STATE(1362), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48974] = 4, - ACTIONS(2061), 1, + [50496] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3096), 1, + ACTIONS(3161), 1, anon_sym_RBRACE, - STATE(1284), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48988] = 4, - ACTIONS(2045), 1, + [50510] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + ACTIONS(1753), 1, + anon_sym_RPAREN, + STATE(1385), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49002] = 4, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3100), 1, - anon_sym_COLON, - STATE(1572), 1, - sym_formal_parameters, + [50524] = 4, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(1753), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49016] = 4, - ACTIONS(3102), 1, + [50538] = 4, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(3104), 1, - anon_sym_await, - STATE(35), 1, - sym__for_header, + ACTIONS(3163), 1, + sym_identifier, + STATE(1394), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49030] = 3, - ACTIONS(2897), 1, - anon_sym_EQ, + [50552] = 3, + ACTIONS(1673), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3106), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49042] = 4, - ACTIONS(2061), 1, + ACTIONS(1872), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50564] = 4, + ACTIONS(3165), 1, anon_sym_COMMA, - ACTIONS(3108), 1, + ACTIONS(3168), 1, anon_sym_RBRACE, - STATE(1331), 1, - aux_sym_object_pattern_repeat1, + STATE(1338), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49056] = 4, - ACTIONS(2045), 1, - anon_sym_COMMA, - ACTIONS(3110), 1, - anon_sym_RBRACE, - STATE(1330), 1, - aux_sym_object_repeat1, + [50578] = 4, + ACTIONS(2016), 1, + anon_sym_DQUOTE, + ACTIONS(2018), 1, + anon_sym_SQUOTE, + STATE(1367), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49070] = 4, - ACTIONS(2045), 1, + [50592] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3110), 1, + ACTIONS(3159), 1, anon_sym_RBRACE, - STATE(1287), 1, + STATE(1298), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49084] = 4, - ACTIONS(2596), 1, - anon_sym_RBRACE, - ACTIONS(3112), 1, - anon_sym_COMMA, - STATE(1349), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [50606] = 5, + ACTIONS(3), 1, sym_comment, - [49098] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3112), 1, + sym__glimmer_template_content, + ACTIONS(3170), 1, + sym_glimmer_closing_tag, + STATE(1384), 1, + aux_sym_glimmer_template_repeat1, + [50622] = 3, + ACTIONS(2951), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2916), 3, - sym__automatic_semicolon, + ACTIONS(3078), 2, anon_sym_COMMA, - anon_sym_SEMI, - [49108] = 4, - ACTIONS(2061), 1, + anon_sym_RPAREN, + [50634] = 4, + ACTIONS(672), 1, anon_sym_COMMA, - ACTIONS(3108), 1, - anon_sym_RBRACE, - STATE(1284), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49122] = 4, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_await, - STATE(32), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49136] = 4, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3118), 1, - sym_identifier, - STATE(1556), 1, - sym_formal_parameters, + ACTIONS(2953), 1, + anon_sym_RBRACK, + STATE(1331), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49150] = 3, - ACTIONS(3120), 1, - sym_identifier, + [50648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3122), 2, + ACTIONS(3172), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [49162] = 4, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3124), 1, - anon_sym_GT, + [50658] = 4, + ACTIONS(3174), 1, + anon_sym_COMMA, + ACTIONS(3176), 1, + anon_sym_RBRACE, + STATE(1373), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49176] = 3, - ACTIONS(2897), 1, - anon_sym_EQ, + [50672] = 3, + ACTIONS(3178), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3126), 2, + ACTIONS(3180), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50684] = 4, + ACTIONS(3047), 1, anon_sym_COMMA, + ACTIONS(3049), 1, anon_sym_RPAREN, - [49188] = 4, - ACTIONS(3126), 1, - anon_sym_RPAREN, - ACTIONS(3128), 1, - anon_sym_COMMA, - STATE(1316), 1, + STATE(1295), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49202] = 4, - ACTIONS(674), 1, - anon_sym_COMMA, - ACTIONS(3131), 1, - anon_sym_RBRACK, - STATE(1263), 1, - aux_sym_array_pattern_repeat1, + [50698] = 4, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49216] = 4, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(3133), 1, - anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_array_repeat1, + [50712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49230] = 4, - ACTIONS(674), 1, + ACTIONS(2858), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2899), 1, - anon_sym_RBRACK, - STATE(1317), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [50722] = 4, + ACTIONS(2095), 1, + anon_sym_COMMA, + ACTIONS(3184), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49244] = 4, - ACTIONS(709), 1, + [50736] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(1712), 1, - anon_sym_RBRACK, - STATE(1318), 1, - aux_sym_array_repeat1, + ACTIONS(3186), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49258] = 4, - ACTIONS(709), 1, + [50750] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(1712), 1, - anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_array_repeat1, + ACTIONS(3188), 1, + anon_sym_RBRACE, + STATE(1305), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49272] = 4, - ACTIONS(674), 1, - anon_sym_COMMA, - ACTIONS(2899), 1, - anon_sym_RBRACK, - STATE(1263), 1, - aux_sym_array_pattern_repeat1, + [50764] = 4, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3190), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49286] = 4, - ACTIONS(709), 1, + [50778] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3135), 1, - anon_sym_RPAREN, - STATE(1257), 1, + ACTIONS(1785), 1, + anon_sym_RBRACK, + STATE(1330), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49300] = 4, - ACTIONS(2901), 1, - anon_sym_COMMA, - ACTIONS(2903), 1, - anon_sym_RPAREN, - STATE(1265), 1, - aux_sym_formal_parameters_repeat1, + [50792] = 4, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3192), 1, + sym_identifier, + STATE(1502), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3046), 1, - sym__glimmer_template_content, - ACTIONS(3137), 1, - sym_glimmer_closing_tag, - STATE(1264), 1, - aux_sym_glimmer_template_repeat1, - [49330] = 2, + [50806] = 4, + ACTIONS(2095), 1, + anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + STATE(1350), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3139), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49340] = 2, + [50820] = 4, + ACTIONS(2095), 1, + anon_sym_COMMA, + ACTIONS(3194), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3141), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49350] = 4, - ACTIONS(3143), 1, + [50834] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3146), 1, + ACTIONS(3188), 1, anon_sym_RBRACE, - STATE(1328), 1, - aux_sym_export_clause_repeat1, + STATE(1300), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49364] = 4, - ACTIONS(2638), 1, + [50848] = 4, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(3148), 1, + ACTIONS(3196), 1, sym_identifier, - STATE(1490), 1, + STATE(1394), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49378] = 4, - ACTIONS(2045), 1, + [50862] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3150), 1, + ACTIONS(3198), 1, anon_sym_RBRACE, - STATE(1287), 1, + STATE(1298), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49392] = 4, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(3152), 1, + [50876] = 4, + ACTIONS(2638), 1, anon_sym_RBRACE, - STATE(1284), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3200), 1, + anon_sym_COMMA, + STATE(1338), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49406] = 4, - ACTIONS(2061), 1, + [50890] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3202), 1, anon_sym_RBRACE, - STATE(1284), 1, - aux_sym_object_pattern_repeat1, + STATE(1298), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49420] = 3, - ACTIONS(1617), 1, - anon_sym_in, + [50904] = 4, + ACTIONS(672), 1, + anon_sym_COMMA, + ACTIONS(3051), 1, + anon_sym_RBRACK, + STATE(1304), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [49432] = 4, - ACTIONS(709), 1, + [50918] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3156), 1, - anon_sym_RPAREN, - STATE(1257), 1, + ACTIONS(1733), 1, + anon_sym_RBRACK, + STATE(1299), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49446] = 4, - ACTIONS(2638), 1, + [50932] = 4, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(3158), 1, + ACTIONS(3204), 1, sym_identifier, - STATE(1490), 1, + STATE(1618), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49460] = 4, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3160), 1, - anon_sym_GT, + [50946] = 4, + ACTIONS(3139), 1, + anon_sym_RBRACK, + ACTIONS(3206), 1, + anon_sym_COMMA, + STATE(1366), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49474] = 4, - ACTIONS(709), 1, + [50960] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3209), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [50970] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(1710), 1, - anon_sym_RPAREN, - STATE(1257), 1, + ACTIONS(1733), 1, + anon_sym_RBRACK, + STATE(1231), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49488] = 4, - ACTIONS(709), 1, + [50984] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(1710), 1, + ACTIONS(3211), 1, anon_sym_RPAREN, - STATE(1334), 1, + STATE(1231), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3162), 1, - sym__glimmer_template_content, - ACTIONS(3164), 1, - sym_glimmer_closing_tag, - STATE(1354), 1, - aux_sym_glimmer_template_repeat1, - [49518] = 4, - ACTIONS(2045), 1, + [50998] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3166), 1, + ACTIONS(3213), 1, anon_sym_RBRACE, - STATE(1287), 1, + STATE(1298), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49532] = 3, - ACTIONS(3168), 1, - sym_identifier, + [51012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3170), 2, + ACTIONS(3215), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [49544] = 4, - ACTIONS(2045), 1, + [51022] = 4, + ACTIONS(672), 1, anon_sym_COMMA, - ACTIONS(3172), 1, + ACTIONS(3051), 1, + anon_sym_RBRACK, + STATE(1366), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51036] = 4, + ACTIONS(2658), 1, anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + ACTIONS(3217), 1, + anon_sym_COMMA, + STATE(1311), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49558] = 4, - ACTIONS(2061), 1, + [51050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3112), 1, + sym__glimmer_template_content, + ACTIONS(3219), 1, + sym_glimmer_closing_tag, + STATE(1384), 1, + aux_sym_glimmer_template_repeat1, + [51066] = 4, + ACTIONS(2121), 1, anon_sym_COMMA, - ACTIONS(3174), 1, + ACTIONS(3221), 1, anon_sym_RBRACE, - STATE(1299), 1, + STATE(1300), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49572] = 3, - ACTIONS(3176), 1, + [51080] = 3, + ACTIONS(3223), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3178), 2, + ACTIONS(3225), 2, anon_sym_COMMA, anon_sym_RBRACE, - [49584] = 4, - ACTIONS(2045), 1, + [51092] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1290), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49598] = 4, - ACTIONS(2638), 1, - anon_sym_LPAREN, - ACTIONS(3182), 1, - anon_sym_COLON, - STATE(1572), 1, - sym_formal_parameters, + ACTIONS(1771), 1, + anon_sym_RPAREN, + STATE(1380), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49612] = 4, - ACTIONS(2045), 1, + [51106] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1287), 1, - aux_sym_object_repeat1, + ACTIONS(1771), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49626] = 4, - ACTIONS(2061), 1, - anon_sym_COMMA, - ACTIONS(3174), 1, - anon_sym_RBRACE, - STATE(1284), 1, - aux_sym_object_pattern_repeat1, + [51120] = 4, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49640] = 4, - ACTIONS(3184), 1, + [51134] = 4, + ACTIONS(705), 1, anon_sym_COMMA, - ACTIONS(3187), 1, - anon_sym_RBRACE, - STATE(1349), 1, - aux_sym_named_imports_repeat1, + ACTIONS(3229), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49654] = 4, - ACTIONS(2045), 1, + [51148] = 4, + ACTIONS(672), 1, anon_sym_COMMA, - ACTIONS(3189), 1, - anon_sym_RBRACE, - STATE(1342), 1, - aux_sym_object_repeat1, + ACTIONS(2953), 1, + anon_sym_RBRACK, + STATE(1366), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49668] = 4, - ACTIONS(3191), 1, - anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_RBRACE, - STATE(1295), 1, - aux_sym_export_clause_repeat1, + [51162] = 4, + ACTIONS(2666), 1, + anon_sym_LPAREN, + ACTIONS(3231), 1, + sym_identifier, + STATE(1502), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49682] = 4, - ACTIONS(2045), 1, + [51176] = 4, + ACTIONS(2095), 1, anon_sym_COMMA, - ACTIONS(3189), 1, + ACTIONS(3233), 1, anon_sym_RBRACE, - STATE(1287), 1, + STATE(1298), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49696] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3195), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49706] = 5, + [51190] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3046), 1, + ACTIONS(3235), 1, sym__glimmer_template_content, - ACTIONS(3197), 1, + ACTIONS(3238), 1, sym_glimmer_closing_tag, - STATE(1264), 1, + STATE(1384), 1, aux_sym_glimmer_template_repeat1, - [49722] = 4, - ACTIONS(2638), 1, + [51206] = 4, + ACTIONS(705), 1, + anon_sym_COMMA, + ACTIONS(3240), 1, + anon_sym_RPAREN, + STATE(1231), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51220] = 4, + ACTIONS(2666), 1, anon_sym_LPAREN, - ACTIONS(3199), 1, - sym_identifier, - STATE(1414), 1, + ACTIONS(3242), 1, + anon_sym_COLON, + STATE(1558), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49736] = 4, - ACTIONS(1966), 1, - anon_sym_DQUOTE, - ACTIONS(1968), 1, - anon_sym_SQUOTE, - STATE(1292), 1, - sym_string, + [51234] = 3, + ACTIONS(2951), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49750] = 4, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_LBRACK, - ACTIONS(2771), 1, - sym_private_property_identifier, + ACTIONS(3244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51246] = 4, + ACTIONS(3246), 1, + anon_sym_COMMA, + ACTIONS(3248), 1, + anon_sym_RBRACE, + STATE(1361), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49764] = 4, - ACTIONS(2815), 1, + [51260] = 3, + ACTIONS(2927), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 2, + anon_sym_in, + anon_sym_of, + [51272] = 4, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2817), 1, + ACTIONS(2778), 1, anon_sym_LBRACK, - ACTIONS(2819), 1, + ACTIONS(2780), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49778] = 3, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3160), 1, - anon_sym_GT, + [51286] = 4, + ACTIONS(3059), 1, + anon_sym_from, + ACTIONS(3250), 1, + anon_sym_as, + STATE(1546), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49789] = 3, - ACTIONS(2101), 1, + [51300] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(957), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49800] = 3, - ACTIONS(2918), 1, - anon_sym_from, - STATE(1245), 1, - sym__from_clause, + [51311] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1449), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49811] = 3, - ACTIONS(3018), 1, + [51322] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(702), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49822] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym_formal_parameters, + [51333] = 3, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49833] = 3, - ACTIONS(2638), 1, + [51344] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1439), 1, + STATE(1487), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49844] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1435), 1, - sym_formal_parameters, + [51355] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(950), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49855] = 2, + [51366] = 3, + ACTIONS(2812), 1, + anon_sym_LBRACE, + STATE(547), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49864] = 3, - ACTIONS(3201), 1, - anon_sym_COMMA, - ACTIONS(3203), 1, - anon_sym_from, + [51377] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(929), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49875] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1430), 1, - sym_formal_parameters, + [51388] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(931), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49886] = 2, + [51399] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(944), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3205), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49895] = 3, - ACTIONS(3207), 1, + [51410] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(347), 1, - sym_switch_body, + STATE(945), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49906] = 3, - ACTIONS(3209), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym__for_header, + [51421] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(928), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49917] = 3, - ACTIONS(3018), 1, + [51432] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(956), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49928] = 3, - ACTIONS(3018), 1, + [51443] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(947), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49939] = 3, - ACTIONS(2638), 1, + [51454] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1377), 1, + STATE(1517), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49950] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1421), 1, - sym_formal_parameters, + [51465] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(948), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49961] = 2, + [51476] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1518), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3187), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [49970] = 3, - ACTIONS(3018), 1, + [51487] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(526), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49981] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1420), 1, - sym_formal_parameters, + [51498] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49992] = 3, - ACTIONS(2638), 1, + [51509] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1413), 1, + STATE(1392), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50003] = 3, - ACTIONS(3018), 1, + [51520] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(933), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50014] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1412), 1, - sym_formal_parameters, + [51531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50025] = 3, - ACTIONS(2638), 1, + ACTIONS(514), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51540] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1409), 1, + STATE(1493), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50036] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1408), 1, - sym_formal_parameters, + [51551] = 3, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(3227), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50047] = 3, - ACTIONS(3018), 1, + [51562] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(901), 1, + STATE(745), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50058] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1407), 1, - sym_formal_parameters, + [51573] = 3, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3227), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50069] = 3, - ACTIONS(3018), 1, + [51584] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(746), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50080] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1810), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [50089] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2574), 2, - anon_sym_in, - anon_sym_of, - [50098] = 3, - ACTIONS(2638), 1, + [51595] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1456), 1, + STATE(1495), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50109] = 3, - ACTIONS(2861), 1, + [51606] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(328), 1, - sym_class_body, + STATE(961), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50120] = 3, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(3160), 1, - anon_sym_GT, + [51617] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(927), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50131] = 3, - ACTIONS(3211), 1, + [51628] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(579), 1, + STATE(930), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50142] = 3, - ACTIONS(3211), 1, + [51639] = 3, + ACTIONS(2772), 1, anon_sym_LBRACE, - STATE(580), 1, - sym_statement_block, + STATE(747), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50153] = 2, + [51650] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3213), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50162] = 2, + [51661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3256), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [50171] = 3, - ACTIONS(3217), 1, + [51670] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(321), 1, + STATE(953), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50182] = 3, - ACTIONS(3217), 1, + [51681] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(317), 1, + STATE(934), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50193] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1406), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50204] = 2, + [51692] = 3, + ACTIONS(3258), 1, + sym_identifier, + ACTIONS(3260), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3219), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50213] = 3, - ACTIONS(2785), 1, + [51703] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(582), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50224] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3221), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50233] = 2, + STATE(938), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3223), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50242] = 2, + [51714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3078), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [50251] = 3, - ACTIONS(3225), 1, + anon_sym_RPAREN, + [51723] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(66), 1, + STATE(943), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50262] = 3, - ACTIONS(2970), 1, + [51734] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(52), 1, - sym_class_body, + STATE(949), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50273] = 3, - ACTIONS(3217), 1, + [51745] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(333), 1, + STATE(950), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50284] = 3, - ACTIONS(3018), 1, + [51756] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(904), 1, + STATE(928), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50295] = 3, - ACTIONS(3018), 1, + [51767] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(956), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50306] = 3, - ACTIONS(3018), 1, + [51778] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(915), 1, + STATE(959), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50317] = 3, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(57), 1, - sym_statement_block, + [51789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50328] = 3, - ACTIONS(3225), 1, - anon_sym_LBRACE, - STATE(63), 1, - sym_statement_block, + ACTIONS(1710), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50339] = 3, - ACTIONS(3018), 1, + ACTIONS(1574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51807] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(916), 1, + STATE(961), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50350] = 3, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_statement_block, + [51818] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1527), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50361] = 3, - ACTIONS(3227), 1, + [51829] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(927), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50372] = 3, - ACTIONS(2638), 1, + [51840] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1466), 1, + STATE(1553), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50383] = 3, - ACTIONS(2638), 1, + [51851] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51862] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1404), 1, + STATE(1443), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50394] = 2, + [51873] = 3, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(3082), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3229), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50403] = 3, - ACTIONS(2101), 1, + [51884] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(930), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50414] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1469), 1, - sym_formal_parameters, + [51895] = 3, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3082), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50425] = 3, - ACTIONS(3018), 1, + [51906] = 3, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(83), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50436] = 3, - ACTIONS(3018), 1, + [51917] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(947), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50447] = 2, + [51928] = 3, + ACTIONS(3264), 1, + anon_sym_SEMI, + ACTIONS(3266), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3126), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50456] = 2, + [51939] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3231), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50465] = 3, - ACTIONS(3211), 1, + [51950] = 3, + ACTIONS(3032), 1, anon_sym_LBRACE, - STATE(510), 1, - sym_statement_block, + STATE(65), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50476] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1393), 1, - sym_formal_parameters, + [51961] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50487] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1392), 1, - sym_formal_parameters, + [51972] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(951), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50498] = 3, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(3124), 1, - anon_sym_GT, + [51983] = 3, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50509] = 3, - ACTIONS(3018), 1, + [51994] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(907), 1, + STATE(954), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50520] = 3, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3124), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50531] = 3, - ACTIONS(3018), 1, + [52005] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(957), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50542] = 3, - ACTIONS(2638), 1, + [52016] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(1428), 1, - sym_formal_parameters, + STATE(31), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50553] = 3, - ACTIONS(2785), 1, - anon_sym_LBRACE, - STATE(508), 1, - sym_class_body, + [52027] = 3, + ACTIONS(2830), 1, + sym_identifier, + ACTIONS(2834), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50564] = 3, - ACTIONS(2638), 1, + [52038] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(1470), 1, - sym_formal_parameters, + STATE(32), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50575] = 3, - ACTIONS(2638), 1, + [52049] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52060] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(1473), 1, - sym_formal_parameters, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50586] = 3, - ACTIONS(3018), 1, + [52071] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(894), 1, + STATE(962), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50597] = 2, + [52082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3233), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50606] = 3, - ACTIONS(3235), 1, - anon_sym_SEMI, - ACTIONS(3237), 1, - sym__automatic_semicolon, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52091] = 3, + ACTIONS(3274), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50617] = 2, + [52102] = 3, + ACTIONS(2860), 1, + anon_sym_in, + ACTIONS(2862), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50626] = 3, - ACTIONS(3018), 1, + [52113] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(552), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50637] = 3, - ACTIONS(3018), 1, + [52124] = 3, + ACTIONS(3059), 1, + anon_sym_from, + STATE(1217), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52135] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(344), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50648] = 2, + [52146] = 3, + ACTIONS(3278), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1350), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50657] = 2, + [52157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3241), 2, + ACTIONS(3280), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50666] = 3, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(910), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50677] = 3, - ACTIONS(2638), 1, + [52166] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1372), 1, + STATE(1503), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50688] = 3, - ACTIONS(2638), 1, + [52177] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1480), 1, + STATE(1420), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50699] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1362), 1, - sym_formal_parameters, + [52188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50710] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_parameters, + ACTIONS(3282), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50721] = 3, - ACTIONS(2638), 1, + ACTIONS(3284), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52206] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1380), 1, + STATE(1512), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50732] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1384), 1, - sym_formal_parameters, + [52217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50743] = 3, - ACTIONS(3243), 1, + ACTIONS(1591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52226] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(41), 1, + STATE(28), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50754] = 3, - ACTIONS(2918), 1, - anon_sym_from, - STATE(1586), 1, - sym__from_clause, + [52237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50765] = 3, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym_parenthesized_expression, + ACTIONS(3286), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50776] = 3, - ACTIONS(2829), 1, - anon_sym_in, - ACTIONS(2831), 1, - anon_sym_of, + ACTIONS(3288), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50787] = 2, + ACTIONS(1702), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52264] = 3, + ACTIONS(3032), 1, + anon_sym_LBRACE, + STATE(69), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3106), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50796] = 3, - ACTIONS(3243), 1, + [52275] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(31), 1, - sym_parenthesized_expression, + STATE(1590), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50807] = 3, - ACTIONS(3211), 1, + [52286] = 3, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52297] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(576), 1, + STATE(946), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50818] = 2, + [52308] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(951), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50827] = 3, - ACTIONS(3018), 1, + [52319] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(315), 1, + STATE(954), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50838] = 2, + [52330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50847] = 3, - ACTIONS(2638), 1, + ACTIONS(3290), 2, + anon_sym_in, + anon_sym_of, + [52339] = 3, + ACTIONS(3254), 1, + anon_sym_LBRACE, + STATE(592), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52350] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1448), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50858] = 3, - ACTIONS(3018), 1, + [52361] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(770), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50869] = 2, + [52372] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1587), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3245), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50878] = 3, - ACTIONS(3217), 1, + [52383] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(316), 1, + STATE(960), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50889] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1396), 1, - sym_formal_parameters, + [52394] = 3, + ACTIONS(3292), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50900] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1397), 1, - sym_formal_parameters, + [52405] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50911] = 3, - ACTIONS(3018), 1, + [52416] = 3, + ACTIONS(3292), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(345), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50922] = 3, - ACTIONS(2861), 1, + [52427] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(331), 1, - sym_class_body, + STATE(383), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50933] = 3, - ACTIONS(3209), 1, + [52438] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(29), 1, - sym__for_header, + STATE(1594), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50944] = 3, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_statement_block, + [52449] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1409), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50955] = 3, - ACTIONS(3018), 1, + [52460] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(909), 1, + STATE(687), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50966] = 3, - ACTIONS(3211), 1, + [52471] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1596), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52482] = 3, + ACTIONS(3252), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(776), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50977] = 3, - ACTIONS(3018), 1, + [52493] = 3, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(906), 1, + STATE(70), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50988] = 3, - ACTIONS(3018), 1, + [52504] = 3, + ACTIONS(3037), 1, anon_sym_LBRACE, - STATE(905), 1, - sym_statement_block, + STATE(334), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50999] = 3, - ACTIONS(3247), 1, - sym_identifier, - ACTIONS(3249), 1, - anon_sym_STAR, + [52515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51010] = 3, - ACTIONS(2638), 1, + ACTIONS(3296), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [52524] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1577), 1, + STATE(1613), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51021] = 3, - ACTIONS(2739), 1, - anon_sym_LBRACE, - STATE(666), 1, - sym_class_body, + [52535] = 3, + ACTIONS(3278), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51032] = 3, - ACTIONS(2638), 1, + [52546] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1472), 1, + STATE(1633), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51043] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_statement_block, + [52557] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1634), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51054] = 3, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3056), 1, - anon_sym_GT, + [52568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51065] = 3, - ACTIONS(3018), 1, + ACTIONS(1704), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52577] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(599), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51076] = 3, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(3056), 1, - anon_sym_GT, + [52588] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(730), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51087] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(907), 1, - sym_statement_block, + [52599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51098] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(909), 1, - sym_statement_block, + ACTIONS(3298), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52608] = 3, + ACTIONS(3272), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51109] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_statement_block, + [52619] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1467), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51120] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_statement_block, + [52630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51131] = 3, - ACTIONS(3227), 1, + ACTIONS(1854), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [52639] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(687), 1, + STATE(549), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51142] = 3, - ACTIONS(2101), 1, + [52650] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(920), 1, + STATE(517), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51153] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(921), 1, - sym_statement_block, + [52661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51164] = 3, - ACTIONS(3225), 1, + ACTIONS(3300), 2, anon_sym_LBRACE, - STATE(56), 1, - sym_statement_block, + anon_sym_EQ_GT, + [52670] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1399), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51175] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_statement_block, + [52681] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1400), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51186] = 3, - ACTIONS(2638), 1, + [52692] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1410), 1, + STATE(1401), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51197] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(706), 1, - sym_statement_block, + [52703] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1405), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51208] = 3, - ACTIONS(2638), 1, + [52714] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1411), 1, + STATE(1407), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51219] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_statement_block, + [52725] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1412), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51230] = 3, - ACTIONS(2101), 1, + [52736] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1422), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52747] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(948), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51241] = 3, - ACTIONS(2970), 1, - anon_sym_LBRACE, - STATE(55), 1, - sym_class_body, + [52758] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1416), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51252] = 2, + [52769] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1418), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3251), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51261] = 3, - ACTIONS(2101), 1, + [52780] = 3, + ACTIONS(2812), 1, anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + STATE(522), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51272] = 3, - ACTIONS(2638), 1, + [52791] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1569), 1, + STATE(1424), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51283] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_statement_block, + [52802] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51294] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [52813] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1427), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51305] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_statement_block, + [52824] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1429), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51316] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_statement_block, + [52835] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51327] = 3, - ACTIONS(2638), 1, + [52846] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1559), 1, + STATE(1432), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51338] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(915), 1, - sym_statement_block, + [52857] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1433), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51349] = 3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, - sym_jsx_identifier, + [52868] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1434), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51360] = 3, - ACTIONS(2638), 1, + [52879] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1543), 1, + STATE(1435), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51371] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(914), 1, - sym_statement_block, + [52890] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1436), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51382] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(904), 1, - sym_statement_block, + [52901] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1439), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51393] = 3, - ACTIONS(2638), 1, + [52912] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1539), 1, + STATE(1441), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51404] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_statement_block, + [52923] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1446), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51415] = 3, - ACTIONS(2739), 1, - anon_sym_LBRACE, - STATE(691), 1, - sym_class_body, + [52934] = 3, + ACTIONS(3302), 1, + anon_sym_LPAREN, + STATE(336), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51426] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(692), 1, - sym_statement_block, + [52945] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1451), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51437] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_statement_block, + [52956] = 3, + ACTIONS(3304), 1, + anon_sym_SEMI, + ACTIONS(3306), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51448] = 2, + [52967] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1453), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1587), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51457] = 2, + [52978] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1454), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51466] = 3, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_statement_block, + [52989] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51477] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_statement_block, + [53000] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1457), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51488] = 3, - ACTIONS(3257), 1, + [53011] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(334), 1, - sym_parenthesized_expression, + STATE(1461), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51499] = 3, - ACTIONS(2101), 1, + [53022] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1463), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53033] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(895), 1, + STATE(933), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51510] = 2, + [53044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51519] = 3, - ACTIONS(2638), 1, + ACTIONS(3168), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53053] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1424), 1, + STATE(1563), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51530] = 3, - ACTIONS(2101), 1, + [53064] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(958), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51541] = 3, - ACTIONS(2101), 1, + [53075] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3308), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53084] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(898), 1, + STATE(958), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51552] = 3, - ACTIONS(2101), 1, + [53095] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3310), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53104] = 3, + ACTIONS(2772), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_statement_block, + STATE(684), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51563] = 3, - ACTIONS(2101), 1, + [53115] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(901), 1, + STATE(413), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51574] = 3, - ACTIONS(2101), 1, + [53126] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(929), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51585] = 3, - ACTIONS(2739), 1, + [53137] = 3, + ACTIONS(3262), 1, anon_sym_LBRACE, - STATE(694), 1, - sym_class_body, + STATE(66), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51596] = 3, - ACTIONS(2638), 1, + [53148] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1527), 1, + STATE(1603), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51607] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym_formal_parameters, + [53159] = 3, + ACTIONS(3312), 1, + sym_identifier, + ACTIONS(3314), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51618] = 3, - ACTIONS(2638), 1, + [53170] = 3, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(3190), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53181] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(931), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53192] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1606), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51629] = 3, - ACTIONS(2638), 1, + [53203] = 3, + ACTIONS(2535), 1, + anon_sym_COLON, + ACTIONS(3182), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53214] = 3, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3190), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53225] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(1523), 1, - sym_formal_parameters, + STATE(1497), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51640] = 3, - ACTIONS(2638), 1, + [53236] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1520), 1, + STATE(1600), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51651] = 3, - ACTIONS(2638), 1, + [53247] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1518), 1, + STATE(1608), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51662] = 2, + [53258] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1421), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51671] = 2, + [53269] = 3, + ACTIONS(2541), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51680] = 3, - ACTIONS(2638), 1, + [53280] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1514), 1, + STATE(1612), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51691] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1513), 1, - sym_formal_parameters, + [53291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51702] = 3, - ACTIONS(3227), 1, + ACTIONS(3139), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53300] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(695), 1, + STATE(944), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51713] = 3, - ACTIONS(2638), 1, + [53311] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1511), 1, + STATE(1619), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51724] = 2, + [53322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3261), 2, + ACTIONS(3316), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51733] = 3, - ACTIONS(3263), 1, + [53331] = 3, + ACTIONS(3318), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(1602), 1, sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51744] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(703), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51755] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1509), 1, - sym_formal_parameters, + [53342] = 3, + ACTIONS(3320), 1, + anon_sym_SEMI, + ACTIONS(3322), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51766] = 3, - ACTIONS(2638), 1, + [53353] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1508), 1, + STATE(1397), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51777] = 3, - ACTIONS(2638), 1, + [53364] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1505), 1, + STATE(1403), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51788] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1503), 1, - sym_formal_parameters, + [53375] = 3, + ACTIONS(2812), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51799] = 3, - ACTIONS(2638), 1, + [53386] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1502), 1, + STATE(1404), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51810] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1501), 1, - sym_formal_parameters, + [53397] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51821] = 3, - ACTIONS(2638), 1, + [53408] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1500), 1, + STATE(1410), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51832] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1498), 1, - sym_formal_parameters, + [53419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51843] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1495), 1, - sym_formal_parameters, + ACTIONS(1544), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53428] = 3, + ACTIONS(3292), 1, + anon_sym_LBRACE, + STATE(356), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51854] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1494), 1, - sym_formal_parameters, + [53439] = 3, + ACTIONS(3324), 1, + anon_sym_SEMI, + ACTIONS(3326), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51865] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1488), 1, - sym_formal_parameters, + [53450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51876] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1487), 1, - sym_formal_parameters, + ACTIONS(1548), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53459] = 3, + ACTIONS(2772), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51887] = 3, - ACTIONS(3211), 1, + [53470] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(497), 1, + STATE(932), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51898] = 3, - ACTIONS(2739), 1, + [53481] = 3, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(744), 1, - sym_class_body, + STATE(935), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51909] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1486), 1, - sym_formal_parameters, + [53492] = 3, + ACTIONS(3262), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51920] = 3, - ACTIONS(3227), 1, + [53503] = 3, + ACTIONS(3037), 1, anon_sym_LBRACE, - STATE(717), 1, - sym_statement_block, + STATE(338), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51931] = 3, - ACTIONS(2638), 1, + [53514] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1485), 1, + STATE(1494), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51942] = 3, - ACTIONS(2638), 1, + [53525] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1484), 1, + STATE(1496), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51953] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1483), 1, - sym_formal_parameters, + [53536] = 3, + ACTIONS(3292), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51964] = 3, - ACTIONS(2638), 1, + [53547] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1482), 1, + STATE(1607), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51975] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1360), 1, - sym_formal_parameters, + [53558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51986] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_formal_parameters, + ACTIONS(3328), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53567] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53578] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51997] = 3, - ACTIONS(2739), 1, + [53589] = 3, + ACTIONS(2772), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(734), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52008] = 3, - ACTIONS(2101), 1, + [53600] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(910), 1, + STATE(934), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52019] = 2, + [53611] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(932), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3069), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52028] = 3, - ACTIONS(2101), 1, + [53622] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(938), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52039] = 3, - ACTIONS(2785), 1, - anon_sym_LBRACE, - STATE(507), 1, - sym_class_body, + [53633] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52050] = 3, - ACTIONS(2638), 1, + ACTIONS(3094), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53642] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1443), 1, + STATE(1562), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52061] = 3, - ACTIONS(3018), 1, + [53653] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3087), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53662] = 3, + ACTIONS(3120), 1, anon_sym_LBRACE, - STATE(908), 1, + STATE(943), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52072] = 3, - ACTIONS(2493), 1, - anon_sym_DOT, - ACTIONS(3078), 1, - anon_sym_GT, + [53673] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52083] = 3, - ACTIONS(2487), 1, - anon_sym_COLON, - ACTIONS(3078), 1, - anon_sym_GT, + [53684] = 3, + ACTIONS(2812), 1, + anon_sym_LBRACE, + STATE(530), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53695] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52094] = 2, + [53706] = 3, + ACTIONS(3330), 1, + sym_identifier, + ACTIONS(3332), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3265), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52103] = 3, - ACTIONS(2087), 1, + [53717] = 3, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(3267), 1, + ACTIONS(2371), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52114] = 3, - ACTIONS(3227), 1, + [53728] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(743), 1, + STATE(520), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52125] = 3, - ACTIONS(2087), 1, - anon_sym_LPAREN, - ACTIONS(2281), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52136] = 2, + [53739] = 3, + ACTIONS(3120), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3076), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52145] = 3, - ACTIONS(2638), 1, + [53750] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(1461), 1, + STATE(1485), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52156] = 3, - ACTIONS(3211), 1, + [53761] = 3, + ACTIONS(3254), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(536), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52167] = 3, - ACTIONS(3211), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_statement_block, + [53772] = 3, + ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(3334), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52178] = 3, - ACTIONS(3269), 1, - anon_sym_SEMI, - ACTIONS(3271), 1, - sym__automatic_semicolon, + [53783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52189] = 3, - ACTIONS(2739), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_class_body, + ACTIONS(3244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53792] = 3, + ACTIONS(3059), 1, + anon_sym_from, + STATE(1582), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52200] = 2, + [53803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1465), 2, + ACTIONS(3336), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52209] = 3, - ACTIONS(3273), 1, - anon_sym_SEMI, - ACTIONS(3275), 1, - sym__automatic_semicolon, + [53812] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52220] = 3, - ACTIONS(2638), 1, + [53823] = 3, + ACTIONS(3272), 1, anon_sym_LPAREN, - STATE(1463), 1, - sym_formal_parameters, + STATE(27), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52231] = 3, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3279), 1, - anon_sym_STAR, + [53834] = 3, + ACTIONS(2666), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52242] = 3, - ACTIONS(2101), 1, - anon_sym_LBRACE, - STATE(908), 1, - sym_statement_block, + [53845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52253] = 3, - ACTIONS(3018), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_statement_block, + ACTIONS(3338), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53854] = 3, + ACTIONS(3340), 1, + sym_identifier, + ACTIONS(3342), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52264] = 3, - ACTIONS(3243), 1, + [53865] = 3, + ACTIONS(2666), 1, anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + STATE(1578), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52275] = 3, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1370), 1, - sym_parenthesized_expression, + [53876] = 3, + ACTIONS(2776), 1, + sym_identifier, + ACTIONS(2780), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52286] = 3, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + [53887] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(737), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52297] = 3, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, + [53898] = 3, + ACTIONS(3252), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52308] = 3, - ACTIONS(3281), 1, - anon_sym_SEMI, - ACTIONS(3283), 1, - sym__automatic_semicolon, + [53909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52319] = 3, - ACTIONS(2785), 1, + ACTIONS(3344), 2, anon_sym_LBRACE, - STATE(499), 1, - sym_class_body, + anon_sym_EQ_GT, + [53918] = 2, + ACTIONS(1809), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52330] = 3, - ACTIONS(2815), 1, + [53926] = 2, + ACTIONS(3346), 1, sym_identifier, - ACTIONS(2819), 1, - sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52341] = 3, - ACTIONS(3285), 1, - sym_identifier, - ACTIONS(3287), 1, - sym_private_property_identifier, + [53934] = 2, + ACTIONS(3190), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52352] = 3, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2771), 1, - sym_private_property_identifier, + [53942] = 2, + ACTIONS(3348), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52363] = 3, - ACTIONS(3289), 1, - sym_identifier, - ACTIONS(3291), 1, - sym_private_property_identifier, + [53950] = 2, + ACTIONS(1673), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52374] = 3, - ACTIONS(3227), 1, - anon_sym_LBRACE, - STATE(742), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, + [53958] = 3, + ACTIONS(3), 1, sym_comment, - [52385] = 3, - ACTIONS(2638), 1, - anon_sym_LPAREN, - STATE(1489), 1, - sym_formal_parameters, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3350), 1, + sym_regex_pattern, + [53968] = 2, + ACTIONS(1745), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52396] = 2, - ACTIONS(3293), 1, - anon_sym_from, + [53976] = 2, + ACTIONS(1775), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52404] = 2, - ACTIONS(3295), 1, - anon_sym_EQ_GT, + [53984] = 2, + ACTIONS(3352), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52412] = 2, - ACTIONS(2087), 1, - anon_sym_LPAREN, + [53992] = 2, + ACTIONS(3354), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52420] = 3, + [54000] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3297), 1, - sym_regex_pattern, - [52430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(3356), 1, + anon_sym_SLASH2, + [54010] = 2, + ACTIONS(1779), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3299), 1, - sym_regex_pattern, - [52440] = 2, - ACTIONS(3301), 1, - sym_identifier, + sym_comment, + [54018] = 2, + ACTIONS(3358), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52448] = 2, - ACTIONS(3193), 1, - anon_sym_RBRACE, + [54026] = 2, + ACTIONS(1751), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52456] = 2, - ACTIONS(3303), 1, + [54034] = 2, + ACTIONS(3360), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52464] = 2, - ACTIONS(3305), 1, - anon_sym_EQ_GT, + [54042] = 2, + ACTIONS(3276), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52472] = 2, - ACTIONS(1656), 1, - anon_sym_in, + [54050] = 2, + ACTIONS(3248), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52480] = 2, - ACTIONS(3307), 1, - anon_sym_EQ_GT, + [54058] = 2, + ACTIONS(3182), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52488] = 2, - ACTIONS(3309), 1, + [54066] = 2, + ACTIONS(3334), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52496] = 2, - ACTIONS(3311), 1, - anon_sym_EQ, + [54074] = 2, + ACTIONS(1747), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52504] = 2, - ACTIONS(3313), 1, - anon_sym_while, + [54082] = 2, + ACTIONS(3362), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [54090] = 2, + ACTIONS(1731), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3315), 1, - anon_sym_SLASH2, - [52522] = 2, - ACTIONS(3317), 1, - anon_sym_target, + sym_comment, + [54098] = 2, + ACTIONS(1783), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52530] = 2, - ACTIONS(3054), 1, - anon_sym_RBRACE, + [54106] = 2, + ACTIONS(1801), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52538] = 2, - ACTIONS(3319), 1, - sym_identifier, + [54114] = 2, + ACTIONS(3364), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52546] = 2, - ACTIONS(3321), 1, - anon_sym_EQ, + [54122] = 2, + ACTIONS(1791), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 2, - ACTIONS(3323), 1, - anon_sym_EQ_GT, + [54130] = 2, + ACTIONS(2882), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52562] = 2, - ACTIONS(3267), 1, - anon_sym_EQ_GT, + [54138] = 2, + ACTIONS(3366), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52570] = 2, - ACTIONS(3325), 1, - sym_identifier, + [54146] = 2, + ACTIONS(3368), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52578] = 2, - ACTIONS(2281), 1, + [54154] = 2, + ACTIONS(3370), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52586] = 2, - ACTIONS(3327), 1, + [54162] = 2, + ACTIONS(3372), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52594] = 2, - ACTIONS(1758), 1, + [54170] = 2, + ACTIONS(1759), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52602] = 2, - ACTIONS(3329), 1, - anon_sym_COLON, + [54178] = 2, + ACTIONS(1803), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52610] = 2, - ACTIONS(3331), 1, + [54186] = 2, + ACTIONS(3374), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52618] = 2, - ACTIONS(1746), 1, - anon_sym_RBRACE, + [54194] = 2, + ACTIONS(3376), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52626] = 2, - ACTIONS(3333), 1, + [54202] = 2, + ACTIONS(3378), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52634] = 2, - ACTIONS(1697), 1, - anon_sym_RBRACK, + [54210] = 2, + ACTIONS(3380), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52642] = 2, - ACTIONS(1703), 1, - anon_sym_RBRACE, + [54218] = 2, + ACTIONS(1763), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52650] = 2, - ACTIONS(3056), 1, - anon_sym_GT, + [54226] = 2, + ACTIONS(1471), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52658] = 2, - ACTIONS(3335), 1, + [54234] = 2, + ACTIONS(3382), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52666] = 2, - ACTIONS(3337), 1, - sym_identifier, + [54242] = 2, + ACTIONS(2371), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54250] = 2, + ACTIONS(1829), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54258] = 2, + ACTIONS(1773), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52674] = 3, + [54266] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3339), 1, + ACTIONS(3384), 1, sym_regex_pattern, - [52684] = 2, - ACTIONS(3341), 1, - anon_sym_RPAREN, + [54276] = 2, + ACTIONS(2927), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52692] = 2, - ACTIONS(3343), 1, - anon_sym_from, + [54284] = 2, + ACTIONS(1757), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52700] = 2, - ACTIONS(3345), 1, - anon_sym_from, + [54292] = 2, + ACTIONS(3386), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52708] = 2, - ACTIONS(3347), 1, - anon_sym_COLON, + [54300] = 2, + ACTIONS(3388), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52716] = 2, - ACTIONS(3124), 1, - anon_sym_GT, + [54308] = 2, + ACTIONS(1793), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52724] = 2, - ACTIONS(1732), 1, + [54316] = 2, + ACTIONS(3390), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3349), 1, - anon_sym_SLASH2, - [52742] = 2, - ACTIONS(3351), 1, - sym_identifier, + [54324] = 2, + ACTIONS(1795), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52750] = 2, - ACTIONS(1701), 1, - anon_sym_RPAREN, + [54332] = 2, + ACTIONS(2137), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52758] = 2, - ACTIONS(3160), 1, - anon_sym_GT, + [54340] = 2, + ACTIONS(3392), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52766] = 3, - ACTIONS(3), 1, + [54348] = 2, + ACTIONS(3394), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [54356] = 2, + ACTIONS(3396), 1, + anon_sym_from, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3353), 1, - anon_sym_SLASH2, - [52776] = 2, - ACTIONS(3355), 1, + sym_comment, + [54364] = 2, + ACTIONS(3398), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52784] = 2, - ACTIONS(3357), 1, + [54372] = 2, + ACTIONS(3400), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52792] = 2, - ACTIONS(3359), 1, - anon_sym_EQ_GT, + [54380] = 2, + ACTIONS(1805), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52800] = 2, - ACTIONS(1724), 1, + [54388] = 2, + ACTIONS(1743), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52808] = 2, - ACTIONS(3203), 1, - anon_sym_from, + [54396] = 2, + ACTIONS(3176), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52816] = 2, - ACTIONS(3361), 1, - anon_sym_from, + [54404] = 2, + ACTIONS(3402), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52824] = 2, - ACTIONS(1734), 1, - anon_sym_COLON, + [54412] = 2, + ACTIONS(1739), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52832] = 2, - ACTIONS(3317), 1, - anon_sym_meta, + [54420] = 2, + ACTIONS(3227), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52840] = 2, - ACTIONS(3363), 1, - anon_sym_as, + [54428] = 2, + ACTIONS(3404), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52848] = 2, - ACTIONS(1695), 1, - anon_sym_RPAREN, + [54436] = 2, + ACTIONS(3406), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52856] = 2, - ACTIONS(1738), 1, - anon_sym_RPAREN, + [54444] = 2, + ACTIONS(3408), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52864] = 2, - ACTIONS(3365), 1, - anon_sym_EQ_GT, + [54452] = 2, + ACTIONS(3082), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52872] = 2, - ACTIONS(2936), 1, - anon_sym_EQ, + [54460] = 2, + ACTIONS(3410), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52880] = 2, - ACTIONS(3367), 1, - anon_sym_EQ, + [54468] = 2, + ACTIONS(3412), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52888] = 2, - ACTIONS(1744), 1, + [54476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3414), 1, + sym_regex_pattern, + [54486] = 2, + ACTIONS(1755), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52896] = 2, - ACTIONS(1793), 1, - anon_sym_in, + [54494] = 2, + ACTIONS(1777), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52904] = 2, - ACTIONS(3369), 1, - anon_sym_target, + [54502] = 2, + ACTIONS(3416), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52912] = 2, - ACTIONS(1699), 1, - anon_sym_RBRACK, + [54510] = 2, + ACTIONS(3418), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52920] = 2, - ACTIONS(3371), 1, - anon_sym_from, + [54518] = 2, + ACTIONS(3420), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52928] = 2, - ACTIONS(1714), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, + [54526] = 3, + ACTIONS(3), 1, sym_comment, - [52936] = 2, - ACTIONS(3373), 1, - anon_sym_function, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3422), 1, + sym_regex_pattern, + [54536] = 2, + ACTIONS(3424), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52944] = 2, - ACTIONS(3375), 1, - sym_identifier, + [54544] = 2, + ACTIONS(3426), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52952] = 2, - ACTIONS(3377), 1, + [54552] = 2, + ACTIONS(1811), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52960] = 2, - ACTIONS(3379), 1, - anon_sym_EQ_GT, + [54560] = 2, + ACTIONS(1741), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52968] = 2, - ACTIONS(3381), 1, - anon_sym_RPAREN, + [54568] = 2, + ACTIONS(3428), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52976] = 2, - ACTIONS(3038), 1, - anon_sym_EQ, + [54576] = 2, + ACTIONS(3430), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52984] = 2, - ACTIONS(3383), 1, - ts_builtin_sym_end, + [54584] = 2, + ACTIONS(1761), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52992] = 2, - ACTIONS(1730), 1, - anon_sym_RBRACK, + [54592] = 2, + ACTIONS(1649), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53000] = 2, - ACTIONS(1830), 1, + [54600] = 2, + ACTIONS(1898), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53008] = 2, - ACTIONS(1617), 1, - anon_sym_in, + [54608] = 2, + ACTIONS(3352), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53016] = 2, - ACTIONS(3385), 1, + [54616] = 2, + ACTIONS(3432), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53024] = 2, - ACTIONS(3387), 1, + [54624] = 2, + ACTIONS(3434), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53032] = 2, - ACTIONS(3389), 1, + [54632] = 2, + ACTIONS(3436), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53040] = 2, - ACTIONS(3391), 1, + [54640] = 2, + ACTIONS(3438), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53048] = 3, + [54648] = 2, + ACTIONS(3440), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54656] = 2, + ACTIONS(1767), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54664] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3393), 1, - sym_regex_pattern, - [53058] = 2, - ACTIONS(3078), 1, - anon_sym_GT, + ACTIONS(3442), 1, + anon_sym_SLASH2, + [54674] = 2, + ACTIONS(3444), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53066] = 2, - ACTIONS(1742), 1, - anon_sym_RBRACE, + [54682] = 2, + ACTIONS(3446), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53074] = 2, - ACTIONS(1740), 1, - anon_sym_RBRACK, + [54690] = 2, + ACTIONS(3448), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53082] = 2, - ACTIONS(1395), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, + [54698] = 3, + ACTIONS(3), 1, sym_comment, - [53090] = 2, - ACTIONS(2715), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3450), 1, + anon_sym_SLASH2, + [54708] = 2, + ACTIONS(3452), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 2, - ACTIONS(3395), 1, - anon_sym_EQ_GT, + [54716] = 2, + ACTIONS(1765), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53106] = 2, - ACTIONS(3369), 1, - anon_sym_meta, + [54724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3454), 1, + anon_sym_SLASH2, + [54734] = 2, + ACTIONS(3362), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 2, - ACTIONS(3397), 1, + [54742] = 2, + ACTIONS(3456), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53122] = 2, - ACTIONS(3399), 1, + [54750] = 2, + ACTIONS(3458), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53130] = 2, - ACTIONS(1718), 1, - anon_sym_RPAREN, + [54758] = 2, + ACTIONS(1781), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3401), 1, - anon_sym_SLASH2, - [53148] = 2, - ACTIONS(3403), 1, - anon_sym_EQ_GT, + [54766] = 2, + ACTIONS(1729), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53156] = 2, - ACTIONS(3405), 1, + [54774] = 2, + ACTIONS(3460), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, + [54782] = 2, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(311)] = 0, - [SMALL_STATE(312)] = 75, - [SMALL_STATE(313)] = 164, - [SMALL_STATE(314)] = 234, - [SMALL_STATE(315)] = 308, - [SMALL_STATE(316)] = 378, - [SMALL_STATE(317)] = 450, - [SMALL_STATE(318)] = 522, - [SMALL_STATE(319)] = 592, - [SMALL_STATE(320)] = 682, - [SMALL_STATE(321)] = 768, - [SMALL_STATE(322)] = 840, - [SMALL_STATE(323)] = 910, - [SMALL_STATE(324)] = 980, - [SMALL_STATE(325)] = 1050, - [SMALL_STATE(326)] = 1122, - [SMALL_STATE(327)] = 1194, - [SMALL_STATE(328)] = 1264, - [SMALL_STATE(329)] = 1336, - [SMALL_STATE(330)] = 1406, - [SMALL_STATE(331)] = 1492, - [SMALL_STATE(332)] = 1564, - [SMALL_STATE(333)] = 1634, - [SMALL_STATE(334)] = 1706, - [SMALL_STATE(335)] = 1778, - [SMALL_STATE(336)] = 1850, - [SMALL_STATE(337)] = 1936, - [SMALL_STATE(338)] = 2008, - [SMALL_STATE(339)] = 2077, - [SMALL_STATE(340)] = 2146, - [SMALL_STATE(341)] = 2215, - [SMALL_STATE(342)] = 2284, - [SMALL_STATE(343)] = 2353, - [SMALL_STATE(344)] = 2422, - [SMALL_STATE(345)] = 2491, - [SMALL_STATE(346)] = 2560, - [SMALL_STATE(347)] = 2629, - [SMALL_STATE(348)] = 2698, - [SMALL_STATE(349)] = 2767, - [SMALL_STATE(350)] = 2856, - [SMALL_STATE(351)] = 2925, - [SMALL_STATE(352)] = 2994, - [SMALL_STATE(353)] = 3063, - [SMALL_STATE(354)] = 3132, - [SMALL_STATE(355)] = 3217, - [SMALL_STATE(356)] = 3302, - [SMALL_STATE(357)] = 3371, - [SMALL_STATE(358)] = 3440, - [SMALL_STATE(359)] = 3509, - [SMALL_STATE(360)] = 3578, - [SMALL_STATE(361)] = 3647, - [SMALL_STATE(362)] = 3716, - [SMALL_STATE(363)] = 3785, - [SMALL_STATE(364)] = 3854, - [SMALL_STATE(365)] = 3923, - [SMALL_STATE(366)] = 3992, - [SMALL_STATE(367)] = 4061, - [SMALL_STATE(368)] = 4130, - [SMALL_STATE(369)] = 4199, - [SMALL_STATE(370)] = 4268, - [SMALL_STATE(371)] = 4337, - [SMALL_STATE(372)] = 4406, - [SMALL_STATE(373)] = 4475, - [SMALL_STATE(374)] = 4544, - [SMALL_STATE(375)] = 4613, - [SMALL_STATE(376)] = 4682, - [SMALL_STATE(377)] = 4751, - [SMALL_STATE(378)] = 4820, - [SMALL_STATE(379)] = 4889, - [SMALL_STATE(380)] = 4976, - [SMALL_STATE(381)] = 5045, - [SMALL_STATE(382)] = 5114, - [SMALL_STATE(383)] = 5183, - [SMALL_STATE(384)] = 5252, - [SMALL_STATE(385)] = 5321, - [SMALL_STATE(386)] = 5408, - [SMALL_STATE(387)] = 5477, - [SMALL_STATE(388)] = 5546, - [SMALL_STATE(389)] = 5615, - [SMALL_STATE(390)] = 5684, - [SMALL_STATE(391)] = 5753, - [SMALL_STATE(392)] = 5822, - [SMALL_STATE(393)] = 5891, - [SMALL_STATE(394)] = 5960, - [SMALL_STATE(395)] = 6029, - [SMALL_STATE(396)] = 6098, - [SMALL_STATE(397)] = 6167, - [SMALL_STATE(398)] = 6236, - [SMALL_STATE(399)] = 6325, - [SMALL_STATE(400)] = 6394, - [SMALL_STATE(401)] = 6463, - [SMALL_STATE(402)] = 6532, - [SMALL_STATE(403)] = 6615, - [SMALL_STATE(404)] = 6697, - [SMALL_STATE(405)] = 6779, - [SMALL_STATE(406)] = 6861, - [SMALL_STATE(407)] = 6926, - [SMALL_STATE(408)] = 7009, - [SMALL_STATE(409)] = 7078, - [SMALL_STATE(410)] = 7143, - [SMALL_STATE(411)] = 7208, - [SMALL_STATE(412)] = 7273, - [SMALL_STATE(413)] = 7338, - [SMALL_STATE(414)] = 7403, - [SMALL_STATE(415)] = 7468, - [SMALL_STATE(416)] = 7532, - [SMALL_STATE(417)] = 7602, - [SMALL_STATE(418)] = 7672, - [SMALL_STATE(419)] = 7736, - [SMALL_STATE(420)] = 7800, - [SMALL_STATE(421)] = 7870, - [SMALL_STATE(422)] = 7940, - [SMALL_STATE(423)] = 8004, - [SMALL_STATE(424)] = 8068, - [SMALL_STATE(425)] = 8132, - [SMALL_STATE(426)] = 8196, - [SMALL_STATE(427)] = 8260, - [SMALL_STATE(428)] = 8331, - [SMALL_STATE(429)] = 8402, - [SMALL_STATE(430)] = 8473, - [SMALL_STATE(431)] = 8546, - [SMALL_STATE(432)] = 8609, - [SMALL_STATE(433)] = 8678, - [SMALL_STATE(434)] = 8747, - [SMALL_STATE(435)] = 8816, - [SMALL_STATE(436)] = 8889, - [SMALL_STATE(437)] = 8952, - [SMALL_STATE(438)] = 9023, - [SMALL_STATE(439)] = 9094, - [SMALL_STATE(440)] = 9157, - [SMALL_STATE(441)] = 9224, - [SMALL_STATE(442)] = 9293, - [SMALL_STATE(443)] = 9362, - [SMALL_STATE(444)] = 9433, - [SMALL_STATE(445)] = 9504, - [SMALL_STATE(446)] = 9575, - [SMALL_STATE(447)] = 9638, - [SMALL_STATE(448)] = 9701, - [SMALL_STATE(449)] = 9764, - [SMALL_STATE(450)] = 9827, - [SMALL_STATE(451)] = 9896, - [SMALL_STATE(452)] = 9965, - [SMALL_STATE(453)] = 10036, - [SMALL_STATE(454)] = 10107, - [SMALL_STATE(455)] = 10174, - [SMALL_STATE(456)] = 10243, - [SMALL_STATE(457)] = 10311, - [SMALL_STATE(458)] = 10379, - [SMALL_STATE(459)] = 10447, - [SMALL_STATE(460)] = 10517, - [SMALL_STATE(461)] = 10583, - [SMALL_STATE(462)] = 10653, - [SMALL_STATE(463)] = 10723, - [SMALL_STATE(464)] = 10789, - [SMALL_STATE(465)] = 10860, - [SMALL_STATE(466)] = 10931, - [SMALL_STATE(467)] = 10998, - [SMALL_STATE(468)] = 11065, - [SMALL_STATE(469)] = 11132, - [SMALL_STATE(470)] = 11200, - [SMALL_STATE(471)] = 11266, - [SMALL_STATE(472)] = 11336, - [SMALL_STATE(473)] = 11406, - [SMALL_STATE(474)] = 11472, - [SMALL_STATE(475)] = 11538, - [SMALL_STATE(476)] = 11604, - [SMALL_STATE(477)] = 11667, - [SMALL_STATE(478)] = 11734, - [SMALL_STATE(479)] = 11789, - [SMALL_STATE(480)] = 11854, - [SMALL_STATE(481)] = 11917, - [SMALL_STATE(482)] = 11982, - [SMALL_STATE(483)] = 12042, - [SMALL_STATE(484)] = 12096, - [SMALL_STATE(485)] = 12148, - [SMALL_STATE(486)] = 12202, - [SMALL_STATE(487)] = 12254, - [SMALL_STATE(488)] = 12306, - [SMALL_STATE(489)] = 12360, - [SMALL_STATE(490)] = 12414, - [SMALL_STATE(491)] = 12463, - [SMALL_STATE(492)] = 12512, - [SMALL_STATE(493)] = 12561, - [SMALL_STATE(494)] = 12610, - [SMALL_STATE(495)] = 12705, - [SMALL_STATE(496)] = 12754, - [SMALL_STATE(497)] = 12849, - [SMALL_STATE(498)] = 12898, - [SMALL_STATE(499)] = 12947, - [SMALL_STATE(500)] = 12996, - [SMALL_STATE(501)] = 13045, - [SMALL_STATE(502)] = 13094, - [SMALL_STATE(503)] = 13143, - [SMALL_STATE(504)] = 13192, - [SMALL_STATE(505)] = 13287, - [SMALL_STATE(506)] = 13338, - [SMALL_STATE(507)] = 13387, - [SMALL_STATE(508)] = 13436, - [SMALL_STATE(509)] = 13485, - [SMALL_STATE(510)] = 13534, - [SMALL_STATE(511)] = 13583, - [SMALL_STATE(512)] = 13632, - [SMALL_STATE(513)] = 13695, - [SMALL_STATE(514)] = 13744, - [SMALL_STATE(515)] = 13793, - [SMALL_STATE(516)] = 13844, - [SMALL_STATE(517)] = 13893, - [SMALL_STATE(518)] = 13942, - [SMALL_STATE(519)] = 13991, - [SMALL_STATE(520)] = 14040, - [SMALL_STATE(521)] = 14089, - [SMALL_STATE(522)] = 14138, - [SMALL_STATE(523)] = 14233, - [SMALL_STATE(524)] = 14328, - [SMALL_STATE(525)] = 14377, - [SMALL_STATE(526)] = 14472, - [SMALL_STATE(527)] = 14523, - [SMALL_STATE(528)] = 14618, - [SMALL_STATE(529)] = 14667, - [SMALL_STATE(530)] = 14716, - [SMALL_STATE(531)] = 14811, - [SMALL_STATE(532)] = 14860, - [SMALL_STATE(533)] = 14909, - [SMALL_STATE(534)] = 15004, - [SMALL_STATE(535)] = 15079, - [SMALL_STATE(536)] = 15128, - [SMALL_STATE(537)] = 15177, - [SMALL_STATE(538)] = 15226, - [SMALL_STATE(539)] = 15275, - [SMALL_STATE(540)] = 15370, - [SMALL_STATE(541)] = 15433, - [SMALL_STATE(542)] = 15494, - [SMALL_STATE(543)] = 15543, - [SMALL_STATE(544)] = 15608, - [SMALL_STATE(545)] = 15657, - [SMALL_STATE(546)] = 15752, - [SMALL_STATE(547)] = 15839, - [SMALL_STATE(548)] = 15888, - [SMALL_STATE(549)] = 15977, - [SMALL_STATE(550)] = 16026, - [SMALL_STATE(551)] = 16075, - [SMALL_STATE(552)] = 16124, - [SMALL_STATE(553)] = 16219, - [SMALL_STATE(554)] = 16290, - [SMALL_STATE(555)] = 16373, - [SMALL_STATE(556)] = 16458, - [SMALL_STATE(557)] = 16507, - [SMALL_STATE(558)] = 16594, - [SMALL_STATE(559)] = 16663, - [SMALL_STATE(560)] = 16728, - [SMALL_STATE(561)] = 16777, - [SMALL_STATE(562)] = 16856, - [SMALL_STATE(563)] = 16947, - [SMALL_STATE(564)] = 16996, - [SMALL_STATE(565)] = 17051, - [SMALL_STATE(566)] = 17100, - [SMALL_STATE(567)] = 17149, - [SMALL_STATE(568)] = 17198, - [SMALL_STATE(569)] = 17247, - [SMALL_STATE(570)] = 17296, - [SMALL_STATE(571)] = 17345, - [SMALL_STATE(572)] = 17394, - [SMALL_STATE(573)] = 17443, - [SMALL_STATE(574)] = 17492, - [SMALL_STATE(575)] = 17587, - [SMALL_STATE(576)] = 17636, - [SMALL_STATE(577)] = 17685, - [SMALL_STATE(578)] = 17734, - [SMALL_STATE(579)] = 17783, - [SMALL_STATE(580)] = 17832, - [SMALL_STATE(581)] = 17881, - [SMALL_STATE(582)] = 17930, - [SMALL_STATE(583)] = 17979, - [SMALL_STATE(584)] = 18073, - [SMALL_STATE(585)] = 18171, - [SMALL_STATE(586)] = 18265, - [SMALL_STATE(587)] = 18359, - [SMALL_STATE(588)] = 18453, - [SMALL_STATE(589)] = 18547, - [SMALL_STATE(590)] = 18641, - [SMALL_STATE(591)] = 18735, - [SMALL_STATE(592)] = 18829, - [SMALL_STATE(593)] = 18879, - [SMALL_STATE(594)] = 18933, - [SMALL_STATE(595)] = 19027, - [SMALL_STATE(596)] = 19121, - [SMALL_STATE(597)] = 19185, - [SMALL_STATE(598)] = 19279, - [SMALL_STATE(599)] = 19329, - [SMALL_STATE(600)] = 19423, - [SMALL_STATE(601)] = 19471, - [SMALL_STATE(602)] = 19523, - [SMALL_STATE(603)] = 19597, - [SMALL_STATE(604)] = 19683, - [SMALL_STATE(605)] = 19781, - [SMALL_STATE(606)] = 19839, - [SMALL_STATE(607)] = 19933, - [SMALL_STATE(608)] = 20027, - [SMALL_STATE(609)] = 20121, - [SMALL_STATE(610)] = 20215, - [SMALL_STATE(611)] = 20309, - [SMALL_STATE(612)] = 20397, - [SMALL_STATE(613)] = 20495, - [SMALL_STATE(614)] = 20543, - [SMALL_STATE(615)] = 20641, - [SMALL_STATE(616)] = 20735, - [SMALL_STATE(617)] = 20829, - [SMALL_STATE(618)] = 20879, - [SMALL_STATE(619)] = 20975, - [SMALL_STATE(620)] = 21059, - [SMALL_STATE(621)] = 21109, - [SMALL_STATE(622)] = 21203, - [SMALL_STATE(623)] = 21293, - [SMALL_STATE(624)] = 21391, - [SMALL_STATE(625)] = 21485, - [SMALL_STATE(626)] = 21575, - [SMALL_STATE(627)] = 21653, - [SMALL_STATE(628)] = 21731, - [SMALL_STATE(629)] = 21795, - [SMALL_STATE(630)] = 21889, - [SMALL_STATE(631)] = 21957, - [SMALL_STATE(632)] = 22043, - [SMALL_STATE(633)] = 22093, - [SMALL_STATE(634)] = 22175, - [SMALL_STATE(635)] = 22239, - [SMALL_STATE(636)] = 22333, - [SMALL_STATE(637)] = 22403, - [SMALL_STATE(638)] = 22471, - [SMALL_STATE(639)] = 22559, - [SMALL_STATE(640)] = 22645, - [SMALL_STATE(641)] = 22739, - [SMALL_STATE(642)] = 22791, - [SMALL_STATE(643)] = 22877, - [SMALL_STATE(644)] = 22961, - [SMALL_STATE(645)] = 23043, - [SMALL_STATE(646)] = 23093, - [SMALL_STATE(647)] = 23191, - [SMALL_STATE(648)] = 23261, - [SMALL_STATE(649)] = 23325, - [SMALL_STATE(650)] = 23399, - [SMALL_STATE(651)] = 23449, - [SMALL_STATE(652)] = 23543, - [SMALL_STATE(653)] = 23593, - [SMALL_STATE(654)] = 23687, - [SMALL_STATE(655)] = 23784, - [SMALL_STATE(656)] = 23831, - [SMALL_STATE(657)] = 23928, - [SMALL_STATE(658)] = 23975, - [SMALL_STATE(659)] = 24022, - [SMALL_STATE(660)] = 24073, - [SMALL_STATE(661)] = 24170, - [SMALL_STATE(662)] = 24267, - [SMALL_STATE(663)] = 24314, - [SMALL_STATE(664)] = 24361, - [SMALL_STATE(665)] = 24458, - [SMALL_STATE(666)] = 24505, - [SMALL_STATE(667)] = 24552, - [SMALL_STATE(668)] = 24599, - [SMALL_STATE(669)] = 24646, - [SMALL_STATE(670)] = 24699, - [SMALL_STATE(671)] = 24746, - [SMALL_STATE(672)] = 24793, - [SMALL_STATE(673)] = 24890, - [SMALL_STATE(674)] = 24937, - [SMALL_STATE(675)] = 25034, - [SMALL_STATE(676)] = 25081, - [SMALL_STATE(677)] = 25178, - [SMALL_STATE(678)] = 25275, - [SMALL_STATE(679)] = 25322, - [SMALL_STATE(680)] = 25369, - [SMALL_STATE(681)] = 25416, - [SMALL_STATE(682)] = 25463, - [SMALL_STATE(683)] = 25514, - [SMALL_STATE(684)] = 25611, - [SMALL_STATE(685)] = 25658, - [SMALL_STATE(686)] = 25705, - [SMALL_STATE(687)] = 25752, - [SMALL_STATE(688)] = 25799, - [SMALL_STATE(689)] = 25850, - [SMALL_STATE(690)] = 25943, - [SMALL_STATE(691)] = 26040, - [SMALL_STATE(692)] = 26087, - [SMALL_STATE(693)] = 26134, - [SMALL_STATE(694)] = 26181, - [SMALL_STATE(695)] = 26232, - [SMALL_STATE(696)] = 26283, - [SMALL_STATE(697)] = 26334, - [SMALL_STATE(698)] = 26431, - [SMALL_STATE(699)] = 26528, - [SMALL_STATE(700)] = 26575, - [SMALL_STATE(701)] = 26624, - [SMALL_STATE(702)] = 26671, - [SMALL_STATE(703)] = 26720, - [SMALL_STATE(704)] = 26771, - [SMALL_STATE(705)] = 26818, - [SMALL_STATE(706)] = 26865, - [SMALL_STATE(707)] = 26912, - [SMALL_STATE(708)] = 26959, - [SMALL_STATE(709)] = 27056, - [SMALL_STATE(710)] = 27153, - [SMALL_STATE(711)] = 27206, - [SMALL_STATE(712)] = 27253, - [SMALL_STATE(713)] = 27304, - [SMALL_STATE(714)] = 27351, - [SMALL_STATE(715)] = 27448, - [SMALL_STATE(716)] = 27495, - [SMALL_STATE(717)] = 27592, - [SMALL_STATE(718)] = 27639, - [SMALL_STATE(719)] = 27686, - [SMALL_STATE(720)] = 27733, - [SMALL_STATE(721)] = 27780, - [SMALL_STATE(722)] = 27831, - [SMALL_STATE(723)] = 27928, - [SMALL_STATE(724)] = 28025, - [SMALL_STATE(725)] = 28122, - [SMALL_STATE(726)] = 28219, - [SMALL_STATE(727)] = 28270, - [SMALL_STATE(728)] = 28321, - [SMALL_STATE(729)] = 28368, - [SMALL_STATE(730)] = 28415, - [SMALL_STATE(731)] = 28468, - [SMALL_STATE(732)] = 28515, - [SMALL_STATE(733)] = 28612, - [SMALL_STATE(734)] = 28661, - [SMALL_STATE(735)] = 28754, - [SMALL_STATE(736)] = 28805, - [SMALL_STATE(737)] = 28858, - [SMALL_STATE(738)] = 28905, - [SMALL_STATE(739)] = 28956, - [SMALL_STATE(740)] = 29003, - [SMALL_STATE(741)] = 29056, - [SMALL_STATE(742)] = 29105, - [SMALL_STATE(743)] = 29152, - [SMALL_STATE(744)] = 29203, - [SMALL_STATE(745)] = 29250, - [SMALL_STATE(746)] = 29343, - [SMALL_STATE(747)] = 29390, - [SMALL_STATE(748)] = 29487, - [SMALL_STATE(749)] = 29534, - [SMALL_STATE(750)] = 29631, - [SMALL_STATE(751)] = 29678, - [SMALL_STATE(752)] = 29725, - [SMALL_STATE(753)] = 29822, - [SMALL_STATE(754)] = 29869, - [SMALL_STATE(755)] = 29916, - [SMALL_STATE(756)] = 29963, - [SMALL_STATE(757)] = 30013, - [SMALL_STATE(758)] = 30105, - [SMALL_STATE(759)] = 30197, - [SMALL_STATE(760)] = 30289, - [SMALL_STATE(761)] = 30381, - [SMALL_STATE(762)] = 30469, - [SMALL_STATE(763)] = 30561, - [SMALL_STATE(764)] = 30637, - [SMALL_STATE(765)] = 30729, - [SMALL_STATE(766)] = 30821, - [SMALL_STATE(767)] = 30913, - [SMALL_STATE(768)] = 31005, - [SMALL_STATE(769)] = 31067, - [SMALL_STATE(770)] = 31117, - [SMALL_STATE(771)] = 31183, - [SMALL_STATE(772)] = 31267, - [SMALL_STATE(773)] = 31349, - [SMALL_STATE(774)] = 31399, - [SMALL_STATE(775)] = 31479, - [SMALL_STATE(776)] = 31547, - [SMALL_STATE(777)] = 31633, - [SMALL_STATE(778)] = 31717, - [SMALL_STATE(779)] = 31779, - [SMALL_STATE(780)] = 31851, - [SMALL_STATE(781)] = 31943, - [SMALL_STATE(782)] = 32035, - [SMALL_STATE(783)] = 32127, - [SMALL_STATE(784)] = 32219, - [SMALL_STATE(785)] = 32313, - [SMALL_STATE(786)] = 32405, - [SMALL_STATE(787)] = 32497, - [SMALL_STATE(788)] = 32589, - [SMALL_STATE(789)] = 32668, - [SMALL_STATE(790)] = 32755, - [SMALL_STATE(791)] = 32838, - [SMALL_STATE(792)] = 32929, - [SMALL_STATE(793)] = 32994, - [SMALL_STATE(794)] = 33085, - [SMALL_STATE(795)] = 33176, - [SMALL_STATE(796)] = 33237, - [SMALL_STATE(797)] = 33328, - [SMALL_STATE(798)] = 33419, - [SMALL_STATE(799)] = 33512, - [SMALL_STATE(800)] = 33593, - [SMALL_STATE(801)] = 33684, - [SMALL_STATE(802)] = 33775, - [SMALL_STATE(803)] = 33866, - [SMALL_STATE(804)] = 33957, - [SMALL_STATE(805)] = 34024, - [SMALL_STATE(806)] = 34075, - [SMALL_STATE(807)] = 34126, - [SMALL_STATE(808)] = 34201, - [SMALL_STATE(809)] = 34252, - [SMALL_STATE(810)] = 34343, - [SMALL_STATE(811)] = 34434, - [SMALL_STATE(812)] = 34517, - [SMALL_STATE(813)] = 34608, - [SMALL_STATE(814)] = 34699, - [SMALL_STATE(815)] = 34784, - [SMALL_STATE(816)] = 34875, - [SMALL_STATE(817)] = 34966, - [SMALL_STATE(818)] = 35057, - [SMALL_STATE(819)] = 35148, - [SMALL_STATE(820)] = 35239, - [SMALL_STATE(821)] = 35300, - [SMALL_STATE(822)] = 35391, - [SMALL_STATE(823)] = 35462, - [SMALL_STATE(824)] = 35513, - [SMALL_STATE(825)] = 35604, - [SMALL_STATE(826)] = 35690, - [SMALL_STATE(827)] = 35778, - [SMALL_STATE(828)] = 35824, - [SMALL_STATE(829)] = 35874, - [SMALL_STATE(830)] = 35960, - [SMALL_STATE(831)] = 36046, - [SMALL_STATE(832)] = 36096, - [SMALL_STATE(833)] = 36184, - [SMALL_STATE(834)] = 36270, - [SMALL_STATE(835)] = 36320, - [SMALL_STATE(836)] = 36406, - [SMALL_STATE(837)] = 36456, - [SMALL_STATE(838)] = 36542, - [SMALL_STATE(839)] = 36628, - [SMALL_STATE(840)] = 36674, - [SMALL_STATE(841)] = 36752, - [SMALL_STATE(842)] = 36829, - [SMALL_STATE(843)] = 36906, - [SMALL_STATE(844)] = 36983, - [SMALL_STATE(845)] = 37060, - [SMALL_STATE(846)] = 37137, - [SMALL_STATE(847)] = 37214, - [SMALL_STATE(848)] = 37291, - [SMALL_STATE(849)] = 37368, - [SMALL_STATE(850)] = 37445, - [SMALL_STATE(851)] = 37515, - [SMALL_STATE(852)] = 37572, - [SMALL_STATE(853)] = 37629, - [SMALL_STATE(854)] = 37694, - [SMALL_STATE(855)] = 37746, - [SMALL_STATE(856)] = 37802, - [SMALL_STATE(857)] = 37860, - [SMALL_STATE(858)] = 37918, - [SMALL_STATE(859)] = 37974, - [SMALL_STATE(860)] = 38032, - [SMALL_STATE(861)] = 38088, - [SMALL_STATE(862)] = 38146, - [SMALL_STATE(863)] = 38204, - [SMALL_STATE(864)] = 38260, - [SMALL_STATE(865)] = 38318, - [SMALL_STATE(866)] = 38374, - [SMALL_STATE(867)] = 38430, - [SMALL_STATE(868)] = 38486, - [SMALL_STATE(869)] = 38544, - [SMALL_STATE(870)] = 38595, - [SMALL_STATE(871)] = 38646, - [SMALL_STATE(872)] = 38697, - [SMALL_STATE(873)] = 38748, - [SMALL_STATE(874)] = 38799, - [SMALL_STATE(875)] = 38850, - [SMALL_STATE(876)] = 38901, - [SMALL_STATE(877)] = 38954, - [SMALL_STATE(878)] = 39004, - [SMALL_STATE(879)] = 39056, - [SMALL_STATE(880)] = 39104, - [SMALL_STATE(881)] = 39154, - [SMALL_STATE(882)] = 39214, - [SMALL_STATE(883)] = 39257, - [SMALL_STATE(884)] = 39302, - [SMALL_STATE(885)] = 39347, - [SMALL_STATE(886)] = 39402, - [SMALL_STATE(887)] = 39449, - [SMALL_STATE(888)] = 39494, - [SMALL_STATE(889)] = 39537, - [SMALL_STATE(890)] = 39592, - [SMALL_STATE(891)] = 39637, - [SMALL_STATE(892)] = 39680, - [SMALL_STATE(893)] = 39727, - [SMALL_STATE(894)] = 39755, - [SMALL_STATE(895)] = 39783, - [SMALL_STATE(896)] = 39811, - [SMALL_STATE(897)] = 39839, - [SMALL_STATE(898)] = 39869, - [SMALL_STATE(899)] = 39897, - [SMALL_STATE(900)] = 39925, - [SMALL_STATE(901)] = 39953, - [SMALL_STATE(902)] = 39981, - [SMALL_STATE(903)] = 40009, - [SMALL_STATE(904)] = 40047, - [SMALL_STATE(905)] = 40075, - [SMALL_STATE(906)] = 40103, - [SMALL_STATE(907)] = 40131, - [SMALL_STATE(908)] = 40159, - [SMALL_STATE(909)] = 40187, - [SMALL_STATE(910)] = 40215, - [SMALL_STATE(911)] = 40243, - [SMALL_STATE(912)] = 40271, - [SMALL_STATE(913)] = 40299, - [SMALL_STATE(914)] = 40339, - [SMALL_STATE(915)] = 40367, - [SMALL_STATE(916)] = 40395, - [SMALL_STATE(917)] = 40423, - [SMALL_STATE(918)] = 40453, - [SMALL_STATE(919)] = 40481, - [SMALL_STATE(920)] = 40519, - [SMALL_STATE(921)] = 40547, - [SMALL_STATE(922)] = 40575, - [SMALL_STATE(923)] = 40609, - [SMALL_STATE(924)] = 40647, - [SMALL_STATE(925)] = 40675, - [SMALL_STATE(926)] = 40713, - [SMALL_STATE(927)] = 40741, - [SMALL_STATE(928)] = 40769, - [SMALL_STATE(929)] = 40797, - [SMALL_STATE(930)] = 40835, - [SMALL_STATE(931)] = 40873, - [SMALL_STATE(932)] = 40900, - [SMALL_STATE(933)] = 40927, - [SMALL_STATE(934)] = 40954, - [SMALL_STATE(935)] = 40981, - [SMALL_STATE(936)] = 41010, - [SMALL_STATE(937)] = 41043, - [SMALL_STATE(938)] = 41070, - [SMALL_STATE(939)] = 41097, - [SMALL_STATE(940)] = 41124, - [SMALL_STATE(941)] = 41151, - [SMALL_STATE(942)] = 41178, - [SMALL_STATE(943)] = 41205, - [SMALL_STATE(944)] = 41245, - [SMALL_STATE(945)] = 41287, - [SMALL_STATE(946)] = 41325, - [SMALL_STATE(947)] = 41367, - [SMALL_STATE(948)] = 41409, - [SMALL_STATE(949)] = 41449, - [SMALL_STATE(950)] = 41495, - [SMALL_STATE(951)] = 41537, - [SMALL_STATE(952)] = 41581, - [SMALL_STATE(953)] = 41620, - [SMALL_STATE(954)] = 41663, - [SMALL_STATE(955)] = 41698, - [SMALL_STATE(956)] = 41733, - [SMALL_STATE(957)] = 41768, - [SMALL_STATE(958)] = 41803, - [SMALL_STATE(959)] = 41828, - [SMALL_STATE(960)] = 41853, - [SMALL_STATE(961)] = 41878, - [SMALL_STATE(962)] = 41917, - [SMALL_STATE(963)] = 41952, - [SMALL_STATE(964)] = 41987, - [SMALL_STATE(965)] = 42022, - [SMALL_STATE(966)] = 42057, - [SMALL_STATE(967)] = 42098, - [SMALL_STATE(968)] = 42133, - [SMALL_STATE(969)] = 42168, - [SMALL_STATE(970)] = 42203, - [SMALL_STATE(971)] = 42238, - [SMALL_STATE(972)] = 42273, - [SMALL_STATE(973)] = 42308, - [SMALL_STATE(974)] = 42343, - [SMALL_STATE(975)] = 42378, - [SMALL_STATE(976)] = 42403, - [SMALL_STATE(977)] = 42428, - [SMALL_STATE(978)] = 42453, - [SMALL_STATE(979)] = 42488, - [SMALL_STATE(980)] = 42523, - [SMALL_STATE(981)] = 42558, - [SMALL_STATE(982)] = 42593, - [SMALL_STATE(983)] = 42628, - [SMALL_STATE(984)] = 42663, - [SMALL_STATE(985)] = 42698, - [SMALL_STATE(986)] = 42733, - [SMALL_STATE(987)] = 42774, - [SMALL_STATE(988)] = 42817, - [SMALL_STATE(989)] = 42849, - [SMALL_STATE(990)] = 42881, - [SMALL_STATE(991)] = 42913, - [SMALL_STATE(992)] = 42945, - [SMALL_STATE(993)] = 42967, - [SMALL_STATE(994)] = 42999, - [SMALL_STATE(995)] = 43031, - [SMALL_STATE(996)] = 43063, - [SMALL_STATE(997)] = 43095, - [SMALL_STATE(998)] = 43127, - [SMALL_STATE(999)] = 43159, - [SMALL_STATE(1000)] = 43191, - [SMALL_STATE(1001)] = 43223, - [SMALL_STATE(1002)] = 43255, - [SMALL_STATE(1003)] = 43277, - [SMALL_STATE(1004)] = 43299, - [SMALL_STATE(1005)] = 43331, - [SMALL_STATE(1006)] = 43363, - [SMALL_STATE(1007)] = 43395, - [SMALL_STATE(1008)] = 43417, - [SMALL_STATE(1009)] = 43449, - [SMALL_STATE(1010)] = 43481, - [SMALL_STATE(1011)] = 43503, - [SMALL_STATE(1012)] = 43539, - [SMALL_STATE(1013)] = 43575, - [SMALL_STATE(1014)] = 43611, - [SMALL_STATE(1015)] = 43647, - [SMALL_STATE(1016)] = 43683, - [SMALL_STATE(1017)] = 43719, - [SMALL_STATE(1018)] = 43755, - [SMALL_STATE(1019)] = 43791, - [SMALL_STATE(1020)] = 43829, - [SMALL_STATE(1021)] = 43862, - [SMALL_STATE(1022)] = 43898, - [SMALL_STATE(1023)] = 43934, - [SMALL_STATE(1024)] = 43970, - [SMALL_STATE(1025)] = 44006, - [SMALL_STATE(1026)] = 44039, - [SMALL_STATE(1027)] = 44072, - [SMALL_STATE(1028)] = 44105, - [SMALL_STATE(1029)] = 44138, - [SMALL_STATE(1030)] = 44171, - [SMALL_STATE(1031)] = 44204, - [SMALL_STATE(1032)] = 44237, - [SMALL_STATE(1033)] = 44270, - [SMALL_STATE(1034)] = 44300, - [SMALL_STATE(1035)] = 44330, - [SMALL_STATE(1036)] = 44360, - [SMALL_STATE(1037)] = 44390, - [SMALL_STATE(1038)] = 44420, - [SMALL_STATE(1039)] = 44448, - [SMALL_STATE(1040)] = 44478, - [SMALL_STATE(1041)] = 44508, - [SMALL_STATE(1042)] = 44538, - [SMALL_STATE(1043)] = 44564, - [SMALL_STATE(1044)] = 44594, - [SMALL_STATE(1045)] = 44624, - [SMALL_STATE(1046)] = 44654, - [SMALL_STATE(1047)] = 44684, - [SMALL_STATE(1048)] = 44710, - [SMALL_STATE(1049)] = 44740, - [SMALL_STATE(1050)] = 44770, - [SMALL_STATE(1051)] = 44800, - [SMALL_STATE(1052)] = 44830, - [SMALL_STATE(1053)] = 44860, - [SMALL_STATE(1054)] = 44890, - [SMALL_STATE(1055)] = 44920, - [SMALL_STATE(1056)] = 44950, - [SMALL_STATE(1057)] = 44977, - [SMALL_STATE(1058)] = 45004, - [SMALL_STATE(1059)] = 45024, - [SMALL_STATE(1060)] = 45048, - [SMALL_STATE(1061)] = 45070, - [SMALL_STATE(1062)] = 45094, - [SMALL_STATE(1063)] = 45116, - [SMALL_STATE(1064)] = 45136, - [SMALL_STATE(1065)] = 45160, - [SMALL_STATE(1066)] = 45184, - [SMALL_STATE(1067)] = 45198, - [SMALL_STATE(1068)] = 45212, - [SMALL_STATE(1069)] = 45226, - [SMALL_STATE(1070)] = 45250, - [SMALL_STATE(1071)] = 45274, - [SMALL_STATE(1072)] = 45298, - [SMALL_STATE(1073)] = 45322, - [SMALL_STATE(1074)] = 45346, - [SMALL_STATE(1075)] = 45366, - [SMALL_STATE(1076)] = 45390, - [SMALL_STATE(1077)] = 45404, - [SMALL_STATE(1078)] = 45428, - [SMALL_STATE(1079)] = 45450, - [SMALL_STATE(1080)] = 45472, - [SMALL_STATE(1081)] = 45494, - [SMALL_STATE(1082)] = 45508, - [SMALL_STATE(1083)] = 45527, - [SMALL_STATE(1084)] = 45544, - [SMALL_STATE(1085)] = 45563, - [SMALL_STATE(1086)] = 45578, - [SMALL_STATE(1087)] = 45593, - [SMALL_STATE(1088)] = 45608, - [SMALL_STATE(1089)] = 45623, - [SMALL_STATE(1090)] = 45638, - [SMALL_STATE(1091)] = 45657, - [SMALL_STATE(1092)] = 45672, - [SMALL_STATE(1093)] = 45687, - [SMALL_STATE(1094)] = 45708, - [SMALL_STATE(1095)] = 45723, - [SMALL_STATE(1096)] = 45736, - [SMALL_STATE(1097)] = 45751, - [SMALL_STATE(1098)] = 45772, - [SMALL_STATE(1099)] = 45787, - [SMALL_STATE(1100)] = 45802, - [SMALL_STATE(1101)] = 45817, - [SMALL_STATE(1102)] = 45830, - [SMALL_STATE(1103)] = 45843, - [SMALL_STATE(1104)] = 45858, - [SMALL_STATE(1105)] = 45871, - [SMALL_STATE(1106)] = 45888, - [SMALL_STATE(1107)] = 45903, - [SMALL_STATE(1108)] = 45924, - [SMALL_STATE(1109)] = 45939, - [SMALL_STATE(1110)] = 45958, - [SMALL_STATE(1111)] = 45977, - [SMALL_STATE(1112)] = 45998, - [SMALL_STATE(1113)] = 46013, - [SMALL_STATE(1114)] = 46032, - [SMALL_STATE(1115)] = 46047, - [SMALL_STATE(1116)] = 46064, - [SMALL_STATE(1117)] = 46083, - [SMALL_STATE(1118)] = 46104, - [SMALL_STATE(1119)] = 46125, - [SMALL_STATE(1120)] = 46138, - [SMALL_STATE(1121)] = 46151, - [SMALL_STATE(1122)] = 46170, - [SMALL_STATE(1123)] = 46185, - [SMALL_STATE(1124)] = 46198, - [SMALL_STATE(1125)] = 46217, - [SMALL_STATE(1126)] = 46230, - [SMALL_STATE(1127)] = 46251, - [SMALL_STATE(1128)] = 46264, - [SMALL_STATE(1129)] = 46277, - [SMALL_STATE(1130)] = 46292, - [SMALL_STATE(1131)] = 46313, - [SMALL_STATE(1132)] = 46332, - [SMALL_STATE(1133)] = 46351, - [SMALL_STATE(1134)] = 46366, - [SMALL_STATE(1135)] = 46380, - [SMALL_STATE(1136)] = 46400, - [SMALL_STATE(1137)] = 46418, - [SMALL_STATE(1138)] = 46438, - [SMALL_STATE(1139)] = 46454, - [SMALL_STATE(1140)] = 46468, - [SMALL_STATE(1141)] = 46488, - [SMALL_STATE(1142)] = 46508, - [SMALL_STATE(1143)] = 46522, - [SMALL_STATE(1144)] = 46542, - [SMALL_STATE(1145)] = 46556, - [SMALL_STATE(1146)] = 46576, - [SMALL_STATE(1147)] = 46596, - [SMALL_STATE(1148)] = 46614, - [SMALL_STATE(1149)] = 46634, - [SMALL_STATE(1150)] = 46650, - [SMALL_STATE(1151)] = 46664, - [SMALL_STATE(1152)] = 46678, - [SMALL_STATE(1153)] = 46698, - [SMALL_STATE(1154)] = 46718, - [SMALL_STATE(1155)] = 46732, - [SMALL_STATE(1156)] = 46752, - [SMALL_STATE(1157)] = 46766, - [SMALL_STATE(1158)] = 46780, - [SMALL_STATE(1159)] = 46800, - [SMALL_STATE(1160)] = 46812, - [SMALL_STATE(1161)] = 46832, - [SMALL_STATE(1162)] = 46852, - [SMALL_STATE(1163)] = 46866, - [SMALL_STATE(1164)] = 46886, - [SMALL_STATE(1165)] = 46900, - [SMALL_STATE(1166)] = 46920, - [SMALL_STATE(1167)] = 46934, - [SMALL_STATE(1168)] = 46952, - [SMALL_STATE(1169)] = 46972, - [SMALL_STATE(1170)] = 46992, - [SMALL_STATE(1171)] = 47006, - [SMALL_STATE(1172)] = 47026, - [SMALL_STATE(1173)] = 47040, - [SMALL_STATE(1174)] = 47054, - [SMALL_STATE(1175)] = 47066, - [SMALL_STATE(1176)] = 47078, - [SMALL_STATE(1177)] = 47092, - [SMALL_STATE(1178)] = 47106, - [SMALL_STATE(1179)] = 47126, - [SMALL_STATE(1180)] = 47140, - [SMALL_STATE(1181)] = 47154, - [SMALL_STATE(1182)] = 47174, - [SMALL_STATE(1183)] = 47194, - [SMALL_STATE(1184)] = 47210, - [SMALL_STATE(1185)] = 47229, - [SMALL_STATE(1186)] = 47246, - [SMALL_STATE(1187)] = 47259, - [SMALL_STATE(1188)] = 47274, - [SMALL_STATE(1189)] = 47289, - [SMALL_STATE(1190)] = 47306, - [SMALL_STATE(1191)] = 47323, - [SMALL_STATE(1192)] = 47340, - [SMALL_STATE(1193)] = 47355, - [SMALL_STATE(1194)] = 47370, - [SMALL_STATE(1195)] = 47385, - [SMALL_STATE(1196)] = 47402, - [SMALL_STATE(1197)] = 47419, - [SMALL_STATE(1198)] = 47436, - [SMALL_STATE(1199)] = 47453, - [SMALL_STATE(1200)] = 47472, - [SMALL_STATE(1201)] = 47491, - [SMALL_STATE(1202)] = 47508, - [SMALL_STATE(1203)] = 47525, - [SMALL_STATE(1204)] = 47542, - [SMALL_STATE(1205)] = 47559, - [SMALL_STATE(1206)] = 47570, - [SMALL_STATE(1207)] = 47587, - [SMALL_STATE(1208)] = 47604, - [SMALL_STATE(1209)] = 47621, - [SMALL_STATE(1210)] = 47638, - [SMALL_STATE(1211)] = 47655, - [SMALL_STATE(1212)] = 47672, - [SMALL_STATE(1213)] = 47685, - [SMALL_STATE(1214)] = 47702, - [SMALL_STATE(1215)] = 47719, - [SMALL_STATE(1216)] = 47736, - [SMALL_STATE(1217)] = 47751, - [SMALL_STATE(1218)] = 47766, - [SMALL_STATE(1219)] = 47779, - [SMALL_STATE(1220)] = 47796, - [SMALL_STATE(1221)] = 47815, - [SMALL_STATE(1222)] = 47834, - [SMALL_STATE(1223)] = 47851, - [SMALL_STATE(1224)] = 47864, - [SMALL_STATE(1225)] = 47879, - [SMALL_STATE(1226)] = 47896, - [SMALL_STATE(1227)] = 47913, - [SMALL_STATE(1228)] = 47930, - [SMALL_STATE(1229)] = 47947, - [SMALL_STATE(1230)] = 47964, - [SMALL_STATE(1231)] = 47981, - [SMALL_STATE(1232)] = 47998, - [SMALL_STATE(1233)] = 48017, - [SMALL_STATE(1234)] = 48028, - [SMALL_STATE(1235)] = 48039, - [SMALL_STATE(1236)] = 48050, - [SMALL_STATE(1237)] = 48067, - [SMALL_STATE(1238)] = 48078, - [SMALL_STATE(1239)] = 48095, - [SMALL_STATE(1240)] = 48112, - [SMALL_STATE(1241)] = 48129, - [SMALL_STATE(1242)] = 48146, - [SMALL_STATE(1243)] = 48161, - [SMALL_STATE(1244)] = 48176, - [SMALL_STATE(1245)] = 48193, - [SMALL_STATE(1246)] = 48210, - [SMALL_STATE(1247)] = 48227, - [SMALL_STATE(1248)] = 48238, - [SMALL_STATE(1249)] = 48255, - [SMALL_STATE(1250)] = 48272, - [SMALL_STATE(1251)] = 48287, - [SMALL_STATE(1252)] = 48302, - [SMALL_STATE(1253)] = 48319, - [SMALL_STATE(1254)] = 48336, - [SMALL_STATE(1255)] = 48353, - [SMALL_STATE(1256)] = 48370, - [SMALL_STATE(1257)] = 48387, - [SMALL_STATE(1258)] = 48402, - [SMALL_STATE(1259)] = 48412, - [SMALL_STATE(1260)] = 48424, - [SMALL_STATE(1261)] = 48438, - [SMALL_STATE(1262)] = 48452, - [SMALL_STATE(1263)] = 48466, - [SMALL_STATE(1264)] = 48480, - [SMALL_STATE(1265)] = 48496, - [SMALL_STATE(1266)] = 48510, - [SMALL_STATE(1267)] = 48524, - [SMALL_STATE(1268)] = 48538, - [SMALL_STATE(1269)] = 48552, - [SMALL_STATE(1270)] = 48564, - [SMALL_STATE(1271)] = 48574, - [SMALL_STATE(1272)] = 48588, - [SMALL_STATE(1273)] = 48602, - [SMALL_STATE(1274)] = 48616, - [SMALL_STATE(1275)] = 48632, - [SMALL_STATE(1276)] = 48646, - [SMALL_STATE(1277)] = 48660, - [SMALL_STATE(1278)] = 48674, - [SMALL_STATE(1279)] = 48688, - [SMALL_STATE(1280)] = 48702, - [SMALL_STATE(1281)] = 48716, - [SMALL_STATE(1282)] = 48730, - [SMALL_STATE(1283)] = 48746, - [SMALL_STATE(1284)] = 48758, - [SMALL_STATE(1285)] = 48772, - [SMALL_STATE(1286)] = 48786, - [SMALL_STATE(1287)] = 48798, - [SMALL_STATE(1288)] = 48812, - [SMALL_STATE(1289)] = 48826, - [SMALL_STATE(1290)] = 48840, - [SMALL_STATE(1291)] = 48854, - [SMALL_STATE(1292)] = 48868, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48888, - [SMALL_STATE(1295)] = 48904, - [SMALL_STATE(1296)] = 48918, - [SMALL_STATE(1297)] = 48932, - [SMALL_STATE(1298)] = 48946, - [SMALL_STATE(1299)] = 48960, - [SMALL_STATE(1300)] = 48974, - [SMALL_STATE(1301)] = 48988, - [SMALL_STATE(1302)] = 49002, - [SMALL_STATE(1303)] = 49016, - [SMALL_STATE(1304)] = 49030, - [SMALL_STATE(1305)] = 49042, - [SMALL_STATE(1306)] = 49056, - [SMALL_STATE(1307)] = 49070, - [SMALL_STATE(1308)] = 49084, - [SMALL_STATE(1309)] = 49098, - [SMALL_STATE(1310)] = 49108, - [SMALL_STATE(1311)] = 49122, - [SMALL_STATE(1312)] = 49136, - [SMALL_STATE(1313)] = 49150, - [SMALL_STATE(1314)] = 49162, - [SMALL_STATE(1315)] = 49176, - [SMALL_STATE(1316)] = 49188, - [SMALL_STATE(1317)] = 49202, - [SMALL_STATE(1318)] = 49216, - [SMALL_STATE(1319)] = 49230, - [SMALL_STATE(1320)] = 49244, - [SMALL_STATE(1321)] = 49258, - [SMALL_STATE(1322)] = 49272, - [SMALL_STATE(1323)] = 49286, - [SMALL_STATE(1324)] = 49300, - [SMALL_STATE(1325)] = 49314, - [SMALL_STATE(1326)] = 49330, - [SMALL_STATE(1327)] = 49340, - [SMALL_STATE(1328)] = 49350, - [SMALL_STATE(1329)] = 49364, - [SMALL_STATE(1330)] = 49378, - [SMALL_STATE(1331)] = 49392, - [SMALL_STATE(1332)] = 49406, - [SMALL_STATE(1333)] = 49420, - [SMALL_STATE(1334)] = 49432, - [SMALL_STATE(1335)] = 49446, - [SMALL_STATE(1336)] = 49460, - [SMALL_STATE(1337)] = 49474, - [SMALL_STATE(1338)] = 49488, - [SMALL_STATE(1339)] = 49502, - [SMALL_STATE(1340)] = 49518, - [SMALL_STATE(1341)] = 49532, - [SMALL_STATE(1342)] = 49544, - [SMALL_STATE(1343)] = 49558, - [SMALL_STATE(1344)] = 49572, - [SMALL_STATE(1345)] = 49584, - [SMALL_STATE(1346)] = 49598, - [SMALL_STATE(1347)] = 49612, - [SMALL_STATE(1348)] = 49626, - [SMALL_STATE(1349)] = 49640, - [SMALL_STATE(1350)] = 49654, - [SMALL_STATE(1351)] = 49668, - [SMALL_STATE(1352)] = 49682, - [SMALL_STATE(1353)] = 49696, - [SMALL_STATE(1354)] = 49706, - [SMALL_STATE(1355)] = 49722, - [SMALL_STATE(1356)] = 49736, - [SMALL_STATE(1357)] = 49750, - [SMALL_STATE(1358)] = 49764, - [SMALL_STATE(1359)] = 49778, - [SMALL_STATE(1360)] = 49789, - [SMALL_STATE(1361)] = 49800, - [SMALL_STATE(1362)] = 49811, - [SMALL_STATE(1363)] = 49822, - [SMALL_STATE(1364)] = 49833, - [SMALL_STATE(1365)] = 49844, - [SMALL_STATE(1366)] = 49855, - [SMALL_STATE(1367)] = 49864, - [SMALL_STATE(1368)] = 49875, - [SMALL_STATE(1369)] = 49886, - [SMALL_STATE(1370)] = 49895, - [SMALL_STATE(1371)] = 49906, - [SMALL_STATE(1372)] = 49917, - [SMALL_STATE(1373)] = 49928, - [SMALL_STATE(1374)] = 49939, - [SMALL_STATE(1375)] = 49950, - [SMALL_STATE(1376)] = 49961, - [SMALL_STATE(1377)] = 49970, - [SMALL_STATE(1378)] = 49981, - [SMALL_STATE(1379)] = 49992, - [SMALL_STATE(1380)] = 50003, - [SMALL_STATE(1381)] = 50014, - [SMALL_STATE(1382)] = 50025, - [SMALL_STATE(1383)] = 50036, - [SMALL_STATE(1384)] = 50047, - [SMALL_STATE(1385)] = 50058, - [SMALL_STATE(1386)] = 50069, - [SMALL_STATE(1387)] = 50080, - [SMALL_STATE(1388)] = 50089, - [SMALL_STATE(1389)] = 50098, - [SMALL_STATE(1390)] = 50109, - [SMALL_STATE(1391)] = 50120, - [SMALL_STATE(1392)] = 50131, - [SMALL_STATE(1393)] = 50142, - [SMALL_STATE(1394)] = 50153, - [SMALL_STATE(1395)] = 50162, - [SMALL_STATE(1396)] = 50171, - [SMALL_STATE(1397)] = 50182, - [SMALL_STATE(1398)] = 50193, - [SMALL_STATE(1399)] = 50204, - [SMALL_STATE(1400)] = 50213, - [SMALL_STATE(1401)] = 50224, - [SMALL_STATE(1402)] = 50233, - [SMALL_STATE(1403)] = 50242, - [SMALL_STATE(1404)] = 50251, - [SMALL_STATE(1405)] = 50262, - [SMALL_STATE(1406)] = 50273, - [SMALL_STATE(1407)] = 50284, - [SMALL_STATE(1408)] = 50295, - [SMALL_STATE(1409)] = 50306, - [SMALL_STATE(1410)] = 50317, - [SMALL_STATE(1411)] = 50328, - [SMALL_STATE(1412)] = 50339, - [SMALL_STATE(1413)] = 50350, - [SMALL_STATE(1414)] = 50361, - [SMALL_STATE(1415)] = 50372, - [SMALL_STATE(1416)] = 50383, - [SMALL_STATE(1417)] = 50394, - [SMALL_STATE(1418)] = 50403, - [SMALL_STATE(1419)] = 50414, - [SMALL_STATE(1420)] = 50425, - [SMALL_STATE(1421)] = 50436, - [SMALL_STATE(1422)] = 50447, - [SMALL_STATE(1423)] = 50456, - [SMALL_STATE(1424)] = 50465, - [SMALL_STATE(1425)] = 50476, - [SMALL_STATE(1426)] = 50487, - [SMALL_STATE(1427)] = 50498, - [SMALL_STATE(1428)] = 50509, - [SMALL_STATE(1429)] = 50520, - [SMALL_STATE(1430)] = 50531, - [SMALL_STATE(1431)] = 50542, - [SMALL_STATE(1432)] = 50553, - [SMALL_STATE(1433)] = 50564, - [SMALL_STATE(1434)] = 50575, - [SMALL_STATE(1435)] = 50586, - [SMALL_STATE(1436)] = 50597, - [SMALL_STATE(1437)] = 50606, - [SMALL_STATE(1438)] = 50617, - [SMALL_STATE(1439)] = 50626, - [SMALL_STATE(1440)] = 50637, - [SMALL_STATE(1441)] = 50648, - [SMALL_STATE(1442)] = 50657, - [SMALL_STATE(1443)] = 50666, - [SMALL_STATE(1444)] = 50677, - [SMALL_STATE(1445)] = 50688, - [SMALL_STATE(1446)] = 50699, - [SMALL_STATE(1447)] = 50710, - [SMALL_STATE(1448)] = 50721, - [SMALL_STATE(1449)] = 50732, - [SMALL_STATE(1450)] = 50743, - [SMALL_STATE(1451)] = 50754, - [SMALL_STATE(1452)] = 50765, - [SMALL_STATE(1453)] = 50776, - [SMALL_STATE(1454)] = 50787, - [SMALL_STATE(1455)] = 50796, - [SMALL_STATE(1456)] = 50807, - [SMALL_STATE(1457)] = 50818, - [SMALL_STATE(1458)] = 50827, - [SMALL_STATE(1459)] = 50838, - [SMALL_STATE(1460)] = 50847, - [SMALL_STATE(1461)] = 50858, - [SMALL_STATE(1462)] = 50869, - [SMALL_STATE(1463)] = 50878, - [SMALL_STATE(1464)] = 50889, - [SMALL_STATE(1465)] = 50900, - [SMALL_STATE(1466)] = 50911, - [SMALL_STATE(1467)] = 50922, - [SMALL_STATE(1468)] = 50933, - [SMALL_STATE(1469)] = 50944, - [SMALL_STATE(1470)] = 50955, - [SMALL_STATE(1471)] = 50966, - [SMALL_STATE(1472)] = 50977, - [SMALL_STATE(1473)] = 50988, - [SMALL_STATE(1474)] = 50999, - [SMALL_STATE(1475)] = 51010, - [SMALL_STATE(1476)] = 51021, - [SMALL_STATE(1477)] = 51032, - [SMALL_STATE(1478)] = 51043, - [SMALL_STATE(1479)] = 51054, - [SMALL_STATE(1480)] = 51065, - [SMALL_STATE(1481)] = 51076, - [SMALL_STATE(1482)] = 51087, - [SMALL_STATE(1483)] = 51098, - [SMALL_STATE(1484)] = 51109, - [SMALL_STATE(1485)] = 51120, - [SMALL_STATE(1486)] = 51131, - [SMALL_STATE(1487)] = 51142, - [SMALL_STATE(1488)] = 51153, - [SMALL_STATE(1489)] = 51164, - [SMALL_STATE(1490)] = 51175, - [SMALL_STATE(1491)] = 51186, - [SMALL_STATE(1492)] = 51197, - [SMALL_STATE(1493)] = 51208, - [SMALL_STATE(1494)] = 51219, - [SMALL_STATE(1495)] = 51230, - [SMALL_STATE(1496)] = 51241, - [SMALL_STATE(1497)] = 51252, - [SMALL_STATE(1498)] = 51261, - [SMALL_STATE(1499)] = 51272, - [SMALL_STATE(1500)] = 51283, - [SMALL_STATE(1501)] = 51294, - [SMALL_STATE(1502)] = 51305, - [SMALL_STATE(1503)] = 51316, - [SMALL_STATE(1504)] = 51327, - [SMALL_STATE(1505)] = 51338, - [SMALL_STATE(1506)] = 51349, - [SMALL_STATE(1507)] = 51360, - [SMALL_STATE(1508)] = 51371, - [SMALL_STATE(1509)] = 51382, - [SMALL_STATE(1510)] = 51393, - [SMALL_STATE(1511)] = 51404, - [SMALL_STATE(1512)] = 51415, - [SMALL_STATE(1513)] = 51426, - [SMALL_STATE(1514)] = 51437, - [SMALL_STATE(1515)] = 51448, - [SMALL_STATE(1516)] = 51457, - [SMALL_STATE(1517)] = 51466, - [SMALL_STATE(1518)] = 51477, - [SMALL_STATE(1519)] = 51488, - [SMALL_STATE(1520)] = 51499, - [SMALL_STATE(1521)] = 51510, - [SMALL_STATE(1522)] = 51519, - [SMALL_STATE(1523)] = 51530, - [SMALL_STATE(1524)] = 51541, - [SMALL_STATE(1525)] = 51552, - [SMALL_STATE(1526)] = 51563, - [SMALL_STATE(1527)] = 51574, - [SMALL_STATE(1528)] = 51585, - [SMALL_STATE(1529)] = 51596, - [SMALL_STATE(1530)] = 51607, - [SMALL_STATE(1531)] = 51618, - [SMALL_STATE(1532)] = 51629, - [SMALL_STATE(1533)] = 51640, - [SMALL_STATE(1534)] = 51651, - [SMALL_STATE(1535)] = 51662, - [SMALL_STATE(1536)] = 51671, - [SMALL_STATE(1537)] = 51680, - [SMALL_STATE(1538)] = 51691, - [SMALL_STATE(1539)] = 51702, - [SMALL_STATE(1540)] = 51713, - [SMALL_STATE(1541)] = 51724, - [SMALL_STATE(1542)] = 51733, - [SMALL_STATE(1543)] = 51744, - [SMALL_STATE(1544)] = 51755, - [SMALL_STATE(1545)] = 51766, - [SMALL_STATE(1546)] = 51777, - [SMALL_STATE(1547)] = 51788, - [SMALL_STATE(1548)] = 51799, - [SMALL_STATE(1549)] = 51810, - [SMALL_STATE(1550)] = 51821, - [SMALL_STATE(1551)] = 51832, - [SMALL_STATE(1552)] = 51843, - [SMALL_STATE(1553)] = 51854, - [SMALL_STATE(1554)] = 51865, - [SMALL_STATE(1555)] = 51876, - [SMALL_STATE(1556)] = 51887, - [SMALL_STATE(1557)] = 51898, - [SMALL_STATE(1558)] = 51909, - [SMALL_STATE(1559)] = 51920, - [SMALL_STATE(1560)] = 51931, - [SMALL_STATE(1561)] = 51942, - [SMALL_STATE(1562)] = 51953, - [SMALL_STATE(1563)] = 51964, - [SMALL_STATE(1564)] = 51975, - [SMALL_STATE(1565)] = 51986, - [SMALL_STATE(1566)] = 51997, - [SMALL_STATE(1567)] = 52008, - [SMALL_STATE(1568)] = 52019, - [SMALL_STATE(1569)] = 52028, - [SMALL_STATE(1570)] = 52039, - [SMALL_STATE(1571)] = 52050, - [SMALL_STATE(1572)] = 52061, - [SMALL_STATE(1573)] = 52072, - [SMALL_STATE(1574)] = 52083, - [SMALL_STATE(1575)] = 52094, - [SMALL_STATE(1576)] = 52103, - [SMALL_STATE(1577)] = 52114, - [SMALL_STATE(1578)] = 52125, - [SMALL_STATE(1579)] = 52136, - [SMALL_STATE(1580)] = 52145, - [SMALL_STATE(1581)] = 52156, - [SMALL_STATE(1582)] = 52167, - [SMALL_STATE(1583)] = 52178, - [SMALL_STATE(1584)] = 52189, - [SMALL_STATE(1585)] = 52200, - [SMALL_STATE(1586)] = 52209, - [SMALL_STATE(1587)] = 52220, - [SMALL_STATE(1588)] = 52231, - [SMALL_STATE(1589)] = 52242, - [SMALL_STATE(1590)] = 52253, - [SMALL_STATE(1591)] = 52264, - [SMALL_STATE(1592)] = 52275, - [SMALL_STATE(1593)] = 52286, - [SMALL_STATE(1594)] = 52297, - [SMALL_STATE(1595)] = 52308, - [SMALL_STATE(1596)] = 52319, - [SMALL_STATE(1597)] = 52330, - [SMALL_STATE(1598)] = 52341, - [SMALL_STATE(1599)] = 52352, - [SMALL_STATE(1600)] = 52363, - [SMALL_STATE(1601)] = 52374, - [SMALL_STATE(1602)] = 52385, - [SMALL_STATE(1603)] = 52396, - [SMALL_STATE(1604)] = 52404, - [SMALL_STATE(1605)] = 52412, - [SMALL_STATE(1606)] = 52420, - [SMALL_STATE(1607)] = 52430, - [SMALL_STATE(1608)] = 52440, - [SMALL_STATE(1609)] = 52448, - [SMALL_STATE(1610)] = 52456, - [SMALL_STATE(1611)] = 52464, - [SMALL_STATE(1612)] = 52472, - [SMALL_STATE(1613)] = 52480, - [SMALL_STATE(1614)] = 52488, - [SMALL_STATE(1615)] = 52496, - [SMALL_STATE(1616)] = 52504, - [SMALL_STATE(1617)] = 52512, - [SMALL_STATE(1618)] = 52522, - [SMALL_STATE(1619)] = 52530, - [SMALL_STATE(1620)] = 52538, - [SMALL_STATE(1621)] = 52546, - [SMALL_STATE(1622)] = 52554, - [SMALL_STATE(1623)] = 52562, - [SMALL_STATE(1624)] = 52570, - [SMALL_STATE(1625)] = 52578, - [SMALL_STATE(1626)] = 52586, - [SMALL_STATE(1627)] = 52594, - [SMALL_STATE(1628)] = 52602, - [SMALL_STATE(1629)] = 52610, - [SMALL_STATE(1630)] = 52618, - [SMALL_STATE(1631)] = 52626, - [SMALL_STATE(1632)] = 52634, - [SMALL_STATE(1633)] = 52642, - [SMALL_STATE(1634)] = 52650, - [SMALL_STATE(1635)] = 52658, - [SMALL_STATE(1636)] = 52666, - [SMALL_STATE(1637)] = 52674, - [SMALL_STATE(1638)] = 52684, - [SMALL_STATE(1639)] = 52692, - [SMALL_STATE(1640)] = 52700, - [SMALL_STATE(1641)] = 52708, - [SMALL_STATE(1642)] = 52716, - [SMALL_STATE(1643)] = 52724, - [SMALL_STATE(1644)] = 52732, - [SMALL_STATE(1645)] = 52742, - [SMALL_STATE(1646)] = 52750, - [SMALL_STATE(1647)] = 52758, - [SMALL_STATE(1648)] = 52766, - [SMALL_STATE(1649)] = 52776, - [SMALL_STATE(1650)] = 52784, - [SMALL_STATE(1651)] = 52792, - [SMALL_STATE(1652)] = 52800, - [SMALL_STATE(1653)] = 52808, - [SMALL_STATE(1654)] = 52816, - [SMALL_STATE(1655)] = 52824, - [SMALL_STATE(1656)] = 52832, - [SMALL_STATE(1657)] = 52840, - [SMALL_STATE(1658)] = 52848, - [SMALL_STATE(1659)] = 52856, - [SMALL_STATE(1660)] = 52864, - [SMALL_STATE(1661)] = 52872, - [SMALL_STATE(1662)] = 52880, - [SMALL_STATE(1663)] = 52888, - [SMALL_STATE(1664)] = 52896, - [SMALL_STATE(1665)] = 52904, - [SMALL_STATE(1666)] = 52912, - [SMALL_STATE(1667)] = 52920, - [SMALL_STATE(1668)] = 52928, - [SMALL_STATE(1669)] = 52936, - [SMALL_STATE(1670)] = 52944, - [SMALL_STATE(1671)] = 52952, - [SMALL_STATE(1672)] = 52960, - [SMALL_STATE(1673)] = 52968, - [SMALL_STATE(1674)] = 52976, - [SMALL_STATE(1675)] = 52984, - [SMALL_STATE(1676)] = 52992, - [SMALL_STATE(1677)] = 53000, - [SMALL_STATE(1678)] = 53008, - [SMALL_STATE(1679)] = 53016, - [SMALL_STATE(1680)] = 53024, - [SMALL_STATE(1681)] = 53032, - [SMALL_STATE(1682)] = 53040, - [SMALL_STATE(1683)] = 53048, - [SMALL_STATE(1684)] = 53058, - [SMALL_STATE(1685)] = 53066, - [SMALL_STATE(1686)] = 53074, - [SMALL_STATE(1687)] = 53082, - [SMALL_STATE(1688)] = 53090, - [SMALL_STATE(1689)] = 53098, - [SMALL_STATE(1690)] = 53106, - [SMALL_STATE(1691)] = 53114, - [SMALL_STATE(1692)] = 53122, - [SMALL_STATE(1693)] = 53130, - [SMALL_STATE(1694)] = 53138, - [SMALL_STATE(1695)] = 53148, - [SMALL_STATE(1696)] = 53156, + [SMALL_STATE(330)] = 0, + [SMALL_STATE(331)] = 89, + [SMALL_STATE(332)] = 180, + [SMALL_STATE(333)] = 255, + [SMALL_STATE(334)] = 325, + [SMALL_STATE(335)] = 397, + [SMALL_STATE(336)] = 469, + [SMALL_STATE(337)] = 541, + [SMALL_STATE(338)] = 611, + [SMALL_STATE(339)] = 683, + [SMALL_STATE(340)] = 753, + [SMALL_STATE(341)] = 823, + [SMALL_STATE(342)] = 895, + [SMALL_STATE(343)] = 965, + [SMALL_STATE(344)] = 1055, + [SMALL_STATE(345)] = 1125, + [SMALL_STATE(346)] = 1197, + [SMALL_STATE(347)] = 1267, + [SMALL_STATE(348)] = 1339, + [SMALL_STATE(349)] = 1409, + [SMALL_STATE(350)] = 1495, + [SMALL_STATE(351)] = 1581, + [SMALL_STATE(352)] = 1655, + [SMALL_STATE(353)] = 1727, + [SMALL_STATE(354)] = 1799, + [SMALL_STATE(355)] = 1885, + [SMALL_STATE(356)] = 1957, + [SMALL_STATE(357)] = 2029, + [SMALL_STATE(358)] = 2114, + [SMALL_STATE(359)] = 2183, + [SMALL_STATE(360)] = 2252, + [SMALL_STATE(361)] = 2321, + [SMALL_STATE(362)] = 2390, + [SMALL_STATE(363)] = 2459, + [SMALL_STATE(364)] = 2528, + [SMALL_STATE(365)] = 2597, + [SMALL_STATE(366)] = 2666, + [SMALL_STATE(367)] = 2735, + [SMALL_STATE(368)] = 2804, + [SMALL_STATE(369)] = 2873, + [SMALL_STATE(370)] = 2942, + [SMALL_STATE(371)] = 3011, + [SMALL_STATE(372)] = 3080, + [SMALL_STATE(373)] = 3149, + [SMALL_STATE(374)] = 3218, + [SMALL_STATE(375)] = 3287, + [SMALL_STATE(376)] = 3356, + [SMALL_STATE(377)] = 3425, + [SMALL_STATE(378)] = 3494, + [SMALL_STATE(379)] = 3563, + [SMALL_STATE(380)] = 3632, + [SMALL_STATE(381)] = 3701, + [SMALL_STATE(382)] = 3770, + [SMALL_STATE(383)] = 3839, + [SMALL_STATE(384)] = 3908, + [SMALL_STATE(385)] = 3977, + [SMALL_STATE(386)] = 4046, + [SMALL_STATE(387)] = 4115, + [SMALL_STATE(388)] = 4184, + [SMALL_STATE(389)] = 4253, + [SMALL_STATE(390)] = 4322, + [SMALL_STATE(391)] = 4391, + [SMALL_STATE(392)] = 4460, + [SMALL_STATE(393)] = 4529, + [SMALL_STATE(394)] = 4598, + [SMALL_STATE(395)] = 4667, + [SMALL_STATE(396)] = 4736, + [SMALL_STATE(397)] = 4805, + [SMALL_STATE(398)] = 4874, + [SMALL_STATE(399)] = 4943, + [SMALL_STATE(400)] = 5012, + [SMALL_STATE(401)] = 5081, + [SMALL_STATE(402)] = 5150, + [SMALL_STATE(403)] = 5219, + [SMALL_STATE(404)] = 5288, + [SMALL_STATE(405)] = 5375, + [SMALL_STATE(406)] = 5444, + [SMALL_STATE(407)] = 5513, + [SMALL_STATE(408)] = 5582, + [SMALL_STATE(409)] = 5651, + [SMALL_STATE(410)] = 5720, + [SMALL_STATE(411)] = 5789, + [SMALL_STATE(412)] = 5858, + [SMALL_STATE(413)] = 5927, + [SMALL_STATE(414)] = 5996, + [SMALL_STATE(415)] = 6085, + [SMALL_STATE(416)] = 6154, + [SMALL_STATE(417)] = 6223, + [SMALL_STATE(418)] = 6310, + [SMALL_STATE(419)] = 6379, + [SMALL_STATE(420)] = 6448, + [SMALL_STATE(421)] = 6517, + [SMALL_STATE(422)] = 6586, + [SMALL_STATE(423)] = 6655, + [SMALL_STATE(424)] = 6724, + [SMALL_STATE(425)] = 6809, + [SMALL_STATE(426)] = 6878, + [SMALL_STATE(427)] = 6947, + [SMALL_STATE(428)] = 7035, + [SMALL_STATE(429)] = 7118, + [SMALL_STATE(430)] = 7184, + [SMALL_STATE(431)] = 7266, + [SMALL_STATE(432)] = 7336, + [SMALL_STATE(433)] = 7418, + [SMALL_STATE(434)] = 7484, + [SMALL_STATE(435)] = 7550, + [SMALL_STATE(436)] = 7632, + [SMALL_STATE(437)] = 7698, + [SMALL_STATE(438)] = 7764, + [SMALL_STATE(439)] = 7830, + [SMALL_STATE(440)] = 7896, + [SMALL_STATE(441)] = 7967, + [SMALL_STATE(442)] = 8050, + [SMALL_STATE(443)] = 8121, + [SMALL_STATE(444)] = 8192, + [SMALL_STATE(445)] = 8263, + [SMALL_STATE(446)] = 8327, + [SMALL_STATE(447)] = 8391, + [SMALL_STATE(448)] = 8459, + [SMALL_STATE(449)] = 8523, + [SMALL_STATE(450)] = 8587, + [SMALL_STATE(451)] = 8651, + [SMALL_STATE(452)] = 8715, + [SMALL_STATE(453)] = 8779, + [SMALL_STATE(454)] = 8843, + [SMALL_STATE(455)] = 8907, + [SMALL_STATE(456)] = 8974, + [SMALL_STATE(457)] = 9045, + [SMALL_STATE(458)] = 9108, + [SMALL_STATE(459)] = 9179, + [SMALL_STATE(460)] = 9248, + [SMALL_STATE(461)] = 9319, + [SMALL_STATE(462)] = 9390, + [SMALL_STATE(463)] = 9453, + [SMALL_STATE(464)] = 9516, + [SMALL_STATE(465)] = 9579, + [SMALL_STATE(466)] = 9642, + [SMALL_STATE(467)] = 9713, + [SMALL_STATE(468)] = 9782, + [SMALL_STATE(469)] = 9853, + [SMALL_STATE(470)] = 9924, + [SMALL_STATE(471)] = 9993, + [SMALL_STATE(472)] = 10056, + [SMALL_STATE(473)] = 10127, + [SMALL_STATE(474)] = 10196, + [SMALL_STATE(475)] = 10265, + [SMALL_STATE(476)] = 10334, + [SMALL_STATE(477)] = 10403, + [SMALL_STATE(478)] = 10472, + [SMALL_STATE(479)] = 10535, + [SMALL_STATE(480)] = 10606, + [SMALL_STATE(481)] = 10677, + [SMALL_STATE(482)] = 10747, + [SMALL_STATE(483)] = 10813, + [SMALL_STATE(484)] = 10885, + [SMALL_STATE(485)] = 10955, + [SMALL_STATE(486)] = 11023, + [SMALL_STATE(487)] = 11091, + [SMALL_STATE(488)] = 11163, + [SMALL_STATE(489)] = 11231, + [SMALL_STATE(490)] = 11297, + [SMALL_STATE(491)] = 11368, + [SMALL_STATE(492)] = 11439, + [SMALL_STATE(493)] = 11506, + [SMALL_STATE(494)] = 11575, + [SMALL_STATE(495)] = 11642, + [SMALL_STATE(496)] = 11709, + [SMALL_STATE(497)] = 11775, + [SMALL_STATE(498)] = 11843, + [SMALL_STATE(499)] = 11913, + [SMALL_STATE(500)] = 11983, + [SMALL_STATE(501)] = 12049, + [SMALL_STATE(502)] = 12115, + [SMALL_STATE(503)] = 12181, + [SMALL_STATE(504)] = 12248, + [SMALL_STATE(505)] = 12311, + [SMALL_STATE(506)] = 12367, + [SMALL_STATE(507)] = 12431, + [SMALL_STATE(508)] = 12497, + [SMALL_STATE(509)] = 12563, + [SMALL_STATE(510)] = 12616, + [SMALL_STATE(511)] = 12677, + [SMALL_STATE(512)] = 12730, + [SMALL_STATE(513)] = 12785, + [SMALL_STATE(514)] = 12838, + [SMALL_STATE(515)] = 12888, + [SMALL_STATE(516)] = 12938, + [SMALL_STATE(517)] = 12988, + [SMALL_STATE(518)] = 13038, + [SMALL_STATE(519)] = 13088, + [SMALL_STATE(520)] = 13138, + [SMALL_STATE(521)] = 13188, + [SMALL_STATE(522)] = 13238, + [SMALL_STATE(523)] = 13288, + [SMALL_STATE(524)] = 13338, + [SMALL_STATE(525)] = 13388, + [SMALL_STATE(526)] = 13438, + [SMALL_STATE(527)] = 13488, + [SMALL_STATE(528)] = 13538, + [SMALL_STATE(529)] = 13588, + [SMALL_STATE(530)] = 13638, + [SMALL_STATE(531)] = 13688, + [SMALL_STATE(532)] = 13738, + [SMALL_STATE(533)] = 13788, + [SMALL_STATE(534)] = 13838, + [SMALL_STATE(535)] = 13892, + [SMALL_STATE(536)] = 13942, + [SMALL_STATE(537)] = 13992, + [SMALL_STATE(538)] = 14048, + [SMALL_STATE(539)] = 14098, + [SMALL_STATE(540)] = 14148, + [SMALL_STATE(541)] = 14200, + [SMALL_STATE(542)] = 14250, + [SMALL_STATE(543)] = 14346, + [SMALL_STATE(544)] = 14396, + [SMALL_STATE(545)] = 14492, + [SMALL_STATE(546)] = 14568, + [SMALL_STATE(547)] = 14618, + [SMALL_STATE(548)] = 14668, + [SMALL_STATE(549)] = 14764, + [SMALL_STATE(550)] = 14814, + [SMALL_STATE(551)] = 14910, + [SMALL_STATE(552)] = 14964, + [SMALL_STATE(553)] = 15014, + [SMALL_STATE(554)] = 15064, + [SMALL_STATE(555)] = 15130, + [SMALL_STATE(556)] = 15226, + [SMALL_STATE(557)] = 15314, + [SMALL_STATE(558)] = 15404, + [SMALL_STATE(559)] = 15476, + [SMALL_STATE(560)] = 15560, + [SMALL_STATE(561)] = 15646, + [SMALL_STATE(562)] = 15734, + [SMALL_STATE(563)] = 15804, + [SMALL_STATE(564)] = 15854, + [SMALL_STATE(565)] = 15920, + [SMALL_STATE(566)] = 15970, + [SMALL_STATE(567)] = 16050, + [SMALL_STATE(568)] = 16142, + [SMALL_STATE(569)] = 16192, + [SMALL_STATE(570)] = 16242, + [SMALL_STATE(571)] = 16292, + [SMALL_STATE(572)] = 16342, + [SMALL_STATE(573)] = 16438, + [SMALL_STATE(574)] = 16488, + [SMALL_STATE(575)] = 16584, + [SMALL_STATE(576)] = 16634, + [SMALL_STATE(577)] = 16684, + [SMALL_STATE(578)] = 16734, + [SMALL_STATE(579)] = 16784, + [SMALL_STATE(580)] = 16834, + [SMALL_STATE(581)] = 16884, + [SMALL_STATE(582)] = 16934, + [SMALL_STATE(583)] = 16984, + [SMALL_STATE(584)] = 17080, + [SMALL_STATE(585)] = 17130, + [SMALL_STATE(586)] = 17180, + [SMALL_STATE(587)] = 17230, + [SMALL_STATE(588)] = 17280, + [SMALL_STATE(589)] = 17376, + [SMALL_STATE(590)] = 17430, + [SMALL_STATE(591)] = 17480, + [SMALL_STATE(592)] = 17576, + [SMALL_STATE(593)] = 17626, + [SMALL_STATE(594)] = 17676, + [SMALL_STATE(595)] = 17726, + [SMALL_STATE(596)] = 17822, + [SMALL_STATE(597)] = 17872, + [SMALL_STATE(598)] = 17968, + [SMALL_STATE(599)] = 18018, + [SMALL_STATE(600)] = 18068, + [SMALL_STATE(601)] = 18164, + [SMALL_STATE(602)] = 18215, + [SMALL_STATE(603)] = 18278, + [SMALL_STATE(604)] = 18339, + [SMALL_STATE(605)] = 18390, + [SMALL_STATE(606)] = 18439, + [SMALL_STATE(607)] = 18488, + [SMALL_STATE(608)] = 18539, + [SMALL_STATE(609)] = 18602, + [SMALL_STATE(610)] = 18653, + [SMALL_STATE(611)] = 18702, + [SMALL_STATE(612)] = 18751, + [SMALL_STATE(613)] = 18802, + [SMALL_STATE(614)] = 18853, + [SMALL_STATE(615)] = 18947, + [SMALL_STATE(616)] = 19017, + [SMALL_STATE(617)] = 19099, + [SMALL_STATE(618)] = 19193, + [SMALL_STATE(619)] = 19277, + [SMALL_STATE(620)] = 19371, + [SMALL_STATE(621)] = 19465, + [SMALL_STATE(622)] = 19559, + [SMALL_STATE(623)] = 19645, + [SMALL_STATE(624)] = 19713, + [SMALL_STATE(625)] = 19777, + [SMALL_STATE(626)] = 19855, + [SMALL_STATE(627)] = 19949, + [SMALL_STATE(628)] = 20039, + [SMALL_STATE(629)] = 20133, + [SMALL_STATE(630)] = 20227, + [SMALL_STATE(631)] = 20301, + [SMALL_STATE(632)] = 20365, + [SMALL_STATE(633)] = 20451, + [SMALL_STATE(634)] = 20539, + [SMALL_STATE(635)] = 20609, + [SMALL_STATE(636)] = 20691, + [SMALL_STATE(637)] = 20775, + [SMALL_STATE(638)] = 20861, + [SMALL_STATE(639)] = 20929, + [SMALL_STATE(640)] = 20993, + [SMALL_STATE(641)] = 21071, + [SMALL_STATE(642)] = 21161, + [SMALL_STATE(643)] = 21255, + [SMALL_STATE(644)] = 21349, + [SMALL_STATE(645)] = 21443, + [SMALL_STATE(646)] = 21537, + [SMALL_STATE(647)] = 21631, + [SMALL_STATE(648)] = 21725, + [SMALL_STATE(649)] = 21775, + [SMALL_STATE(650)] = 21869, + [SMALL_STATE(651)] = 21943, + [SMALL_STATE(652)] = 22039, + [SMALL_STATE(653)] = 22133, + [SMALL_STATE(654)] = 22231, + [SMALL_STATE(655)] = 22329, + [SMALL_STATE(656)] = 22423, + [SMALL_STATE(657)] = 22517, + [SMALL_STATE(658)] = 22611, + [SMALL_STATE(659)] = 22705, + [SMALL_STATE(660)] = 22757, + [SMALL_STATE(661)] = 22851, + [SMALL_STATE(662)] = 22945, + [SMALL_STATE(663)] = 23039, + [SMALL_STATE(664)] = 23133, + [SMALL_STATE(665)] = 23183, + [SMALL_STATE(666)] = 23241, + [SMALL_STATE(667)] = 23289, + [SMALL_STATE(668)] = 23387, + [SMALL_STATE(669)] = 23451, + [SMALL_STATE(670)] = 23501, + [SMALL_STATE(671)] = 23595, + [SMALL_STATE(672)] = 23693, + [SMALL_STATE(673)] = 23745, + [SMALL_STATE(674)] = 23799, + [SMALL_STATE(675)] = 23885, + [SMALL_STATE(676)] = 23983, + [SMALL_STATE(677)] = 24081, + [SMALL_STATE(678)] = 24169, + [SMALL_STATE(679)] = 24263, + [SMALL_STATE(680)] = 24313, + [SMALL_STATE(681)] = 24361, + [SMALL_STATE(682)] = 24410, + [SMALL_STATE(683)] = 24507, + [SMALL_STATE(684)] = 24604, + [SMALL_STATE(685)] = 24651, + [SMALL_STATE(686)] = 24748, + [SMALL_STATE(687)] = 24845, + [SMALL_STATE(688)] = 24892, + [SMALL_STATE(689)] = 24939, + [SMALL_STATE(690)] = 25036, + [SMALL_STATE(691)] = 25133, + [SMALL_STATE(692)] = 25230, + [SMALL_STATE(693)] = 25327, + [SMALL_STATE(694)] = 25424, + [SMALL_STATE(695)] = 25521, + [SMALL_STATE(696)] = 25568, + [SMALL_STATE(697)] = 25665, + [SMALL_STATE(698)] = 25712, + [SMALL_STATE(699)] = 25809, + [SMALL_STATE(700)] = 25856, + [SMALL_STATE(701)] = 25903, + [SMALL_STATE(702)] = 26000, + [SMALL_STATE(703)] = 26047, + [SMALL_STATE(704)] = 26094, + [SMALL_STATE(705)] = 26141, + [SMALL_STATE(706)] = 26238, + [SMALL_STATE(707)] = 26331, + [SMALL_STATE(708)] = 26428, + [SMALL_STATE(709)] = 26525, + [SMALL_STATE(710)] = 26574, + [SMALL_STATE(711)] = 26621, + [SMALL_STATE(712)] = 26718, + [SMALL_STATE(713)] = 26765, + [SMALL_STATE(714)] = 26812, + [SMALL_STATE(715)] = 26859, + [SMALL_STATE(716)] = 26906, + [SMALL_STATE(717)] = 26953, + [SMALL_STATE(718)] = 27000, + [SMALL_STATE(719)] = 27047, + [SMALL_STATE(720)] = 27144, + [SMALL_STATE(721)] = 27195, + [SMALL_STATE(722)] = 27292, + [SMALL_STATE(723)] = 27339, + [SMALL_STATE(724)] = 27436, + [SMALL_STATE(725)] = 27533, + [SMALL_STATE(726)] = 27630, + [SMALL_STATE(727)] = 27727, + [SMALL_STATE(728)] = 27774, + [SMALL_STATE(729)] = 27825, + [SMALL_STATE(730)] = 27922, + [SMALL_STATE(731)] = 27973, + [SMALL_STATE(732)] = 28020, + [SMALL_STATE(733)] = 28117, + [SMALL_STATE(734)] = 28168, + [SMALL_STATE(735)] = 28215, + [SMALL_STATE(736)] = 28308, + [SMALL_STATE(737)] = 28355, + [SMALL_STATE(738)] = 28406, + [SMALL_STATE(739)] = 28457, + [SMALL_STATE(740)] = 28510, + [SMALL_STATE(741)] = 28561, + [SMALL_STATE(742)] = 28658, + [SMALL_STATE(743)] = 28755, + [SMALL_STATE(744)] = 28852, + [SMALL_STATE(745)] = 28903, + [SMALL_STATE(746)] = 28950, + [SMALL_STATE(747)] = 28997, + [SMALL_STATE(748)] = 29044, + [SMALL_STATE(749)] = 29095, + [SMALL_STATE(750)] = 29142, + [SMALL_STATE(751)] = 29189, + [SMALL_STATE(752)] = 29236, + [SMALL_STATE(753)] = 29283, + [SMALL_STATE(754)] = 29330, + [SMALL_STATE(755)] = 29377, + [SMALL_STATE(756)] = 29424, + [SMALL_STATE(757)] = 29475, + [SMALL_STATE(758)] = 29524, + [SMALL_STATE(759)] = 29621, + [SMALL_STATE(760)] = 29668, + [SMALL_STATE(761)] = 29715, + [SMALL_STATE(762)] = 29766, + [SMALL_STATE(763)] = 29817, + [SMALL_STATE(764)] = 29914, + [SMALL_STATE(765)] = 30011, + [SMALL_STATE(766)] = 30108, + [SMALL_STATE(767)] = 30159, + [SMALL_STATE(768)] = 30256, + [SMALL_STATE(769)] = 30303, + [SMALL_STATE(770)] = 30354, + [SMALL_STATE(771)] = 30401, + [SMALL_STATE(772)] = 30450, + [SMALL_STATE(773)] = 30497, + [SMALL_STATE(774)] = 30544, + [SMALL_STATE(775)] = 30641, + [SMALL_STATE(776)] = 30738, + [SMALL_STATE(777)] = 30785, + [SMALL_STATE(778)] = 30832, + [SMALL_STATE(779)] = 30879, + [SMALL_STATE(780)] = 30926, + [SMALL_STATE(781)] = 31023, + [SMALL_STATE(782)] = 31070, + [SMALL_STATE(783)] = 31117, + [SMALL_STATE(784)] = 31164, + [SMALL_STATE(785)] = 31257, + [SMALL_STATE(786)] = 31304, + [SMALL_STATE(787)] = 31351, + [SMALL_STATE(788)] = 31398, + [SMALL_STATE(789)] = 31445, + [SMALL_STATE(790)] = 31542, + [SMALL_STATE(791)] = 31639, + [SMALL_STATE(792)] = 31686, + [SMALL_STATE(793)] = 31768, + [SMALL_STATE(794)] = 31860, + [SMALL_STATE(795)] = 31952, + [SMALL_STATE(796)] = 32044, + [SMALL_STATE(797)] = 32136, + [SMALL_STATE(798)] = 32188, + [SMALL_STATE(799)] = 32280, + [SMALL_STATE(800)] = 32372, + [SMALL_STATE(801)] = 32464, + [SMALL_STATE(802)] = 32536, + [SMALL_STATE(803)] = 32598, + [SMALL_STATE(804)] = 32682, + [SMALL_STATE(805)] = 32768, + [SMALL_STATE(806)] = 32836, + [SMALL_STATE(807)] = 32916, + [SMALL_STATE(808)] = 32966, + [SMALL_STATE(809)] = 33016, + [SMALL_STATE(810)] = 33082, + [SMALL_STATE(811)] = 33144, + [SMALL_STATE(812)] = 33220, + [SMALL_STATE(813)] = 33308, + [SMALL_STATE(814)] = 33400, + [SMALL_STATE(815)] = 33492, + [SMALL_STATE(816)] = 33584, + [SMALL_STATE(817)] = 33676, + [SMALL_STATE(818)] = 33768, + [SMALL_STATE(819)] = 33860, + [SMALL_STATE(820)] = 33912, + [SMALL_STATE(821)] = 33964, + [SMALL_STATE(822)] = 34056, + [SMALL_STATE(823)] = 34108, + [SMALL_STATE(824)] = 34202, + [SMALL_STATE(825)] = 34252, + [SMALL_STATE(826)] = 34344, + [SMALL_STATE(827)] = 34436, + [SMALL_STATE(828)] = 34520, + [SMALL_STATE(829)] = 34611, + [SMALL_STATE(830)] = 34702, + [SMALL_STATE(831)] = 34753, + [SMALL_STATE(832)] = 34846, + [SMALL_STATE(833)] = 34937, + [SMALL_STATE(834)] = 35028, + [SMALL_STATE(835)] = 35079, + [SMALL_STATE(836)] = 35170, + [SMALL_STATE(837)] = 35221, + [SMALL_STATE(838)] = 35272, + [SMALL_STATE(839)] = 35363, + [SMALL_STATE(840)] = 35454, + [SMALL_STATE(841)] = 35545, + [SMALL_STATE(842)] = 35636, + [SMALL_STATE(843)] = 35727, + [SMALL_STATE(844)] = 35818, + [SMALL_STATE(845)] = 35889, + [SMALL_STATE(846)] = 35950, + [SMALL_STATE(847)] = 36033, + [SMALL_STATE(848)] = 36118, + [SMALL_STATE(849)] = 36185, + [SMALL_STATE(850)] = 36264, + [SMALL_STATE(851)] = 36345, + [SMALL_STATE(852)] = 36428, + [SMALL_STATE(853)] = 36493, + [SMALL_STATE(854)] = 36554, + [SMALL_STATE(855)] = 36629, + [SMALL_STATE(856)] = 36716, + [SMALL_STATE(857)] = 36807, + [SMALL_STATE(858)] = 36898, + [SMALL_STATE(859)] = 36989, + [SMALL_STATE(860)] = 37080, + [SMALL_STATE(861)] = 37171, + [SMALL_STATE(862)] = 37262, + [SMALL_STATE(863)] = 37353, + [SMALL_STATE(864)] = 37444, + [SMALL_STATE(865)] = 37535, + [SMALL_STATE(866)] = 37623, + [SMALL_STATE(867)] = 37709, + [SMALL_STATE(868)] = 37759, + [SMALL_STATE(869)] = 37845, + [SMALL_STATE(870)] = 37931, + [SMALL_STATE(871)] = 38019, + [SMALL_STATE(872)] = 38105, + [SMALL_STATE(873)] = 38191, + [SMALL_STATE(874)] = 38237, + [SMALL_STATE(875)] = 38323, + [SMALL_STATE(876)] = 38369, + [SMALL_STATE(877)] = 38447, + [SMALL_STATE(878)] = 38524, + [SMALL_STATE(879)] = 38601, + [SMALL_STATE(880)] = 38678, + [SMALL_STATE(881)] = 38755, + [SMALL_STATE(882)] = 38832, + [SMALL_STATE(883)] = 38909, + [SMALL_STATE(884)] = 38986, + [SMALL_STATE(885)] = 39063, + [SMALL_STATE(886)] = 39140, + [SMALL_STATE(887)] = 39210, + [SMALL_STATE(888)] = 39275, + [SMALL_STATE(889)] = 39332, + [SMALL_STATE(890)] = 39389, + [SMALL_STATE(891)] = 39441, + [SMALL_STATE(892)] = 39499, + [SMALL_STATE(893)] = 39555, + [SMALL_STATE(894)] = 39611, + [SMALL_STATE(895)] = 39669, + [SMALL_STATE(896)] = 39725, + [SMALL_STATE(897)] = 39783, + [SMALL_STATE(898)] = 39839, + [SMALL_STATE(899)] = 39895, + [SMALL_STATE(900)] = 39951, + [SMALL_STATE(901)] = 40009, + [SMALL_STATE(902)] = 40067, + [SMALL_STATE(903)] = 40125, + [SMALL_STATE(904)] = 40176, + [SMALL_STATE(905)] = 40227, + [SMALL_STATE(906)] = 40278, + [SMALL_STATE(907)] = 40329, + [SMALL_STATE(908)] = 40382, + [SMALL_STATE(909)] = 40433, + [SMALL_STATE(910)] = 40484, + [SMALL_STATE(911)] = 40532, + [SMALL_STATE(912)] = 40582, + [SMALL_STATE(913)] = 40634, + [SMALL_STATE(914)] = 40694, + [SMALL_STATE(915)] = 40744, + [SMALL_STATE(916)] = 40799, + [SMALL_STATE(917)] = 40844, + [SMALL_STATE(918)] = 40899, + [SMALL_STATE(919)] = 40944, + [SMALL_STATE(920)] = 40989, + [SMALL_STATE(921)] = 41036, + [SMALL_STATE(922)] = 41079, + [SMALL_STATE(923)] = 41126, + [SMALL_STATE(924)] = 41169, + [SMALL_STATE(925)] = 41214, + [SMALL_STATE(926)] = 41257, + [SMALL_STATE(927)] = 41295, + [SMALL_STATE(928)] = 41323, + [SMALL_STATE(929)] = 41351, + [SMALL_STATE(930)] = 41379, + [SMALL_STATE(931)] = 41407, + [SMALL_STATE(932)] = 41435, + [SMALL_STATE(933)] = 41463, + [SMALL_STATE(934)] = 41491, + [SMALL_STATE(935)] = 41519, + [SMALL_STATE(936)] = 41547, + [SMALL_STATE(937)] = 41585, + [SMALL_STATE(938)] = 41625, + [SMALL_STATE(939)] = 41653, + [SMALL_STATE(940)] = 41683, + [SMALL_STATE(941)] = 41721, + [SMALL_STATE(942)] = 41759, + [SMALL_STATE(943)] = 41789, + [SMALL_STATE(944)] = 41817, + [SMALL_STATE(945)] = 41845, + [SMALL_STATE(946)] = 41873, + [SMALL_STATE(947)] = 41901, + [SMALL_STATE(948)] = 41929, + [SMALL_STATE(949)] = 41957, + [SMALL_STATE(950)] = 41985, + [SMALL_STATE(951)] = 42013, + [SMALL_STATE(952)] = 42041, + [SMALL_STATE(953)] = 42075, + [SMALL_STATE(954)] = 42103, + [SMALL_STATE(955)] = 42131, + [SMALL_STATE(956)] = 42169, + [SMALL_STATE(957)] = 42197, + [SMALL_STATE(958)] = 42225, + [SMALL_STATE(959)] = 42253, + [SMALL_STATE(960)] = 42281, + [SMALL_STATE(961)] = 42309, + [SMALL_STATE(962)] = 42337, + [SMALL_STATE(963)] = 42365, + [SMALL_STATE(964)] = 42403, + [SMALL_STATE(965)] = 42430, + [SMALL_STATE(966)] = 42463, + [SMALL_STATE(967)] = 42490, + [SMALL_STATE(968)] = 42517, + [SMALL_STATE(969)] = 42544, + [SMALL_STATE(970)] = 42571, + [SMALL_STATE(971)] = 42598, + [SMALL_STATE(972)] = 42625, + [SMALL_STATE(973)] = 42652, + [SMALL_STATE(974)] = 42681, + [SMALL_STATE(975)] = 42708, + [SMALL_STATE(976)] = 42735, + [SMALL_STATE(977)] = 42777, + [SMALL_STATE(978)] = 42823, + [SMALL_STATE(979)] = 42865, + [SMALL_STATE(980)] = 42909, + [SMALL_STATE(981)] = 42951, + [SMALL_STATE(982)] = 42991, + [SMALL_STATE(983)] = 43031, + [SMALL_STATE(984)] = 43073, + [SMALL_STATE(985)] = 43111, + [SMALL_STATE(986)] = 43154, + [SMALL_STATE(987)] = 43189, + [SMALL_STATE(988)] = 43224, + [SMALL_STATE(989)] = 43259, + [SMALL_STATE(990)] = 43294, + [SMALL_STATE(991)] = 43335, + [SMALL_STATE(992)] = 43370, + [SMALL_STATE(993)] = 43405, + [SMALL_STATE(994)] = 43430, + [SMALL_STATE(995)] = 43455, + [SMALL_STATE(996)] = 43480, + [SMALL_STATE(997)] = 43515, + [SMALL_STATE(998)] = 43550, + [SMALL_STATE(999)] = 43585, + [SMALL_STATE(1000)] = 43620, + [SMALL_STATE(1001)] = 43659, + [SMALL_STATE(1002)] = 43694, + [SMALL_STATE(1003)] = 43719, + [SMALL_STATE(1004)] = 43744, + [SMALL_STATE(1005)] = 43787, + [SMALL_STATE(1006)] = 43826, + [SMALL_STATE(1007)] = 43861, + [SMALL_STATE(1008)] = 43902, + [SMALL_STATE(1009)] = 43937, + [SMALL_STATE(1010)] = 43972, + [SMALL_STATE(1011)] = 44007, + [SMALL_STATE(1012)] = 44042, + [SMALL_STATE(1013)] = 44077, + [SMALL_STATE(1014)] = 44112, + [SMALL_STATE(1015)] = 44147, + [SMALL_STATE(1016)] = 44182, + [SMALL_STATE(1017)] = 44217, + [SMALL_STATE(1018)] = 44252, + [SMALL_STATE(1019)] = 44287, + [SMALL_STATE(1020)] = 44322, + [SMALL_STATE(1021)] = 44347, + [SMALL_STATE(1022)] = 44379, + [SMALL_STATE(1023)] = 44411, + [SMALL_STATE(1024)] = 44433, + [SMALL_STATE(1025)] = 44465, + [SMALL_STATE(1026)] = 44497, + [SMALL_STATE(1027)] = 44519, + [SMALL_STATE(1028)] = 44551, + [SMALL_STATE(1029)] = 44573, + [SMALL_STATE(1030)] = 44595, + [SMALL_STATE(1031)] = 44627, + [SMALL_STATE(1032)] = 44659, + [SMALL_STATE(1033)] = 44691, + [SMALL_STATE(1034)] = 44723, + [SMALL_STATE(1035)] = 44755, + [SMALL_STATE(1036)] = 44787, + [SMALL_STATE(1037)] = 44819, + [SMALL_STATE(1038)] = 44851, + [SMALL_STATE(1039)] = 44883, + [SMALL_STATE(1040)] = 44915, + [SMALL_STATE(1041)] = 44947, + [SMALL_STATE(1042)] = 44979, + [SMALL_STATE(1043)] = 45001, + [SMALL_STATE(1044)] = 45033, + [SMALL_STATE(1045)] = 45069, + [SMALL_STATE(1046)] = 45105, + [SMALL_STATE(1047)] = 45141, + [SMALL_STATE(1048)] = 45177, + [SMALL_STATE(1049)] = 45213, + [SMALL_STATE(1050)] = 45249, + [SMALL_STATE(1051)] = 45287, + [SMALL_STATE(1052)] = 45323, + [SMALL_STATE(1053)] = 45359, + [SMALL_STATE(1054)] = 45392, + [SMALL_STATE(1055)] = 45428, + [SMALL_STATE(1056)] = 45464, + [SMALL_STATE(1057)] = 45500, + [SMALL_STATE(1058)] = 45536, + [SMALL_STATE(1059)] = 45569, + [SMALL_STATE(1060)] = 45602, + [SMALL_STATE(1061)] = 45635, + [SMALL_STATE(1062)] = 45668, + [SMALL_STATE(1063)] = 45701, + [SMALL_STATE(1064)] = 45734, + [SMALL_STATE(1065)] = 45767, + [SMALL_STATE(1066)] = 45800, + [SMALL_STATE(1067)] = 45830, + [SMALL_STATE(1068)] = 45860, + [SMALL_STATE(1069)] = 45890, + [SMALL_STATE(1070)] = 45920, + [SMALL_STATE(1071)] = 45950, + [SMALL_STATE(1072)] = 45980, + [SMALL_STATE(1073)] = 46010, + [SMALL_STATE(1074)] = 46040, + [SMALL_STATE(1075)] = 46070, + [SMALL_STATE(1076)] = 46100, + [SMALL_STATE(1077)] = 46130, + [SMALL_STATE(1078)] = 46160, + [SMALL_STATE(1079)] = 46190, + [SMALL_STATE(1080)] = 46220, + [SMALL_STATE(1081)] = 46250, + [SMALL_STATE(1082)] = 46280, + [SMALL_STATE(1083)] = 46310, + [SMALL_STATE(1084)] = 46340, + [SMALL_STATE(1085)] = 46370, + [SMALL_STATE(1086)] = 46400, + [SMALL_STATE(1087)] = 46426, + [SMALL_STATE(1088)] = 46452, + [SMALL_STATE(1089)] = 46480, + [SMALL_STATE(1090)] = 46507, + [SMALL_STATE(1091)] = 46534, + [SMALL_STATE(1092)] = 46554, + [SMALL_STATE(1093)] = 46578, + [SMALL_STATE(1094)] = 46600, + [SMALL_STATE(1095)] = 46624, + [SMALL_STATE(1096)] = 46644, + [SMALL_STATE(1097)] = 46668, + [SMALL_STATE(1098)] = 46692, + [SMALL_STATE(1099)] = 46716, + [SMALL_STATE(1100)] = 46730, + [SMALL_STATE(1101)] = 46754, + [SMALL_STATE(1102)] = 46776, + [SMALL_STATE(1103)] = 46794, + [SMALL_STATE(1104)] = 46816, + [SMALL_STATE(1105)] = 46830, + [SMALL_STATE(1106)] = 46854, + [SMALL_STATE(1107)] = 46876, + [SMALL_STATE(1108)] = 46890, + [SMALL_STATE(1109)] = 46912, + [SMALL_STATE(1110)] = 46936, + [SMALL_STATE(1111)] = 46960, + [SMALL_STATE(1112)] = 46984, + [SMALL_STATE(1113)] = 47002, + [SMALL_STATE(1114)] = 47024, + [SMALL_STATE(1115)] = 47038, + [SMALL_STATE(1116)] = 47052, + [SMALL_STATE(1117)] = 47073, + [SMALL_STATE(1118)] = 47086, + [SMALL_STATE(1119)] = 47105, + [SMALL_STATE(1120)] = 47126, + [SMALL_STATE(1121)] = 47141, + [SMALL_STATE(1122)] = 47154, + [SMALL_STATE(1123)] = 47169, + [SMALL_STATE(1124)] = 47188, + [SMALL_STATE(1125)] = 47205, + [SMALL_STATE(1126)] = 47226, + [SMALL_STATE(1127)] = 47247, + [SMALL_STATE(1128)] = 47266, + [SMALL_STATE(1129)] = 47287, + [SMALL_STATE(1130)] = 47308, + [SMALL_STATE(1131)] = 47321, + [SMALL_STATE(1132)] = 47340, + [SMALL_STATE(1133)] = 47353, + [SMALL_STATE(1134)] = 47368, + [SMALL_STATE(1135)] = 47387, + [SMALL_STATE(1136)] = 47402, + [SMALL_STATE(1137)] = 47421, + [SMALL_STATE(1138)] = 47436, + [SMALL_STATE(1139)] = 47449, + [SMALL_STATE(1140)] = 47468, + [SMALL_STATE(1141)] = 47487, + [SMALL_STATE(1142)] = 47502, + [SMALL_STATE(1143)] = 47517, + [SMALL_STATE(1144)] = 47532, + [SMALL_STATE(1145)] = 47547, + [SMALL_STATE(1146)] = 47562, + [SMALL_STATE(1147)] = 47577, + [SMALL_STATE(1148)] = 47592, + [SMALL_STATE(1149)] = 47607, + [SMALL_STATE(1150)] = 47622, + [SMALL_STATE(1151)] = 47637, + [SMALL_STATE(1152)] = 47652, + [SMALL_STATE(1153)] = 47671, + [SMALL_STATE(1154)] = 47686, + [SMALL_STATE(1155)] = 47699, + [SMALL_STATE(1156)] = 47720, + [SMALL_STATE(1157)] = 47741, + [SMALL_STATE(1158)] = 47754, + [SMALL_STATE(1159)] = 47767, + [SMALL_STATE(1160)] = 47782, + [SMALL_STATE(1161)] = 47795, + [SMALL_STATE(1162)] = 47808, + [SMALL_STATE(1163)] = 47823, + [SMALL_STATE(1164)] = 47838, + [SMALL_STATE(1165)] = 47857, + [SMALL_STATE(1166)] = 47876, + [SMALL_STATE(1167)] = 47896, + [SMALL_STATE(1168)] = 47916, + [SMALL_STATE(1169)] = 47930, + [SMALL_STATE(1170)] = 47950, + [SMALL_STATE(1171)] = 47970, + [SMALL_STATE(1172)] = 47984, + [SMALL_STATE(1173)] = 47998, + [SMALL_STATE(1174)] = 48012, + [SMALL_STATE(1175)] = 48032, + [SMALL_STATE(1176)] = 48046, + [SMALL_STATE(1177)] = 48060, + [SMALL_STATE(1178)] = 48074, + [SMALL_STATE(1179)] = 48088, + [SMALL_STATE(1180)] = 48102, + [SMALL_STATE(1181)] = 48122, + [SMALL_STATE(1182)] = 48136, + [SMALL_STATE(1183)] = 48156, + [SMALL_STATE(1184)] = 48176, + [SMALL_STATE(1185)] = 48192, + [SMALL_STATE(1186)] = 48204, + [SMALL_STATE(1187)] = 48224, + [SMALL_STATE(1188)] = 48238, + [SMALL_STATE(1189)] = 48258, + [SMALL_STATE(1190)] = 48278, + [SMALL_STATE(1191)] = 48292, + [SMALL_STATE(1192)] = 48306, + [SMALL_STATE(1193)] = 48318, + [SMALL_STATE(1194)] = 48338, + [SMALL_STATE(1195)] = 48356, + [SMALL_STATE(1196)] = 48370, + [SMALL_STATE(1197)] = 48384, + [SMALL_STATE(1198)] = 48400, + [SMALL_STATE(1199)] = 48420, + [SMALL_STATE(1200)] = 48440, + [SMALL_STATE(1201)] = 48458, + [SMALL_STATE(1202)] = 48472, + [SMALL_STATE(1203)] = 48492, + [SMALL_STATE(1204)] = 48506, + [SMALL_STATE(1205)] = 48526, + [SMALL_STATE(1206)] = 48540, + [SMALL_STATE(1207)] = 48560, + [SMALL_STATE(1208)] = 48576, + [SMALL_STATE(1209)] = 48596, + [SMALL_STATE(1210)] = 48614, + [SMALL_STATE(1211)] = 48634, + [SMALL_STATE(1212)] = 48654, + [SMALL_STATE(1213)] = 48674, + [SMALL_STATE(1214)] = 48686, + [SMALL_STATE(1215)] = 48706, + [SMALL_STATE(1216)] = 48720, + [SMALL_STATE(1217)] = 48737, + [SMALL_STATE(1218)] = 48754, + [SMALL_STATE(1219)] = 48771, + [SMALL_STATE(1220)] = 48788, + [SMALL_STATE(1221)] = 48805, + [SMALL_STATE(1222)] = 48822, + [SMALL_STATE(1223)] = 48839, + [SMALL_STATE(1224)] = 48856, + [SMALL_STATE(1225)] = 48873, + [SMALL_STATE(1226)] = 48888, + [SMALL_STATE(1227)] = 48907, + [SMALL_STATE(1228)] = 48926, + [SMALL_STATE(1229)] = 48937, + [SMALL_STATE(1230)] = 48954, + [SMALL_STATE(1231)] = 48971, + [SMALL_STATE(1232)] = 48986, + [SMALL_STATE(1233)] = 48999, + [SMALL_STATE(1234)] = 49016, + [SMALL_STATE(1235)] = 49033, + [SMALL_STATE(1236)] = 49044, + [SMALL_STATE(1237)] = 49061, + [SMALL_STATE(1238)] = 49078, + [SMALL_STATE(1239)] = 49093, + [SMALL_STATE(1240)] = 49108, + [SMALL_STATE(1241)] = 49125, + [SMALL_STATE(1242)] = 49142, + [SMALL_STATE(1243)] = 49159, + [SMALL_STATE(1244)] = 49176, + [SMALL_STATE(1245)] = 49187, + [SMALL_STATE(1246)] = 49202, + [SMALL_STATE(1247)] = 49219, + [SMALL_STATE(1248)] = 49236, + [SMALL_STATE(1249)] = 49253, + [SMALL_STATE(1250)] = 49268, + [SMALL_STATE(1251)] = 49287, + [SMALL_STATE(1252)] = 49304, + [SMALL_STATE(1253)] = 49321, + [SMALL_STATE(1254)] = 49340, + [SMALL_STATE(1255)] = 49355, + [SMALL_STATE(1256)] = 49370, + [SMALL_STATE(1257)] = 49385, + [SMALL_STATE(1258)] = 49402, + [SMALL_STATE(1259)] = 49419, + [SMALL_STATE(1260)] = 49434, + [SMALL_STATE(1261)] = 49451, + [SMALL_STATE(1262)] = 49468, + [SMALL_STATE(1263)] = 49487, + [SMALL_STATE(1264)] = 49506, + [SMALL_STATE(1265)] = 49519, + [SMALL_STATE(1266)] = 49536, + [SMALL_STATE(1267)] = 49553, + [SMALL_STATE(1268)] = 49570, + [SMALL_STATE(1269)] = 49587, + [SMALL_STATE(1270)] = 49604, + [SMALL_STATE(1271)] = 49619, + [SMALL_STATE(1272)] = 49636, + [SMALL_STATE(1273)] = 49653, + [SMALL_STATE(1274)] = 49670, + [SMALL_STATE(1275)] = 49683, + [SMALL_STATE(1276)] = 49700, + [SMALL_STATE(1277)] = 49717, + [SMALL_STATE(1278)] = 49734, + [SMALL_STATE(1279)] = 49751, + [SMALL_STATE(1280)] = 49768, + [SMALL_STATE(1281)] = 49785, + [SMALL_STATE(1282)] = 49802, + [SMALL_STATE(1283)] = 49813, + [SMALL_STATE(1284)] = 49830, + [SMALL_STATE(1285)] = 49845, + [SMALL_STATE(1286)] = 49858, + [SMALL_STATE(1287)] = 49869, + [SMALL_STATE(1288)] = 49880, + [SMALL_STATE(1289)] = 49895, + [SMALL_STATE(1290)] = 49912, + [SMALL_STATE(1291)] = 49926, + [SMALL_STATE(1292)] = 49940, + [SMALL_STATE(1293)] = 49952, + [SMALL_STATE(1294)] = 49966, + [SMALL_STATE(1295)] = 49980, + [SMALL_STATE(1296)] = 49994, + [SMALL_STATE(1297)] = 50004, + [SMALL_STATE(1298)] = 50018, + [SMALL_STATE(1299)] = 50032, + [SMALL_STATE(1300)] = 50046, + [SMALL_STATE(1301)] = 50060, + [SMALL_STATE(1302)] = 50074, + [SMALL_STATE(1303)] = 50086, + [SMALL_STATE(1304)] = 50100, + [SMALL_STATE(1305)] = 50114, + [SMALL_STATE(1306)] = 50128, + [SMALL_STATE(1307)] = 50142, + [SMALL_STATE(1308)] = 50152, + [SMALL_STATE(1309)] = 50168, + [SMALL_STATE(1310)] = 50180, + [SMALL_STATE(1311)] = 50194, + [SMALL_STATE(1312)] = 50208, + [SMALL_STATE(1313)] = 50222, + [SMALL_STATE(1314)] = 50236, + [SMALL_STATE(1315)] = 50250, + [SMALL_STATE(1316)] = 50264, + [SMALL_STATE(1317)] = 50280, + [SMALL_STATE(1318)] = 50294, + [SMALL_STATE(1319)] = 50308, + [SMALL_STATE(1320)] = 50322, + [SMALL_STATE(1321)] = 50332, + [SMALL_STATE(1322)] = 50344, + [SMALL_STATE(1323)] = 50358, + [SMALL_STATE(1324)] = 50370, + [SMALL_STATE(1325)] = 50380, + [SMALL_STATE(1326)] = 50394, + [SMALL_STATE(1327)] = 50410, + [SMALL_STATE(1328)] = 50426, + [SMALL_STATE(1329)] = 50440, + [SMALL_STATE(1330)] = 50454, + [SMALL_STATE(1331)] = 50468, + [SMALL_STATE(1332)] = 50482, + [SMALL_STATE(1333)] = 50496, + [SMALL_STATE(1334)] = 50510, + [SMALL_STATE(1335)] = 50524, + [SMALL_STATE(1336)] = 50538, + [SMALL_STATE(1337)] = 50552, + [SMALL_STATE(1338)] = 50564, + [SMALL_STATE(1339)] = 50578, + [SMALL_STATE(1340)] = 50592, + [SMALL_STATE(1341)] = 50606, + [SMALL_STATE(1342)] = 50622, + [SMALL_STATE(1343)] = 50634, + [SMALL_STATE(1344)] = 50648, + [SMALL_STATE(1345)] = 50658, + [SMALL_STATE(1346)] = 50672, + [SMALL_STATE(1347)] = 50684, + [SMALL_STATE(1348)] = 50698, + [SMALL_STATE(1349)] = 50712, + [SMALL_STATE(1350)] = 50722, + [SMALL_STATE(1351)] = 50736, + [SMALL_STATE(1352)] = 50750, + [SMALL_STATE(1353)] = 50764, + [SMALL_STATE(1354)] = 50778, + [SMALL_STATE(1355)] = 50792, + [SMALL_STATE(1356)] = 50806, + [SMALL_STATE(1357)] = 50820, + [SMALL_STATE(1358)] = 50834, + [SMALL_STATE(1359)] = 50848, + [SMALL_STATE(1360)] = 50862, + [SMALL_STATE(1361)] = 50876, + [SMALL_STATE(1362)] = 50890, + [SMALL_STATE(1363)] = 50904, + [SMALL_STATE(1364)] = 50918, + [SMALL_STATE(1365)] = 50932, + [SMALL_STATE(1366)] = 50946, + [SMALL_STATE(1367)] = 50960, + [SMALL_STATE(1368)] = 50970, + [SMALL_STATE(1369)] = 50984, + [SMALL_STATE(1370)] = 50998, + [SMALL_STATE(1371)] = 51012, + [SMALL_STATE(1372)] = 51022, + [SMALL_STATE(1373)] = 51036, + [SMALL_STATE(1374)] = 51050, + [SMALL_STATE(1375)] = 51066, + [SMALL_STATE(1376)] = 51080, + [SMALL_STATE(1377)] = 51092, + [SMALL_STATE(1378)] = 51106, + [SMALL_STATE(1379)] = 51120, + [SMALL_STATE(1380)] = 51134, + [SMALL_STATE(1381)] = 51148, + [SMALL_STATE(1382)] = 51162, + [SMALL_STATE(1383)] = 51176, + [SMALL_STATE(1384)] = 51190, + [SMALL_STATE(1385)] = 51206, + [SMALL_STATE(1386)] = 51220, + [SMALL_STATE(1387)] = 51234, + [SMALL_STATE(1388)] = 51246, + [SMALL_STATE(1389)] = 51260, + [SMALL_STATE(1390)] = 51272, + [SMALL_STATE(1391)] = 51286, + [SMALL_STATE(1392)] = 51300, + [SMALL_STATE(1393)] = 51311, + [SMALL_STATE(1394)] = 51322, + [SMALL_STATE(1395)] = 51333, + [SMALL_STATE(1396)] = 51344, + [SMALL_STATE(1397)] = 51355, + [SMALL_STATE(1398)] = 51366, + [SMALL_STATE(1399)] = 51377, + [SMALL_STATE(1400)] = 51388, + [SMALL_STATE(1401)] = 51399, + [SMALL_STATE(1402)] = 51410, + [SMALL_STATE(1403)] = 51421, + [SMALL_STATE(1404)] = 51432, + [SMALL_STATE(1405)] = 51443, + [SMALL_STATE(1406)] = 51454, + [SMALL_STATE(1407)] = 51465, + [SMALL_STATE(1408)] = 51476, + [SMALL_STATE(1409)] = 51487, + [SMALL_STATE(1410)] = 51498, + [SMALL_STATE(1411)] = 51509, + [SMALL_STATE(1412)] = 51520, + [SMALL_STATE(1413)] = 51531, + [SMALL_STATE(1414)] = 51540, + [SMALL_STATE(1415)] = 51551, + [SMALL_STATE(1416)] = 51562, + [SMALL_STATE(1417)] = 51573, + [SMALL_STATE(1418)] = 51584, + [SMALL_STATE(1419)] = 51595, + [SMALL_STATE(1420)] = 51606, + [SMALL_STATE(1421)] = 51617, + [SMALL_STATE(1422)] = 51628, + [SMALL_STATE(1423)] = 51639, + [SMALL_STATE(1424)] = 51650, + [SMALL_STATE(1425)] = 51661, + [SMALL_STATE(1426)] = 51670, + [SMALL_STATE(1427)] = 51681, + [SMALL_STATE(1428)] = 51692, + [SMALL_STATE(1429)] = 51703, + [SMALL_STATE(1430)] = 51714, + [SMALL_STATE(1431)] = 51723, + [SMALL_STATE(1432)] = 51734, + [SMALL_STATE(1433)] = 51745, + [SMALL_STATE(1434)] = 51756, + [SMALL_STATE(1435)] = 51767, + [SMALL_STATE(1436)] = 51778, + [SMALL_STATE(1437)] = 51789, + [SMALL_STATE(1438)] = 51798, + [SMALL_STATE(1439)] = 51807, + [SMALL_STATE(1440)] = 51818, + [SMALL_STATE(1441)] = 51829, + [SMALL_STATE(1442)] = 51840, + [SMALL_STATE(1443)] = 51851, + [SMALL_STATE(1444)] = 51862, + [SMALL_STATE(1445)] = 51873, + [SMALL_STATE(1446)] = 51884, + [SMALL_STATE(1447)] = 51895, + [SMALL_STATE(1448)] = 51906, + [SMALL_STATE(1449)] = 51917, + [SMALL_STATE(1450)] = 51928, + [SMALL_STATE(1451)] = 51939, + [SMALL_STATE(1452)] = 51950, + [SMALL_STATE(1453)] = 51961, + [SMALL_STATE(1454)] = 51972, + [SMALL_STATE(1455)] = 51983, + [SMALL_STATE(1456)] = 51994, + [SMALL_STATE(1457)] = 52005, + [SMALL_STATE(1458)] = 52016, + [SMALL_STATE(1459)] = 52027, + [SMALL_STATE(1460)] = 52038, + [SMALL_STATE(1461)] = 52049, + [SMALL_STATE(1462)] = 52060, + [SMALL_STATE(1463)] = 52071, + [SMALL_STATE(1464)] = 52082, + [SMALL_STATE(1465)] = 52091, + [SMALL_STATE(1466)] = 52102, + [SMALL_STATE(1467)] = 52113, + [SMALL_STATE(1468)] = 52124, + [SMALL_STATE(1469)] = 52135, + [SMALL_STATE(1470)] = 52146, + [SMALL_STATE(1471)] = 52157, + [SMALL_STATE(1472)] = 52166, + [SMALL_STATE(1473)] = 52177, + [SMALL_STATE(1474)] = 52188, + [SMALL_STATE(1475)] = 52197, + [SMALL_STATE(1476)] = 52206, + [SMALL_STATE(1477)] = 52217, + [SMALL_STATE(1478)] = 52226, + [SMALL_STATE(1479)] = 52237, + [SMALL_STATE(1480)] = 52246, + [SMALL_STATE(1481)] = 52255, + [SMALL_STATE(1482)] = 52264, + [SMALL_STATE(1483)] = 52275, + [SMALL_STATE(1484)] = 52286, + [SMALL_STATE(1485)] = 52297, + [SMALL_STATE(1486)] = 52308, + [SMALL_STATE(1487)] = 52319, + [SMALL_STATE(1488)] = 52330, + [SMALL_STATE(1489)] = 52339, + [SMALL_STATE(1490)] = 52350, + [SMALL_STATE(1491)] = 52361, + [SMALL_STATE(1492)] = 52372, + [SMALL_STATE(1493)] = 52383, + [SMALL_STATE(1494)] = 52394, + [SMALL_STATE(1495)] = 52405, + [SMALL_STATE(1496)] = 52416, + [SMALL_STATE(1497)] = 52427, + [SMALL_STATE(1498)] = 52438, + [SMALL_STATE(1499)] = 52449, + [SMALL_STATE(1500)] = 52460, + [SMALL_STATE(1501)] = 52471, + [SMALL_STATE(1502)] = 52482, + [SMALL_STATE(1503)] = 52493, + [SMALL_STATE(1504)] = 52504, + [SMALL_STATE(1505)] = 52515, + [SMALL_STATE(1506)] = 52524, + [SMALL_STATE(1507)] = 52535, + [SMALL_STATE(1508)] = 52546, + [SMALL_STATE(1509)] = 52557, + [SMALL_STATE(1510)] = 52568, + [SMALL_STATE(1511)] = 52577, + [SMALL_STATE(1512)] = 52588, + [SMALL_STATE(1513)] = 52599, + [SMALL_STATE(1514)] = 52608, + [SMALL_STATE(1515)] = 52619, + [SMALL_STATE(1516)] = 52630, + [SMALL_STATE(1517)] = 52639, + [SMALL_STATE(1518)] = 52650, + [SMALL_STATE(1519)] = 52661, + [SMALL_STATE(1520)] = 52670, + [SMALL_STATE(1521)] = 52681, + [SMALL_STATE(1522)] = 52692, + [SMALL_STATE(1523)] = 52703, + [SMALL_STATE(1524)] = 52714, + [SMALL_STATE(1525)] = 52725, + [SMALL_STATE(1526)] = 52736, + [SMALL_STATE(1527)] = 52747, + [SMALL_STATE(1528)] = 52758, + [SMALL_STATE(1529)] = 52769, + [SMALL_STATE(1530)] = 52780, + [SMALL_STATE(1531)] = 52791, + [SMALL_STATE(1532)] = 52802, + [SMALL_STATE(1533)] = 52813, + [SMALL_STATE(1534)] = 52824, + [SMALL_STATE(1535)] = 52835, + [SMALL_STATE(1536)] = 52846, + [SMALL_STATE(1537)] = 52857, + [SMALL_STATE(1538)] = 52868, + [SMALL_STATE(1539)] = 52879, + [SMALL_STATE(1540)] = 52890, + [SMALL_STATE(1541)] = 52901, + [SMALL_STATE(1542)] = 52912, + [SMALL_STATE(1543)] = 52923, + [SMALL_STATE(1544)] = 52934, + [SMALL_STATE(1545)] = 52945, + [SMALL_STATE(1546)] = 52956, + [SMALL_STATE(1547)] = 52967, + [SMALL_STATE(1548)] = 52978, + [SMALL_STATE(1549)] = 52989, + [SMALL_STATE(1550)] = 53000, + [SMALL_STATE(1551)] = 53011, + [SMALL_STATE(1552)] = 53022, + [SMALL_STATE(1553)] = 53033, + [SMALL_STATE(1554)] = 53044, + [SMALL_STATE(1555)] = 53053, + [SMALL_STATE(1556)] = 53064, + [SMALL_STATE(1557)] = 53075, + [SMALL_STATE(1558)] = 53084, + [SMALL_STATE(1559)] = 53095, + [SMALL_STATE(1560)] = 53104, + [SMALL_STATE(1561)] = 53115, + [SMALL_STATE(1562)] = 53126, + [SMALL_STATE(1563)] = 53137, + [SMALL_STATE(1564)] = 53148, + [SMALL_STATE(1565)] = 53159, + [SMALL_STATE(1566)] = 53170, + [SMALL_STATE(1567)] = 53181, + [SMALL_STATE(1568)] = 53192, + [SMALL_STATE(1569)] = 53203, + [SMALL_STATE(1570)] = 53214, + [SMALL_STATE(1571)] = 53225, + [SMALL_STATE(1572)] = 53236, + [SMALL_STATE(1573)] = 53247, + [SMALL_STATE(1574)] = 53258, + [SMALL_STATE(1575)] = 53269, + [SMALL_STATE(1576)] = 53280, + [SMALL_STATE(1577)] = 53291, + [SMALL_STATE(1578)] = 53300, + [SMALL_STATE(1579)] = 53311, + [SMALL_STATE(1580)] = 53322, + [SMALL_STATE(1581)] = 53331, + [SMALL_STATE(1582)] = 53342, + [SMALL_STATE(1583)] = 53353, + [SMALL_STATE(1584)] = 53364, + [SMALL_STATE(1585)] = 53375, + [SMALL_STATE(1586)] = 53386, + [SMALL_STATE(1587)] = 53397, + [SMALL_STATE(1588)] = 53408, + [SMALL_STATE(1589)] = 53419, + [SMALL_STATE(1590)] = 53428, + [SMALL_STATE(1591)] = 53439, + [SMALL_STATE(1592)] = 53450, + [SMALL_STATE(1593)] = 53459, + [SMALL_STATE(1594)] = 53470, + [SMALL_STATE(1595)] = 53481, + [SMALL_STATE(1596)] = 53492, + [SMALL_STATE(1597)] = 53503, + [SMALL_STATE(1598)] = 53514, + [SMALL_STATE(1599)] = 53525, + [SMALL_STATE(1600)] = 53536, + [SMALL_STATE(1601)] = 53547, + [SMALL_STATE(1602)] = 53558, + [SMALL_STATE(1603)] = 53567, + [SMALL_STATE(1604)] = 53578, + [SMALL_STATE(1605)] = 53589, + [SMALL_STATE(1606)] = 53600, + [SMALL_STATE(1607)] = 53611, + [SMALL_STATE(1608)] = 53622, + [SMALL_STATE(1609)] = 53633, + [SMALL_STATE(1610)] = 53642, + [SMALL_STATE(1611)] = 53653, + [SMALL_STATE(1612)] = 53662, + [SMALL_STATE(1613)] = 53673, + [SMALL_STATE(1614)] = 53684, + [SMALL_STATE(1615)] = 53695, + [SMALL_STATE(1616)] = 53706, + [SMALL_STATE(1617)] = 53717, + [SMALL_STATE(1618)] = 53728, + [SMALL_STATE(1619)] = 53739, + [SMALL_STATE(1620)] = 53750, + [SMALL_STATE(1621)] = 53761, + [SMALL_STATE(1622)] = 53772, + [SMALL_STATE(1623)] = 53783, + [SMALL_STATE(1624)] = 53792, + [SMALL_STATE(1625)] = 53803, + [SMALL_STATE(1626)] = 53812, + [SMALL_STATE(1627)] = 53823, + [SMALL_STATE(1628)] = 53834, + [SMALL_STATE(1629)] = 53845, + [SMALL_STATE(1630)] = 53854, + [SMALL_STATE(1631)] = 53865, + [SMALL_STATE(1632)] = 53876, + [SMALL_STATE(1633)] = 53887, + [SMALL_STATE(1634)] = 53898, + [SMALL_STATE(1635)] = 53909, + [SMALL_STATE(1636)] = 53918, + [SMALL_STATE(1637)] = 53926, + [SMALL_STATE(1638)] = 53934, + [SMALL_STATE(1639)] = 53942, + [SMALL_STATE(1640)] = 53950, + [SMALL_STATE(1641)] = 53958, + [SMALL_STATE(1642)] = 53968, + [SMALL_STATE(1643)] = 53976, + [SMALL_STATE(1644)] = 53984, + [SMALL_STATE(1645)] = 53992, + [SMALL_STATE(1646)] = 54000, + [SMALL_STATE(1647)] = 54010, + [SMALL_STATE(1648)] = 54018, + [SMALL_STATE(1649)] = 54026, + [SMALL_STATE(1650)] = 54034, + [SMALL_STATE(1651)] = 54042, + [SMALL_STATE(1652)] = 54050, + [SMALL_STATE(1653)] = 54058, + [SMALL_STATE(1654)] = 54066, + [SMALL_STATE(1655)] = 54074, + [SMALL_STATE(1656)] = 54082, + [SMALL_STATE(1657)] = 54090, + [SMALL_STATE(1658)] = 54098, + [SMALL_STATE(1659)] = 54106, + [SMALL_STATE(1660)] = 54114, + [SMALL_STATE(1661)] = 54122, + [SMALL_STATE(1662)] = 54130, + [SMALL_STATE(1663)] = 54138, + [SMALL_STATE(1664)] = 54146, + [SMALL_STATE(1665)] = 54154, + [SMALL_STATE(1666)] = 54162, + [SMALL_STATE(1667)] = 54170, + [SMALL_STATE(1668)] = 54178, + [SMALL_STATE(1669)] = 54186, + [SMALL_STATE(1670)] = 54194, + [SMALL_STATE(1671)] = 54202, + [SMALL_STATE(1672)] = 54210, + [SMALL_STATE(1673)] = 54218, + [SMALL_STATE(1674)] = 54226, + [SMALL_STATE(1675)] = 54234, + [SMALL_STATE(1676)] = 54242, + [SMALL_STATE(1677)] = 54250, + [SMALL_STATE(1678)] = 54258, + [SMALL_STATE(1679)] = 54266, + [SMALL_STATE(1680)] = 54276, + [SMALL_STATE(1681)] = 54284, + [SMALL_STATE(1682)] = 54292, + [SMALL_STATE(1683)] = 54300, + [SMALL_STATE(1684)] = 54308, + [SMALL_STATE(1685)] = 54316, + [SMALL_STATE(1686)] = 54324, + [SMALL_STATE(1687)] = 54332, + [SMALL_STATE(1688)] = 54340, + [SMALL_STATE(1689)] = 54348, + [SMALL_STATE(1690)] = 54356, + [SMALL_STATE(1691)] = 54364, + [SMALL_STATE(1692)] = 54372, + [SMALL_STATE(1693)] = 54380, + [SMALL_STATE(1694)] = 54388, + [SMALL_STATE(1695)] = 54396, + [SMALL_STATE(1696)] = 54404, + [SMALL_STATE(1697)] = 54412, + [SMALL_STATE(1698)] = 54420, + [SMALL_STATE(1699)] = 54428, + [SMALL_STATE(1700)] = 54436, + [SMALL_STATE(1701)] = 54444, + [SMALL_STATE(1702)] = 54452, + [SMALL_STATE(1703)] = 54460, + [SMALL_STATE(1704)] = 54468, + [SMALL_STATE(1705)] = 54476, + [SMALL_STATE(1706)] = 54486, + [SMALL_STATE(1707)] = 54494, + [SMALL_STATE(1708)] = 54502, + [SMALL_STATE(1709)] = 54510, + [SMALL_STATE(1710)] = 54518, + [SMALL_STATE(1711)] = 54526, + [SMALL_STATE(1712)] = 54536, + [SMALL_STATE(1713)] = 54544, + [SMALL_STATE(1714)] = 54552, + [SMALL_STATE(1715)] = 54560, + [SMALL_STATE(1716)] = 54568, + [SMALL_STATE(1717)] = 54576, + [SMALL_STATE(1718)] = 54584, + [SMALL_STATE(1719)] = 54592, + [SMALL_STATE(1720)] = 54600, + [SMALL_STATE(1721)] = 54608, + [SMALL_STATE(1722)] = 54616, + [SMALL_STATE(1723)] = 54624, + [SMALL_STATE(1724)] = 54632, + [SMALL_STATE(1725)] = 54640, + [SMALL_STATE(1726)] = 54648, + [SMALL_STATE(1727)] = 54656, + [SMALL_STATE(1728)] = 54664, + [SMALL_STATE(1729)] = 54674, + [SMALL_STATE(1730)] = 54682, + [SMALL_STATE(1731)] = 54690, + [SMALL_STATE(1732)] = 54698, + [SMALL_STATE(1733)] = 54708, + [SMALL_STATE(1734)] = 54716, + [SMALL_STATE(1735)] = 54724, + [SMALL_STATE(1736)] = 54734, + [SMALL_STATE(1737)] = 54742, + [SMALL_STATE(1738)] = 54750, + [SMALL_STATE(1739)] = 54758, + [SMALL_STATE(1740)] = 54766, + [SMALL_STATE(1741)] = 54774, + [SMALL_STATE(1742)] = 54782, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -80673,1643 +84192,1670 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(300), [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1309), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(327), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141), [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1110), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(445), - [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 100), - [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 100), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 100), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 100), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), + [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 92), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 92), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 71), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 71), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 71), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 71), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 76), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 76), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 80), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 80), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 80), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 80), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 88), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 88), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 88), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 88), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 98), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 98), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 69), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 69), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(40), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1005), - [856] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(89), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(262), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(89), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(165), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(226), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(127), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 62), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 62), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 76), - [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 76), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 71), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 71), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 62), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 62), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 91), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 91), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 80), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 80), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 60), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 60), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 61), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 61), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 96), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 96), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 88), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 88), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 92), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 92), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 79), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 79), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 63), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 63), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 92), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 92), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 92), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 92), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 98), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 98), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 98), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 71), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 71), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 71), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 71), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 76), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 76), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 76), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 76), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 69), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 69), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 80), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 80), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 80), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 80), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 88), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 88), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 88), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 88), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 88), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(36), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1041), + [858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(100), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(197), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(100), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(202), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(231), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(130), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 62), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 62), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 105), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 105), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 62), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 62), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 71), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 71), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 76), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 76), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 91), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 91), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 80), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 80), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 96), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 96), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 88), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 88), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 88), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 92), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 92), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 104), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 104), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 98), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 110), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 110), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 111), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 111), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 112), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 112), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 60), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 60), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 61), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 61), [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 90), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 90), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(83), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 78), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 78), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 94), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 94), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 101), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 101), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(248), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(126), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 89), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 87), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 87), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 31), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 31), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 77), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 77), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 73), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 73), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 74), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 7), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 7), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 74), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 7), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 7), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 15), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(195), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(156), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1247), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1001), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(848), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(230), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1339), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1238), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1230), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(891), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1126), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1285), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(876), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(952), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(903), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1418), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 63), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 63), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 79), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 79), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 78), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 78), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 90), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 90), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(94), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 107), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 107), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 94), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 94), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 108), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 108), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 101), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 101), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(204), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(251), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(131), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 7), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 7), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 77), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 77), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 32), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 87), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 87), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 31), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 31), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 32), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 7), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 7), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 64), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), + [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 73), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 73), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 74), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 74), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 73), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 73), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 89), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(235), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 15), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(274), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1282), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1030), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(881), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(249), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1326), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1260), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1261), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(923), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1129), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1301), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(907), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(1005), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 70), SHIFT_REPEAT(926), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1604), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 93), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 93), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 88), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 88), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 98), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 98), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 83), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 83), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(941), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1285), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1063), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(97), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), - [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1063), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 32), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 64), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(193), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(248), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1249), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 82), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 82), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 97), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [3383] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 88), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 88), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 93), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 93), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 83), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 83), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 106), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 106), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 98), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 98), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1301), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(971), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 34), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1053), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1091), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(109), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), + [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 65), SHIFT_REPEAT(1091), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1488), + [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 32), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1639), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 64), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(251), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(204), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 33), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1106), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1248), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1263), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1263), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(887), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 97), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 82), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 82), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3444] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 3669e46..d4f615c 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -491,6 +491,9 @@ for (var i = 0 for (let in {}); +for (let j + of k); + --- (program @@ -500,24 +503,21 @@ for (let in {}); name: (identifier)) (variable_declarator name: (identifier))) - condition: (expression_statement - (identifier)) + condition: (identifier) increment: (identifier) body: (expression_statement (identifier))) (for_statement - initializer: (expression_statement - (sequence_expression - (assignment_expression - left: (identifier) - right: (number)) - (call_expression - function: (identifier) - arguments: (arguments)))) - condition: (expression_statement - (binary_expression + initializer: (sequence_expression + (assignment_expression left: (identifier) - right: (number))) + right: (number)) + (call_expression + function: (identifier) + arguments: (arguments))) + condition: (binary_expression + left: (identifier) + right: (number)) increment: (update_expression argument: (identifier)) body: (expression_statement @@ -537,16 +537,19 @@ for (let in {}); (variable_declarator name: (identifier) value: (number))) - condition: (expression_statement - (binary_expression - left: (identifier) - right: (identifier))) + condition: (binary_expression + left: (identifier) + right: (identifier)) increment: (update_expression argument: (identifier)) body: (statement_block)) (for_in_statement left: (identifier) right: (object) + body: (empty_statement)) + (for_in_statement + left: (identifier) + right: (identifier) body: (empty_statement))) ============================================ @@ -653,18 +656,16 @@ for (key in something && i = 0; i < n; i++) { (program (for_statement - (expression_statement - (binary_expression - (binary_expression - (identifier) - (identifier)) - (assignment_expression - (identifier) - (number)))) - (expression_statement + (binary_expression (binary_expression (identifier) - (identifier))) + (identifier)) + (assignment_expression + (identifier) + (number))) + (binary_expression + (identifier) + (identifier)) (update_expression (identifier)) (statement_block